UNPKG

@etherspot/prime-sdk

Version:

Etherspot Prime (Account Abstraction) SDK

7 lines (6 loc) 237 B
import { BigNumberish, ethers } from 'ethers'; export interface Gas { maxFeePerGas: BigNumberish; maxPriorityFeePerGas: BigNumberish; } export declare function getGasFee(provider: ethers.providers.JsonRpcProvider): Promise<Gas>;