We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3df09fc commit 857aa8cCopy full SHA for 857aa8c
src.ts/providers/provider-etherscan.ts
@@ -96,6 +96,8 @@ export class EtherscanPlugin extends NetworkPlugin {
96
}
97
98
99
+const skipKeys = [ "enableCcipRead" ];
100
+
101
let nextId = 1;
102
103
/**
@@ -308,6 +310,8 @@ export class EtherscanProvider extends AbstractProvider {
308
310
_getTransactionPostData(transaction: TransactionRequest): Record<string, string> {
309
311
const result: Record<string, string> = { };
312
for (let key in transaction) {
313
+ if (skipKeys.indexOf(key) >= 0) { continue; }
314
315
if ((<any>transaction)[key] == null) { continue; }
316
let value = (<any>transaction)[key];
317
if (key === "type" && value === 0) { continue; }
0 commit comments