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