@appliedblockchain/silentdatarollup-hardhat-plugin 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
|
@@ -38,7 +38,11 @@ var import_plugins = require("hardhat/plugins");
|
|
|
38
38
|
|
|
39
39
|
// src/constants.ts
|
|
40
40
|
var import_silentdatarollup_core = require("@appliedblockchain/silentdatarollup-core");
|
|
41
|
-
var SIGN_RPC_METHODS = [
|
|
41
|
+
var SIGN_RPC_METHODS = [
|
|
42
|
+
...import_silentdatarollup_core.SIGN_RPC_METHODS,
|
|
43
|
+
"eth_call",
|
|
44
|
+
"eth_estimateGas"
|
|
45
|
+
];
|
|
42
46
|
|
|
43
47
|
// src/provider.ts
|
|
44
48
|
var log = (0, import_debug.default)(import_silentdatarollup_core2.DEBUG_NAMESPACE);
|
package/dist/index.mjs
CHANGED
|
@@ -18,7 +18,11 @@ import { ProviderWrapper } from "hardhat/plugins";
|
|
|
18
18
|
|
|
19
19
|
// src/constants.ts
|
|
20
20
|
import { SIGN_RPC_METHODS as CORE_SIGN_RPC_METHODS } from "@appliedblockchain/silentdatarollup-core";
|
|
21
|
-
var SIGN_RPC_METHODS = [
|
|
21
|
+
var SIGN_RPC_METHODS = [
|
|
22
|
+
...CORE_SIGN_RPC_METHODS,
|
|
23
|
+
"eth_call",
|
|
24
|
+
"eth_estimateGas"
|
|
25
|
+
];
|
|
22
26
|
|
|
23
27
|
// src/provider.ts
|
|
24
28
|
var log = debug(DEBUG_NAMESPACE);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appliedblockchain/silentdatarollup-hardhat-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Hardhat plugin for Silent Data [Rollup]",
|
|
5
5
|
"author": "Applied Blockchain",
|
|
6
6
|
"homepage": "https://github.com/appliedblockchain/silent-data-rollup-providers#readme",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"prepack": "npm run build"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@appliedblockchain/silentdatarollup-core": "1.0.
|
|
34
|
+
"@appliedblockchain/silentdatarollup-core": "1.0.2",
|
|
35
35
|
"@nomicfoundation/hardhat-ethers": "3.0.8",
|
|
36
36
|
"debug": "4.3.7",
|
|
37
37
|
"ethers": "6.13.2"
|