@abcpros/bitcore-wallet-service
Version:
A service for Mutisig HD Bitcoin Wallets
23 lines • 576 B
TypeScript
export interface ITxConfirmationSub {
version: number;
createdOn: number;
walletId: string;
copayerId: string;
txid: string;
amount: number;
isActive: boolean;
isCreator: boolean;
}
export declare class TxConfirmationSub {
version: number;
createdOn: number;
walletId: string;
copayerId: string;
txid: string;
amount: number;
isActive: boolean;
isCreator: boolean;
static create(opts: any): TxConfirmationSub;
static fromObj(obj: any): TxConfirmationSub;
}
//# sourceMappingURL=txconfirmationsub.d.ts.map