UNPKG

@btc-vision/bsi-common

Version:

Common library for OP_NET.

10 lines (9 loc) 246 B
import { Decimal128 } from 'mongodb'; export class DataConverter { static fromDecimal128(value) { return BigInt(value.toString()); } static toDecimal128(value) { return Decimal128.fromString(value.toString()); } }