UNPKG

@bitgo/utxo-bin

Version:

Command-line utility for BitGo UTXO transactions

21 lines 728 B
import * as utxolib from '@bitgo/utxo-lib'; import { CommandModule } from 'yargs'; import { KeyOptions } from '../../args'; type IndexLimitOptions = { index?: string[]; limit?: number; }; type ArgsGenerateAddressFixedScript = KeyOptions & IndexLimitOptions & { network: utxolib.Network; chain?: number[]; format: string; }; export declare const cmdGenerateFixedScript: CommandModule<unknown, ArgsGenerateAddressFixedScript>; type ArgsGenerateDescriptorAddress = { network: utxolib.Network; descriptor: string; format: string; } & IndexLimitOptions; export declare const cmdFromDescriptor: CommandModule<unknown, ArgsGenerateDescriptorAddress>; export {}; //# sourceMappingURL=cmdGenerate.d.ts.map