UNPKG

@kazeblockchain/krypton-js

Version:

Javascript libraries for kaze wallet using https://github.com/kazechainio/kazewallet/blob/master/js/wallet.js as the original source.

12 lines (9 loc) 258 B
import { Fixed8 } from '../../utils'; import { Coin } from './Coin'; export interface AssetBalance { balance: number|Fixed8 unspent: Coin[] spent: Coin[] unconfirmed: Coin[] } export function AssetBalance(assetBalance?: AssetBalance): AssetBalance