ryt-sdk 1.0.6 โ†’ 1.0.8

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.
Files changed (2) hide show
  1. package/README.md +21 -9
  2. 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,<br>
7
- and interacting with smart contracts, wallets, and dApps. It provides a streamlined developer<br>
8
- experience with tools for scalable and modular Web3 development.
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
- to interact with ryt chain visit ๐Ÿ‘‰ [Homepage](https://ryt-docs.vercel.app/)
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,10 +34,15 @@ or
32
34
  <br>
33
35
 
34
36
  ### ๐Ÿ” Environment Setup
37
+
35
38
  <br>
36
- Create a .env file:
37
39
 
38
- ```bash
40
+ Create a .env file
41
+
42
+ <br>
43
+
44
+
45
+ ```javascript
39
46
  PRIVATE_KEY=your_private_key
40
47
  RPC_URL=https://your-rpc-url
41
48
  CHAIN_ID=1234
@@ -51,7 +58,7 @@ MATH_LIB_ADDRESS=0xLibraryAddress
51
58
  ### โšก 30-Second Quickstart
52
59
  <br>
53
60
 
54
- ```bash
61
+ ```javascript
55
62
  import RYTProvider from "ryt-sdk/provider";
56
63
  import RYTWallet from "ryt-sdk/wallet";
57
64
  import RYTContract from "ryt-sdk/contract";
@@ -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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ryt-sdk",
3
3
  "type": "module",
4
- "version": "1.0.6",
4
+ "version": "1.0.8",
5
5
  "description": "RYT blockchain SDK for provider, wallet, and smart contract interactions",
6
6
  "author": "Muhammad Hammad Mubeen",
7
7
  "license": "MIT",