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.

10 lines (7 loc) 167 B
import { Fixed8 } from '../../utils'; export interface Coin { index?: number txid?: string value?: number|Fixed8 } export function Coin (coinObj: Coin): Coin;