UNPKG

chaingate

Version:

A complete TypeScript library for connecting to and making transactions on different blockchains

8 lines 270 B
import { toDecimal } from '../../../../InternalUtils/NumberLike'; export function toSatoshi(amount) { return toDecimal(amount).mul(1_0000_0000); } export function toBase(amount) { return toDecimal(amount).div(1_0000_0000); } //# sourceMappingURL=UtxoUtils.js.map