UNPKG

opnet

Version:

The perfect library for building Bitcoin-based applications.

19 lines (16 loc) 295 B
import { ABIDataTypes } from '@btc-vision/transaction'; /** * The Bitcoin ABI value. * @interface * @cathegory Abi */ export interface BitcoinAbiValue { /** * The name of the input. */ name: string; /** * The type of the input. */ type: ABIDataTypes; }