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.
Files changed (2) hide show
  1. package/README.md +22 -5
  2. 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 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.
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 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/)
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
- Create a .env file:
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
- RYT SDK is a modular blockchain development toolkit designed to simplify:
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ryt-sdk",
3
3
  "type": "module",
4
- "version": "1.0.5",
4
+ "version": "1.0.7",
5
5
  "description": "RYT blockchain SDK for provider, wallet, and smart contract interactions",
6
6
  "author": "Muhammad Hammad Mubeen",
7
7
  "license": "MIT",