ryt-sdk 1.0.2 โ 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
|
-
#### ๐ RYT SDK
|
|
2
1
|
|
|
3
|
-
RYT blockchain SDK for provider, wallet, and smart contract interactions.
|
|
4
2
|
|
|
5
|
-
|
|
3
|
+
<br>
|
|
4
|
+
<br>
|
|
5
|
+
|
|
6
|
+
[RYT](https://ryt.io/) is a modern blockchain infrastructure platform designed to make decentralized development faster, simpler, and more accessible. It provides developers with a powerful yet streamlined ecosystem for building, deploying, and interacting with smart contracts, wallets, and scalable applications. By combining intuitive tooling with advanced features like deterministic deployments, proxy patterns, and modular contract architecture, RYT.io removes much of the complexity traditionally associated with Web3 development. Whether you're launching tokens, building dApps, or optimizing on-chain performance, RYT.io empowers you to focus on innovation while handling the heavy lifting behind the scenes.
|
|
7
|
+
|
|
8
|
+
This is our RYT blockchain sdk for provider, wallet, and smart contract interactions.
|
|
9
|
+
|
|
10
|
+
- โก This is only a quick start guide.
|
|
11
|
+
- ๐ For detail developer documentation and guide that how to interact with ryt chain visit ๐ [Homepage](https://ryt-docs.vercel.app/)
|
|
12
|
+
|
|
13
|
+
<br>
|
|
14
|
+
<br>
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### โ๏ธ Install
|
|
6
18
|
|
|
7
19
|
```bash
|
|
8
20
|
npm install ryt-sdk
|
|
@@ -13,7 +25,10 @@ or
|
|
|
13
25
|
yarn add ryt-sdk
|
|
14
26
|
```
|
|
15
27
|
|
|
16
|
-
|
|
28
|
+
<br>
|
|
29
|
+
<br>
|
|
30
|
+
|
|
31
|
+
### ๐ Environment Setup
|
|
17
32
|
|
|
18
33
|
Create a .env file:
|
|
19
34
|
|
|
@@ -28,7 +43,10 @@ SALT=random_salt
|
|
|
28
43
|
MATH_LIB_ADDRESS=0xLibraryAddress
|
|
29
44
|
```
|
|
30
45
|
|
|
31
|
-
|
|
46
|
+
<br>
|
|
47
|
+
<br>
|
|
48
|
+
|
|
49
|
+
### โก 30-Second Quickstart
|
|
32
50
|
|
|
33
51
|
```bash
|
|
34
52
|
import RYTProvider from "ryt-sdk/provider";
|
|
@@ -48,8 +66,10 @@ const tx = await contract.write("transfer", to, 100n);
|
|
|
48
66
|
await tx.wait();
|
|
49
67
|
```
|
|
50
68
|
|
|
69
|
+
<br>
|
|
70
|
+
<br>
|
|
51
71
|
|
|
52
|
-
|
|
72
|
+
### ๐ Overview
|
|
53
73
|
|
|
54
74
|
RYT SDK is a modular blockchain development toolkit designed to simplify:
|
|
55
75
|
|
|
@@ -61,8 +81,11 @@ RYT SDK is a modular blockchain development toolkit designed to simplify:
|
|
|
61
81
|
- Cloning (EIP-1167)
|
|
62
82
|
- Library-linked contracts
|
|
63
83
|
|
|
84
|
+
<br>
|
|
85
|
+
<br>
|
|
64
86
|
|
|
65
|
-
|
|
87
|
+
|
|
88
|
+
### ๐งช Testing
|
|
66
89
|
|
|
67
90
|
To run tests, run the following commands:
|
|
68
91
|
|
|
@@ -71,7 +94,10 @@ To run tests, run the following commands:
|
|
|
71
94
|
npm run contractsTest
|
|
72
95
|
```
|
|
73
96
|
|
|
74
|
-
|
|
97
|
+
<br>
|
|
98
|
+
<br>
|
|
99
|
+
|
|
100
|
+
### ๐ License
|
|
75
101
|
|
|
76
102
|
[MIT](https://choosealicense.com/licenses/mit/)ยฉ 2026 RYT Core Team
|
|
77
103
|
|
package/package.json
CHANGED