@appliedblockchain/silentdatarollup-hardhat-plugin-fireblocks 1.0.6 → 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 +4 -4
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Silent Data
|
|
1
|
+
# Silent Data Providers - Hardhat Plugin Fireblocks Package
|
|
2
2
|
|
|
3
3
|
## Table of Contents
|
|
4
4
|
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
## Introduction
|
|
16
16
|
|
|
17
|
-
Custom providers for integrating Silent Data
|
|
17
|
+
Custom providers for integrating Silent Data with Hardhat and Fireblocks.
|
|
18
18
|
|
|
19
19
|
## Prerequisites
|
|
20
20
|
|
|
@@ -35,7 +35,7 @@ npm install @appliedblockchain/silentdatarollup-core @appliedblockchain/silentda
|
|
|
35
35
|
|
|
36
36
|
#### Hardhat Integration Example
|
|
37
37
|
|
|
38
|
-
To integrate the Silent Data
|
|
38
|
+
To integrate the Silent Data Provider with Hardhat, you need to configure your Silent Data network in the `hardhat.config.ts` file. Below is an example of how to set it up, and note that a `silentdata` property is needed on the network config to enable it. This property can be an empty object to apply defaults, or you can specify the configurations.
|
|
39
39
|
|
|
40
40
|
```typescript
|
|
41
41
|
import {
|
|
@@ -99,7 +99,7 @@ This project is licensed under the [MIT License](LICENSE).
|
|
|
99
99
|
|
|
100
100
|
## Additional Resources
|
|
101
101
|
|
|
102
|
-
- [Silent Data
|
|
102
|
+
- [Silent Data Documentation](https://docs.silentdata.com)
|
|
103
103
|
- [Fireblocks Hardhat Plugin](https://developers.fireblocks.com/reference/hardhat-plugin)
|
|
104
104
|
- [Fireblocks Developer Documentation](https://developers.fireblocks.com/api)
|
|
105
105
|
- [Fireblocks Web3 Provider](https://developers.fireblocks.com/reference/evm-web3-provider)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appliedblockchain/silentdatarollup-hardhat-plugin-fireblocks",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Hardhat plugin for Silent Data
|
|
3
|
+
"version": "1.0.8",
|
|
4
|
+
"description": "Hardhat plugin for Silent Data with Fireblocks integration",
|
|
5
5
|
"author": "Applied Blockchain",
|
|
6
6
|
"homepage": "https://github.com/appliedblockchain/silent-data-rollup-providers#readme",
|
|
7
7
|
"keywords": [
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"prepack": "npm run build"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@appliedblockchain/silentdatarollup-core": "1.0.
|
|
35
|
+
"@appliedblockchain/silentdatarollup-core": "1.0.8",
|
|
36
36
|
"@fireblocks/fireblocks-web3-provider": "1.3.8",
|
|
37
37
|
"@fireblocks/hardhat-fireblocks": "1.3.5",
|
|
38
38
|
"debug": "4.3.7",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"typescript": "5.6.2"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@fireblocks/hardhat-fireblocks": "1.
|
|
51
|
-
"hardhat": "2.
|
|
50
|
+
"@fireblocks/hardhat-fireblocks": "^1.0.0",
|
|
51
|
+
"hardhat": "^2.0.0"
|
|
52
52
|
},
|
|
53
53
|
"engines": {
|
|
54
54
|
"node": ">=18.0.0"
|