UNPKG

@airgap/etherlink

Version:

The @airgap/etherlink package is an implementation of the ICoinProtocol interface from @airgap/coinlib-core.

8 lines (7 loc) 285 B
import { Amount } from './amount'; export interface FeeDefaults<_Units extends string = string> { low: Amount<_Units>; medium: Amount<_Units>; high: Amount<_Units>; } export declare type FeeEstimation<_Units extends string = string> = FeeDefaults<_Units> | Amount<_Units>;