@appliedblockchain/silentdatarollup-hardhat-plugin-fireblocks 1.0.1 → 1.0.2
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/dist/index.js +5 -1
- package/dist/index.mjs +5 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -32,7 +32,11 @@ var import_config2 = require("hardhat/config");
|
|
|
32
32
|
|
|
33
33
|
// src/constants.ts
|
|
34
34
|
var import_silentdatarollup_core = require("@appliedblockchain/silentdatarollup-core");
|
|
35
|
-
var SIGN_RPC_METHODS = [
|
|
35
|
+
var SIGN_RPC_METHODS = [
|
|
36
|
+
...import_silentdatarollup_core.SIGN_RPC_METHODS,
|
|
37
|
+
"eth_call",
|
|
38
|
+
"eth_estimateGas"
|
|
39
|
+
];
|
|
36
40
|
var DEBUG_NAMESPACE = "silentdata:fireblocks";
|
|
37
41
|
var DEFAULT_MAX_RETRIES = 25;
|
|
38
42
|
var DEFAULT_POLLING_INTERVAL = 2e3;
|
package/dist/index.mjs
CHANGED
|
@@ -8,7 +8,11 @@ import { extendEnvironment } from "hardhat/config";
|
|
|
8
8
|
|
|
9
9
|
// src/constants.ts
|
|
10
10
|
import { SIGN_RPC_METHODS as CORE_SIGN_RPC_METHODS } from "@appliedblockchain/silentdatarollup-core";
|
|
11
|
-
var SIGN_RPC_METHODS = [
|
|
11
|
+
var SIGN_RPC_METHODS = [
|
|
12
|
+
...CORE_SIGN_RPC_METHODS,
|
|
13
|
+
"eth_call",
|
|
14
|
+
"eth_estimateGas"
|
|
15
|
+
];
|
|
12
16
|
var DEBUG_NAMESPACE = "silentdata:fireblocks";
|
|
13
17
|
var DEFAULT_MAX_RETRIES = 25;
|
|
14
18
|
var DEFAULT_POLLING_INTERVAL = 2e3;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appliedblockchain/silentdatarollup-hardhat-plugin-fireblocks",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Hardhat plugin for Silent Data [Rollup] with Fireblocks integration",
|
|
5
5
|
"author": "Applied Blockchain",
|
|
6
6
|
"homepage": "https://github.com/appliedblockchain/silent-data-rollup-providers#readme",
|
|
@@ -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.2",
|
|
36
36
|
"@fireblocks/fireblocks-web3-provider": "1.3.8",
|
|
37
37
|
"@fireblocks/hardhat-fireblocks": "1.3.5",
|
|
38
38
|
"debug": "4.3.7",
|