ryt-sdk 1.0.5 โ 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 +22 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,21 +3,25 @@
|
|
|
3
3
|
<br>
|
|
4
4
|
<br>
|
|
5
5
|
|
|
6
|
-
[RYT](https://ryt.io/) is a
|
|
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.
|
|
7
9
|
|
|
8
10
|
<br>
|
|
9
11
|
|
|
10
12
|
This is our RYT blockchain sdk for provider, wallet, and smart contract interactions.
|
|
11
13
|
|
|
12
14
|
- โก This is only a quick start guide.
|
|
13
|
-
- ๐ For detail developer documentation and guide that how to interact with
|
|
15
|
+
- ๐ For detail developer documentation and guide that how to interact with<br>
|
|
16
|
+
ryt chain visit ๐ [Homepage](https://ryt-docs.vercel.app/)
|
|
14
17
|
|
|
15
18
|
<br>
|
|
16
19
|
<br>
|
|
17
20
|
|
|
18
|
-
|
|
19
21
|
### โ๏ธ Install
|
|
20
22
|
|
|
23
|
+
<br>
|
|
24
|
+
|
|
21
25
|
```bash
|
|
22
26
|
npm install ryt-sdk
|
|
23
27
|
```
|
|
@@ -31,7 +35,12 @@ or
|
|
|
31
35
|
|
|
32
36
|
### ๐ Environment Setup
|
|
33
37
|
|
|
34
|
-
|
|
38
|
+
<br>
|
|
39
|
+
|
|
40
|
+
Create a .env file
|
|
41
|
+
|
|
42
|
+
<br>
|
|
43
|
+
|
|
35
44
|
|
|
36
45
|
```bash
|
|
37
46
|
PRIVATE_KEY=your_private_key
|
|
@@ -47,6 +56,7 @@ MATH_LIB_ADDRESS=0xLibraryAddress
|
|
|
47
56
|
<br>
|
|
48
57
|
|
|
49
58
|
### โก 30-Second Quickstart
|
|
59
|
+
<br>
|
|
50
60
|
|
|
51
61
|
```bash
|
|
52
62
|
import RYTProvider from "ryt-sdk/provider";
|
|
@@ -70,7 +80,9 @@ await tx.wait();
|
|
|
70
80
|
|
|
71
81
|
### ๐ Overview
|
|
72
82
|
|
|
73
|
-
|
|
83
|
+
<br>
|
|
84
|
+
|
|
85
|
+
RYT SDK is a modular blockchain development toolkit designed to simplify
|
|
74
86
|
|
|
75
87
|
- Smart contract interaction
|
|
76
88
|
- Wallet management
|
|
@@ -84,9 +96,12 @@ RYT SDK is a modular blockchain development toolkit designed to simplify:
|
|
|
84
96
|
|
|
85
97
|
|
|
86
98
|
### ๐งช Testing
|
|
99
|
+
<br>
|
|
87
100
|
|
|
88
101
|
To run tests, run the following commands:
|
|
89
102
|
|
|
103
|
+
<br>
|
|
104
|
+
|
|
90
105
|
```bash
|
|
91
106
|
npm test
|
|
92
107
|
npm run contractsTest
|
|
@@ -96,6 +111,8 @@ To run tests, run the following commands:
|
|
|
96
111
|
|
|
97
112
|
### ๐ License
|
|
98
113
|
|
|
114
|
+
<br>
|
|
115
|
+
|
|
99
116
|
[MIT](https://choosealicense.com/licenses/mit/)ยฉ 2026 RYT Core Team
|
|
100
117
|
|
|
101
118
|
|
package/package.json
CHANGED