@abcpros/bitcore-wallet-service
Version:
A service for Mutisig HD Bitcoin Wallets
24 lines • 601 B
TypeScript
export interface DonationStorage {
txidDonation: string;
amount: number;
isGiven: boolean;
walletId: string;
receiveLotusAddress: string;
txidGiveLotus?: string;
addressDonation: string;
createdOn: number;
error?: string;
}
export interface DonationInfo {
remaining?: number;
minMoneydonation?: number;
receiveAmountLotus?: number;
donationToAddresses?: CoinDonationToAddress[];
donationCoin?: string;
}
export interface CoinDonationToAddress {
coin: string;
address: string;
network: string;
}
//# sourceMappingURL=donation.d.ts.map