Hi! I am trying to get token balances with sui ts sdk. For now i have 0.998771 wUSDC on my wallet, i am trying to get it in code:
const wUSDC = “0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::COIN”;
const tokenBalance = await client.getBalance({ owner: myAddress, coinType: wUSDC });
output:
{
coinType: ‘0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::COIN’,
coinObjectCount: 2,
totalBalance: ‘283358’,
lockedBalance: {}
}
what means totalBalance: ‘283358’? I should get smth like 999771 (6 decimals)
The trouble was with address, I searched for another (wrong) account… xD