UNPKG

opnet

Version:

The perfect library for building Bitcoin-based applications.

7 lines (6 loc) 467 B
import { Address, AddressMap } from '../../node_modules/@btc-vision/transaction/build/index.js'; export type PointerLike = bigint | string; export type DecodedCallResult = bigint | string | boolean | number | Address | Uint8Array | Array<bigint> | Array<string> | Array<boolean> | Array<number> | Array<Uint8Array> | AddressMap<bigint>; export type Numeric = number | bigint; export type BigNumberish = Numeric | string; export type BlockTag = BigNumberish | string;