ryt-sdk 1.0.6 โ 1.0.7
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 +19 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,23 +3,25 @@
|
|
|
3
3
|
<br>
|
|
4
4
|
<br>
|
|
5
5
|
|
|
6
|
-
[RYT](https://ryt.io/) is a blockchain infrastructure platform that simplifies building, deploying
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
[RYT](https://ryt.io/) is a blockchain infrastructure platform that simplifies building, deploying, and interacting<br>
|
|
7
|
+
with smart contracts, wallets, and dApps. It provides a streamlined developer experience with<br>
|
|
8
|
+
tools for scalable and modular Web3 development.
|
|
9
9
|
|
|
10
10
|
<br>
|
|
11
11
|
|
|
12
12
|
This is our RYT blockchain sdk for provider, wallet, and smart contract interactions.
|
|
13
13
|
|
|
14
14
|
- โก This is only a quick start guide.
|
|
15
|
-
- ๐ For detail developer documentation and guide that how <br>
|
|
16
|
-
|
|
15
|
+
- ๐ For detail developer documentation and guide that how to interact with<br>
|
|
16
|
+
ryt chain visit ๐ [Homepage](https://ryt-docs.vercel.app/)
|
|
17
17
|
|
|
18
18
|
<br>
|
|
19
19
|
<br>
|
|
20
20
|
|
|
21
21
|
### โ๏ธ Install
|
|
22
|
+
|
|
22
23
|
<br>
|
|
24
|
+
|
|
23
25
|
```bash
|
|
24
26
|
npm install ryt-sdk
|
|
25
27
|
```
|
|
@@ -32,8 +34,13 @@ or
|
|
|
32
34
|
<br>
|
|
33
35
|
|
|
34
36
|
### ๐ Environment Setup
|
|
37
|
+
|
|
38
|
+
<br>
|
|
39
|
+
|
|
40
|
+
Create a .env file
|
|
41
|
+
|
|
35
42
|
<br>
|
|
36
|
-
|
|
43
|
+
|
|
37
44
|
|
|
38
45
|
```bash
|
|
39
46
|
PRIVATE_KEY=your_private_key
|
|
@@ -75,7 +82,7 @@ await tx.wait();
|
|
|
75
82
|
|
|
76
83
|
<br>
|
|
77
84
|
|
|
78
|
-
RYT SDK is a modular blockchain development toolkit designed to simplify
|
|
85
|
+
RYT SDK is a modular blockchain development toolkit designed to simplify
|
|
79
86
|
|
|
80
87
|
- Smart contract interaction
|
|
81
88
|
- Wallet management
|
|
@@ -90,8 +97,11 @@ RYT SDK is a modular blockchain development toolkit designed to simplify:
|
|
|
90
97
|
|
|
91
98
|
### ๐งช Testing
|
|
92
99
|
<br>
|
|
100
|
+
|
|
93
101
|
To run tests, run the following commands:
|
|
94
102
|
|
|
103
|
+
<br>
|
|
104
|
+
|
|
95
105
|
```bash
|
|
96
106
|
npm test
|
|
97
107
|
npm run contractsTest
|
|
@@ -100,7 +110,9 @@ To run tests, run the following commands:
|
|
|
100
110
|
<br>
|
|
101
111
|
|
|
102
112
|
### ๐ License
|
|
113
|
+
|
|
103
114
|
<br>
|
|
115
|
+
|
|
104
116
|
[MIT](https://choosealicense.com/licenses/mit/)ยฉ 2026 RYT Core Team
|
|
105
117
|
|
|
106
118
|
|
package/package.json
CHANGED