UNPKG

@bitgo/utxo-bin

Version:

Command-line utility for BitGo UTXO transactions

38 lines 1.1 kB
import * as utxolib from '@bitgo/utxo-lib'; export declare function isWalletKeyName(name: string): name is utxolib.bitgo.KeyName; export declare const keyOptions: { readonly userKey: { readonly type: "string"; readonly demandOption: true; }; readonly userKeyPrefix: { readonly type: "string"; readonly default: "0/0"; }; readonly backupKey: { readonly type: "string"; readonly demandOption: true; }; readonly backupKeyPrefix: { readonly type: "string"; readonly default: "0/0"; }; readonly bitgoKey: { readonly type: "string"; readonly demandOption: true; }; readonly bitgoKeyPrefix: { readonly type: "string"; readonly default: "0/0"; }; }; export type KeyOptions = { userKey: string; userKeyPrefix?: string; backupKey: string; backupKeyPrefix?: string; bitgoKey: string; bitgoKeyPrefix?: string; }; export declare function getRootWalletKeys(argv: KeyOptions): utxolib.bitgo.RootWalletKeys; //# sourceMappingURL=walletKeys.d.ts.map