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 f0b3bc3 commit accb852Copy full SHA for accb852
packages/providers/src.ts/alchemy-provider.ts
@@ -92,17 +92,6 @@ export class AlchemyProvider extends UrlJsonRpcProvider {
92
};
93
}
94
95
- async perform(method: string, params: any): Promise<any> {
96
- if ((method === "estimateGas" && params.transaction.type === 2) || (method === "sendTransaction" && params.signedTransaction.substring(0, 4) === "0x02")) {
97
- logger.throwError("AlchemyProvider does not currently support EIP-1559", Logger.errors.UNSUPPORTED_OPERATION, {
98
- operation: method,
99
- transaction: params.transaction
100
- });
101
- }
102
-
103
- return super.perform(method, params);
104
105
106
isCommunityResource(): boolean {
107
return (this.apiKey === defaultApiKey);
108
0 commit comments