(transaction: Dict, currency: Currency = undefined)
| 8779 | } |
| 8780 | |
| 8781 | parseTransaction (transaction: Dict, currency: Currency = undefined): Transaction { |
| 8782 | // |
| 8783 | // fetchDeposits |
| 8784 | // |
| 8785 | // { |
| 8786 | // "amount": "4500", |
| 8787 | // "coin": "USDT", |
| 8788 | // "network": "BSC", |
| 8789 | // "status": 1, |
| 8790 | // "address": "0xc9c923c87347ca0f3451d6d308ce84f691b9f501", |
| 8791 | // "addressTag": "", |
| 8792 | // "txId": "Internal transfer 51376627901", |
| 8793 | // "insertTime": 1618394381000, |
| 8794 | // "transferType": 1, |
| 8795 | // "confirmTimes": "1/15" |
| 8796 | // } |
| 8797 | // |
| 8798 | // fetchWithdrawals |
| 8799 | // |
| 8800 | // { |
| 8801 | // "id": "69e53ad305124b96b43668ceab158a18", |
| 8802 | // "amount": "28.75", |
| 8803 | // "transactionFee": "0.25", |
| 8804 | // "coin": "XRP", |
| 8805 | // "status": 6, |
| 8806 | // "address": "r3T75fuLjX51mmfb5Sk1kMNuhBgBPJsjza", |
| 8807 | // "addressTag": "101286922", |
| 8808 | // "txId": "19A5B24ED0B697E4F0E9CD09FCB007170A605BC93C9280B9E6379C5E6EF0F65A", |
| 8809 | // "applyTime": "2021-04-15 12:09:16", |
| 8810 | // "network": "XRP", |
| 8811 | // "transferType": 0 |
| 8812 | // } |
| 8813 | // |
| 8814 | // fiat transaction |
| 8815 | // withdraw |
| 8816 | // { |
| 8817 | // "orderNo": "CJW684897551397171200", |
| 8818 | // "fiatCurrency": "GBP", |
| 8819 | // "indicatedAmount": "29.99", |
| 8820 | // "amount": "28.49", |
| 8821 | // "totalFee": "1.50", |
| 8822 | // "method": "bank transfer", |
| 8823 | // "status": "Successful", |
| 8824 | // "createTime": 1614898701000, |
| 8825 | // "updateTime": 1614898820000 |
| 8826 | // } |
| 8827 | // |
| 8828 | // deposit |
| 8829 | // { |
| 8830 | // "orderNo": "25ced37075c1470ba8939d0df2316e23", |
| 8831 | // "fiatCurrency": "EUR", |
| 8832 | // "transactionType": 0, |
| 8833 | // "indicatedAmount": "15.00", |
| 8834 | // "amount": "15.00", |
| 8835 | // "totalFee": "0.00", |
| 8836 | // "method": "card", |
| 8837 | // "status": "Failed", |
| 8838 | // "createTime": "1627501026000", |
no test coverage detected