UNPKG

@onekeyfe/blockchain-libs

Version:
10 lines (9 loc) 293 B
import { RestfulRequest } from '../../../basic/request/restful'; import { EIP1559Fee } from './geth'; declare class MmFee { readonly chainId: number; readonly restful: RestfulRequest; constructor(chainId: number); estimateEIP1559Fee(): Promise<EIP1559Fee>; } export { MmFee };