diff --git a/index.html b/index.html
index 953b93d..536838a 100644
--- a/index.html
+++ b/index.html
@@ -132,9 +132,13 @@
-
Eth address
+
ETH address
+
Balance
@@ -334,10 +338,12 @@
}
const ethPrivateKey = coinjs.wif2privkey(keyToConvert).privkey;
const ethAddress = floEthereum.ethAddressFromPrivateKey(ethPrivateKey)
+ const floAddress = floCrypto.getFloID(keyToConvert)
if (!ethAddress) return
buttonLoader('check_balance_button', true)
Promise.all([checkUSDCBalance(ethAddress), checkUSDTBalance(ethAddress)]).then(([usdcBalance, usdtBalance]) => {
getRef('eth_address').value = ethAddress
+ getRef('flo_address').value = floAddress
getRef('usdc_balance').textContent = `${ethers.utils.formatUnits(usdcBalance, 6)} USDC`
getRef('usdt_balance').textContent = `${ethers.utils.formatUnits(usdtBalance, 6)} USDT`
getRef('eth_balance_wrapper').classList.remove('hidden')