Compare commits

...

1 commit

Author SHA1 Message Date
infiinte-persistence
ef3f5999a9
CoinSwap: handle "receiving/received LBC" 2021-04-08 16:36:16 +08: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,
},
}