UNPKG

evm-blockchain-tools

Version:

This is a collection of resuseable tools to support development for EVM-powered blockchains

10 lines (9 loc) 262 B
export declare const defaultFeeData: { maxPriorityFeePerGas: string; maxFeePerGas: string; }; export declare const ETH_TRANSFER_GAS = 21000; export declare function extractFeeData(feeData: any): { maxFeePerGas: any; maxPriorityFeePerGas: any; };