@ethereumjs/tx
Version:
Implementation of the various Ethereum Transaction Types
11 lines • 401 B
TypeScript
import type { EIP7702CompatibleTx } from '../types.ts';
/**
* The amount of gas paid for the data in this tx
*/
export declare function getDataGas(tx: EIP7702CompatibleTx): bigint;
/**
* Checks if the authorization list is valid. Throws if invalid.
* @param authorizationList
*/
export declare function verifyAuthorizationList(tx: EIP7702CompatibleTx): void;
//# sourceMappingURL=eip7702.d.ts.map