Tron에서 Account 잔고 조회 및 정보보기
Account 잔고 및 상세조회
Nile에서 처리한 예
const TronWeb = require('tronweb');
..........
const tronWeb = new TronWeb({
fullHost: 'https://nile.trongrid.io',
headers: { "TRON-PRO-API-KEY": [Your TRON_API_KEY] },
})
tronWeb.trx.getAccount([Your Account]).then((resp) => {
console.log(resp);
const address = tronWeb.address.fromHex(resp.address);
const balance = resp.balance;
});