diff --git a/index.html b/index.html index 9219a2c..c515269 100644 --- a/index.html +++ b/index.html @@ -446,6 +446,8 @@ html`${contractDeposits.map(deposit => render.depositCard({ ...deposit, acceptingToken: acceptingToken, + sellingToken: sellingToken, + }))}` ) else @@ -1037,7 +1039,9 @@ `; }, depositCard(details) { - const { currentBalance, depositorAddress, originalBalance, status, time, transactionHash, acceptingToken } = details + const { currentBalance, depositorAddress, originalBalance, status, time, transactionHash, acceptingToken, sellingToken } = details + console.log("I'm at the debug point") + debugger return html`
  • @@ -1047,11 +1051,11 @@
    Deposited
    - ${formatAmount(originalBalance, 'usd')} ${acceptingToken} + ${originalBalance} ${sellingToken}
    Current balance
    - ${formatAmount(currentBalance, 'usd')} ${acceptingToken} + ${currentBalance} ${sellingToken}
    Status