ryt-sdk 1.0.2 โ†’ 1.0.3

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 +14 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,14 @@
1
- #### ๐Ÿš€ RYT SDK
2
1
 
3
- RYT blockchain SDK for provider, wallet, and smart contract interactions.
4
2
 
5
- #### โš™๏ธ Install
3
+ [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
+
5
+ This is our RYT blockchain sdk for provider, wallet, and smart contract interactions.
6
+
7
+ - โšก This is only a quick start guide.
8
+ - ๐Ÿ“š For detail developer documentation and guide that how to interact with ryt chain visit ๐Ÿ‘‰ [Homepage](https://ryt-docs.vercel.app/)
9
+
10
+
11
+ ### โš™๏ธ Install
6
12
 
7
13
  ```bash
8
14
  npm install ryt-sdk
@@ -13,7 +19,7 @@ or
13
19
  yarn add ryt-sdk
14
20
  ```
15
21
 
16
- #### ๐Ÿ” Environment Setup
22
+ ### ๐Ÿ” Environment Setup
17
23
 
18
24
  Create a .env file:
19
25
 
@@ -28,7 +34,7 @@ SALT=random_salt
28
34
  MATH_LIB_ADDRESS=0xLibraryAddress
29
35
  ```
30
36
 
31
- #### โšก 30-Second Quickstart
37
+ ### โšก 30-Second Quickstart
32
38
 
33
39
  ```bash
34
40
  import RYTProvider from "ryt-sdk/provider";
@@ -49,7 +55,7 @@ await tx.wait();
49
55
  ```
50
56
 
51
57
 
52
- #### ๐Ÿ“Œ Overview
58
+ ### ๐Ÿ“Œ Overview
53
59
 
54
60
  RYT SDK is a modular blockchain development toolkit designed to simplify:
55
61
 
@@ -62,7 +68,7 @@ RYT SDK is a modular blockchain development toolkit designed to simplify:
62
68
  - Library-linked contracts
63
69
 
64
70
 
65
- #### ๐Ÿงช Testing
71
+ ### ๐Ÿงช Testing
66
72
 
67
73
  To run tests, run the following commands:
68
74
 
@@ -71,7 +77,7 @@ To run tests, run the following commands:
71
77
  npm run contractsTest
72
78
  ```
73
79
 
74
- #### ๐Ÿ“œ License
80
+ ### ๐Ÿ“œ License
75
81
 
76
82
  [MIT](https://choosealicense.com/licenses/mit/)ยฉ 2026 RYT Core Team
77
83
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ryt-sdk",
3
3
  "type": "module",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "description": "RYT blockchain SDK for provider, wallet, and smart contract interactions",
6
6
  "author": "Muhammad Hammad Mubeen",
7
7
  "license": "MIT",