UNPKG

@abcpros/bitcore-wallet-service

Version:
26 lines (23 loc) 531 B
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; }