ryt-sdk 1.0.3 โ†’ 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.
Files changed (2) hide show
  1. package/README.md +20 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
 
2
2
 
3
+ <br>
4
+ <br>
5
+
3
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.
4
7
 
5
8
  This is our RYT blockchain sdk for provider, wallet, and smart contract interactions.
@@ -7,6 +10,9 @@ This is our RYT blockchain sdk for provider, wallet, and smart contract interact
7
10
  - โšก This is only a quick start guide.
8
11
  - ๐Ÿ“š For detail developer documentation and guide that how to interact with ryt chain visit ๐Ÿ‘‰ [Homepage](https://ryt-docs.vercel.app/)
9
12
 
13
+ <br>
14
+ <br>
15
+
10
16
 
11
17
  ### โš™๏ธ Install
12
18
 
@@ -19,6 +25,9 @@ or
19
25
  yarn add ryt-sdk
20
26
  ```
21
27
 
28
+ <br>
29
+ <br>
30
+
22
31
  ### ๐Ÿ” Environment Setup
23
32
 
24
33
  Create a .env file:
@@ -34,6 +43,9 @@ SALT=random_salt
34
43
  MATH_LIB_ADDRESS=0xLibraryAddress
35
44
  ```
36
45
 
46
+ <br>
47
+ <br>
48
+
37
49
  ### โšก 30-Second Quickstart
38
50
 
39
51
  ```bash
@@ -54,6 +66,8 @@ const tx = await contract.write("transfer", to, 100n);
54
66
  await tx.wait();
55
67
  ```
56
68
 
69
+ <br>
70
+ <br>
57
71
 
58
72
  ### ๐Ÿ“Œ Overview
59
73
 
@@ -67,6 +81,9 @@ RYT SDK is a modular blockchain development toolkit designed to simplify:
67
81
  - Cloning (EIP-1167)
68
82
  - Library-linked contracts
69
83
 
84
+ <br>
85
+ <br>
86
+
70
87
 
71
88
  ### ๐Ÿงช Testing
72
89
 
@@ -77,6 +94,9 @@ To run tests, run the following commands:
77
94
  npm run contractsTest
78
95
  ```
79
96
 
97
+ <br>
98
+ <br>
99
+
80
100
  ### ๐Ÿ“œ License
81
101
 
82
102
  [MIT](https://choosealicense.com/licenses/mit/)ยฉ 2026 RYT Core Team
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ryt-sdk",
3
3
  "type": "module",
4
- "version": "1.0.3",
4
+ "version": "1.0.4",
5
5
  "description": "RYT blockchain SDK for provider, wallet, and smart contract interactions",
6
6
  "author": "Muhammad Hammad Mubeen",
7
7
  "license": "MIT",