ryt-sdk 1.0.4 โ†’ 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.
Files changed (2) hide show
  1. package/README.md +2 -5
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -5,6 +5,8 @@
5
5
 
6
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.
7
7
 
8
+ <br>
9
+
8
10
  This is our RYT blockchain sdk for provider, wallet, and smart contract interactions.
9
11
 
10
12
  - โšก This is only a quick start guide.
@@ -25,7 +27,6 @@ or
25
27
  yarn add ryt-sdk
26
28
  ```
27
29
 
28
- <br>
29
30
  <br>
30
31
 
31
32
  ### ๐Ÿ” Environment Setup
@@ -43,7 +44,6 @@ SALT=random_salt
43
44
  MATH_LIB_ADDRESS=0xLibraryAddress
44
45
  ```
45
46
 
46
- <br>
47
47
  <br>
48
48
 
49
49
  ### โšก 30-Second Quickstart
@@ -66,7 +66,6 @@ const tx = await contract.write("transfer", to, 100n);
66
66
  await tx.wait();
67
67
  ```
68
68
 
69
- <br>
70
69
  <br>
71
70
 
72
71
  ### ๐Ÿ“Œ Overview
@@ -82,7 +81,6 @@ RYT SDK is a modular blockchain development toolkit designed to simplify:
82
81
  - Library-linked contracts
83
82
 
84
83
  <br>
85
- <br>
86
84
 
87
85
 
88
86
  ### ๐Ÿงช Testing
@@ -94,7 +92,6 @@ To run tests, run the following commands:
94
92
  npm run contractsTest
95
93
  ```
96
94
 
97
- <br>
98
95
  <br>
99
96
 
100
97
  ### ๐Ÿ“œ License
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ryt-sdk",
3
3
  "type": "module",
4
- "version": "1.0.4",
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",