Closed samyan closed 1 year ago
Is it possible to get the confirmed balance of TRC20 from an address passing 'latest' as param to balanceOf ? I'm trying to do it but seems that param is just ignored.
trc20Contract.methods.balanceOf(address).call('latest')
There is anyway to do it?
please try trc20Contract.methods.balanceOf(address).call( {confirmed: true} )
trc20Contract.methods.balanceOf(address).call( {confirmed: true} )
You saved my day. Thank you!
Is it possible to get the confirmed balance of TRC20 from an address passing 'latest' as param to balanceOf ? I'm trying to do it but seems that param is just ignored.
trc20Contract.methods.balanceOf(address).call('latest')
There is anyway to do it?