UNPKG

@airgap/etherlink

Version:

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

6 lines (5 loc) 158 B
import { Amount } from './amount'; export interface Balance<_Units extends string = string> { total: Amount<_Units>; transferable?: Amount<_Units>; }