diff --git a/src/common/deposit.js b/src/common/deposit.js index d440261..4e545da 100644 --- a/src/common/deposit.js +++ b/src/common/deposit.js @@ -14,7 +14,7 @@ const parseUsdtTx = txList => { if (!txList || !Array.isArray(txList)) return []; return txList.map(tx => { return { - amount: +tx.value, + amount: (+tx.value) / 10e6, hash: tx.hash, blockNumber: tx.blockNumber };