UNPKG

@unilogin/sdk

Version:

SDK is a JS library, that communicates with relayer. SDK allows managing contract, by creating basic contract-calling messages.

11 lines (7 loc) 250 B
import {utils} from 'ethers'; export type GasPriceOption = 'fast' | 'cheap'; export type GasPriceEstimation = { gasPrice: utils.BigNumber; timeEstimation: number; }; export type GasPriceSuggestion = Record<GasPriceOption, GasPriceEstimation>;