How to check my usdt balance using javascript? My account balance is 0, why is 150990000 output? What is uint256?The address is my wallet, no problem
const options = {
method: 'POST',
headers: {accept: 'application/json', 'content-type': 'application/json'},
body: JSON.stringify({
owner_address: 'TUhycsR2geBGknpwqTz3n7i63XqPUWLJjR',
contract_address: 'TXYZopYRdj2D9XRtbG411XZZ3kM5VkAeBf',
function_selector: 'balanceOf(address)',
parameter: '000000000000000000000000a614f803b6fd780986a42c78ec9c7f77e6ded13c',
visible: true
})
};
fetch(' https://nile.trongrid.io/wallet/triggerconstantcontract', options)
.then(response => response.json())
.then(response => {
async function ff(){
console.log(response)
let outputs = '0x'+response.constant_result[0]
let result = await decodeParams(['uint256'], outputs, false)
console.log(result[0].toNumber())
}
ff();
})
.catch(err => console.error(err));
The reason you're seeing 150990000 instead of 0 could be due to the token's decimals. Many tokens use 18 decimals, so you need to divide the result by 10**18 to get the actual balance. If your token uses a different number of decimals, you'll need to adjust this accordingly.
Here's how you can do this:
This will give you the balance in the base unit of the token.