@ethereumjs/tx
Version:
Implementation of the various Ethereum Transaction Types
11 lines • 369 B
TypeScript
import type { EIP2930CompatibleTx } from '../types.ts';
/**
* The amount of gas paid for the data in this tx
*/
export declare function getDataGas(tx: EIP2930CompatibleTx): bigint;
/**
* Verifies an access list. Throws if invalid.
* @param accessList
*/
export declare function verifyAccessList(tx: EIP2930CompatibleTx): void;
//# sourceMappingURL=eip2930.d.ts.map