@appliedblockchain/silentdatarollup-custom-rpc 1.0.7 → 1.0.8
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 +5 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Silent Data
|
|
1
|
+
# Silent Data Providers - Custom RPC Package
|
|
2
2
|
|
|
3
3
|
## Table of Contents
|
|
4
4
|
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
## Introduction
|
|
16
16
|
|
|
17
|
-
Custom RPC provider for Silent Data
|
|
17
|
+
Custom RPC provider for Silent Data, providing a local development environment with Silent Data integration.
|
|
18
18
|
|
|
19
19
|
## Prerequisites
|
|
20
20
|
|
|
@@ -35,13 +35,13 @@ npm install @appliedblockchain/silentdatarollup-custom-rpc
|
|
|
35
35
|
|
|
36
36
|
#### Custom RPC Integration Example
|
|
37
37
|
|
|
38
|
-
The Custom RPC package provides a local development environment that integrates Silent Data
|
|
38
|
+
The Custom RPC package provides a local development environment that integrates Silent Data with a local Hardhat node. To start the development environment:
|
|
39
39
|
|
|
40
40
|
```bash
|
|
41
41
|
npm run dev
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
-
This command will start both a Hardhat node and the Custom RPC server concurrently. The Custom RPC server will proxy requests to the Hardhat node while adding Silent Data
|
|
44
|
+
This command will start both a Hardhat node and the Custom RPC server concurrently. The Custom RPC server will proxy requests to the Hardhat node while adding Silent Data functionality.
|
|
45
45
|
|
|
46
46
|
You can configure the Custom RPC server by creating a `.env` file in your project root:
|
|
47
47
|
|
|
@@ -65,6 +65,6 @@ This project is licensed under the [MIT License](LICENSE).
|
|
|
65
65
|
|
|
66
66
|
## Additional Resources
|
|
67
67
|
|
|
68
|
-
- [Silent Data
|
|
68
|
+
- [Silent Data Documentation](https://docs.silentdata.com)
|
|
69
69
|
- [Hardhat Documentation](https://hardhat.org/docs)
|
|
70
70
|
- [Ethers.js Documentation](https://docs.ethers.org/v6/)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appliedblockchain/silentdatarollup-custom-rpc",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Custom RPC for Silent Data
|
|
3
|
+
"version": "1.0.8",
|
|
4
|
+
"description": "Custom RPC for Silent Data",
|
|
5
5
|
"author": "Applied Blockchain",
|
|
6
6
|
"homepage": "https://github.com/appliedblockchain/silent-data-rollup-providers#readme",
|
|
7
7
|
"keywords": [
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"prepack": "npm run build"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@appliedblockchain/silentdatarollup-core": "1.0.
|
|
28
|
+
"@appliedblockchain/silentdatarollup-core": "1.0.8",
|
|
29
29
|
"body-parser": "1.20.3",
|
|
30
30
|
"dotenv": "16.4.7",
|
|
31
31
|
"ethers": "6.13.2",
|