CoinSwap: handle "receiving/received LBC" #403

Merged
infinite-persistence merged 1 commit from ip-swap into master 2021-04-12 22:18:51 +02:00
2 changed files with 8 additions and 6 deletions

View file

@ -2,12 +2,13 @@ declare type CoinSwapInfo = {
chargeCode: string,
coins: Array<string>,
sendAddresses: { [string]: string},
sendAmounts: { [string]: number },
sendAmounts: { [string]: any },
lbcAmount: number,
status?: {
status: string,
receipt_txid: string,
lbc_txid: string,
receiptCurrency: string,
receiptTxid: string,
lbcTxid: string,
},
}

View file

@ -2,12 +2,13 @@ declare type CoinSwapInfo = {
chargeCode: string,
coins: Array<string>,
sendAddresses: { [string]: string},
sendAmounts: { [string]: number },
sendAmounts: { [string]: any },
lbcAmount: number,
status?: {
status: string,
receipt_txid: string,
lbc_txid: string,
receiptCurrency: string,
receiptTxid: string,
lbcTxid: string,
},
}