@appliedblockchain/silentdatarollup-ethers-provider-fireblocks 1.0.4 → 1.0.6
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 +1 -5
- package/dist/index.mjs +1 -5
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -45055,11 +45055,7 @@ var SilentDataRollupFireblocksProvider = class _SilentDataRollupFireblocksProvid
|
|
|
45055
45055
|
if (payload.method === "eth_sendTransaction") {
|
|
45056
45056
|
return that.sendTransaction(payload);
|
|
45057
45057
|
}
|
|
45058
|
-
const requiresAuthHeaders = import_silentdatarollup_core2.SIGN_RPC_METHODS.includes(payload.method) || (0, import_silentdatarollup_core2.isSignableContractCall)(
|
|
45059
|
-
payload,
|
|
45060
|
-
this.baseProvider.contractMethodsToSign,
|
|
45061
|
-
this.baseProvider.contract
|
|
45062
|
-
);
|
|
45058
|
+
const requiresAuthHeaders = import_silentdatarollup_core2.SIGN_RPC_METHODS.includes(payload.method) || (0, import_silentdatarollup_core2.isSignableContractCall)(payload, this.baseProvider.contracts);
|
|
45063
45059
|
const delegateHeaders = [];
|
|
45064
45060
|
if (requiresAuthHeaders) {
|
|
45065
45061
|
log2(`Intercepted request: ${JSON.stringify(payload, null, 2)}`);
|
package/dist/index.mjs
CHANGED
|
@@ -45071,11 +45071,7 @@ var SilentDataRollupFireblocksProvider = class _SilentDataRollupFireblocksProvid
|
|
|
45071
45071
|
if (payload.method === "eth_sendTransaction") {
|
|
45072
45072
|
return that.sendTransaction(payload);
|
|
45073
45073
|
}
|
|
45074
|
-
const requiresAuthHeaders = SIGN_RPC_METHODS.includes(payload.method) || isSignableContractCall(
|
|
45075
|
-
payload,
|
|
45076
|
-
this.baseProvider.contractMethodsToSign,
|
|
45077
|
-
this.baseProvider.contract
|
|
45078
|
-
);
|
|
45074
|
+
const requiresAuthHeaders = SIGN_RPC_METHODS.includes(payload.method) || isSignableContractCall(payload, this.baseProvider.contracts);
|
|
45079
45075
|
const delegateHeaders = [];
|
|
45080
45076
|
if (requiresAuthHeaders) {
|
|
45081
45077
|
log2(`Intercepted request: ${JSON.stringify(payload, null, 2)}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appliedblockchain/silentdatarollup-ethers-provider-fireblocks",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Ethers.js provider 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.6",
|
|
36
36
|
"@fireblocks/fireblocks-web3-provider": "1.3.8",
|
|
37
37
|
"debug": "4.3.4",
|
|
38
38
|
"ethers": "6.13.2"
|