@appliedblockchain/silentdatarollup-ethers-provider 1.0.5 → 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 +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -108,8 +108,8 @@ var SilentDataRollupProvider = class _SilentDataRollupProvider extends import_et
|
|
|
108
108
|
if (filter && typeof filter === "object" && "_isPrivateEvent" in filter) {
|
|
109
109
|
isPrivateLogsRequest = !!filter._isPrivateEvent;
|
|
110
110
|
if (isPrivateLogsRequest) {
|
|
111
|
-
|
|
112
|
-
payload.params[0] =
|
|
111
|
+
const { _isPrivateEvent, ...filterWithoutPrivateEvent } = filter;
|
|
112
|
+
payload.params[0] = filterWithoutPrivateEvent;
|
|
113
113
|
}
|
|
114
114
|
}
|
|
115
115
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -92,8 +92,8 @@ var SilentDataRollupProvider = class _SilentDataRollupProvider extends JsonRpcPr
|
|
|
92
92
|
if (filter && typeof filter === "object" && "_isPrivateEvent" in filter) {
|
|
93
93
|
isPrivateLogsRequest = !!filter._isPrivateEvent;
|
|
94
94
|
if (isPrivateLogsRequest) {
|
|
95
|
-
|
|
96
|
-
payload.params[0] =
|
|
95
|
+
const { _isPrivateEvent, ...filterWithoutPrivateEvent } = filter;
|
|
96
|
+
payload.params[0] = filterWithoutPrivateEvent;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
99
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appliedblockchain/silentdatarollup-ethers-provider",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Ethers.js provider for Silent Data [Rollup]",
|
|
5
5
|
"author": "Applied Blockchain",
|
|
6
6
|
"homepage": "https://github.com/appliedblockchain/silent-data-rollup-providers#readme",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"test": "jest"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@appliedblockchain/silentdatarollup-core": "1.0.
|
|
35
|
+
"@appliedblockchain/silentdatarollup-core": "1.0.6",
|
|
36
36
|
"debug": "4.3.7",
|
|
37
37
|
"ethers": "6.13.2"
|
|
38
38
|
},
|