@appliedblockchain/silentdatarollup-hardhat-plugin 1.0.2 → 1.0.4

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 CHANGED
@@ -38,11 +38,7 @@ 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 = [
42
- ...import_silentdatarollup_core.SIGN_RPC_METHODS,
43
- "eth_call",
44
- "eth_estimateGas"
45
- ];
41
+ var SIGN_RPC_METHODS = [...import_silentdatarollup_core.SIGN_RPC_METHODS, "eth_call"];
46
42
 
47
43
  // src/provider.ts
48
44
  var log = (0, import_debug.default)(import_silentdatarollup_core2.DEBUG_NAMESPACE);
package/dist/index.mjs CHANGED
@@ -18,11 +18,7 @@ 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 = [
22
- ...CORE_SIGN_RPC_METHODS,
23
- "eth_call",
24
- "eth_estimateGas"
25
- ];
21
+ var SIGN_RPC_METHODS = [...CORE_SIGN_RPC_METHODS, "eth_call"];
26
22
 
27
23
  // src/provider.ts
28
24
  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.2",
3
+ "version": "1.0.4",
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",
@@ -26,12 +26,12 @@
26
26
  "dist"
27
27
  ],
28
28
  "scripts": {
29
- "build": "tsup src/index.ts --format cjs,esm --dts --clean",
29
+ "build": "tsc --noEmit && tsup src/index.ts --format cjs,esm --dts --clean",
30
30
  "check-exports": "attw --pack . --profile node16",
31
31
  "prepack": "npm run build"
32
32
  },
33
33
  "dependencies": {
34
- "@appliedblockchain/silentdatarollup-core": "1.0.2",
34
+ "@appliedblockchain/silentdatarollup-core": "1.0.4",
35
35
  "@nomicfoundation/hardhat-ethers": "3.0.8",
36
36
  "debug": "4.3.7",
37
37
  "ethers": "6.13.2"