Tron에서 Account 잔고 조회 및 정보보기

Tron에서 Account 잔고 조회 및 정보보기 updated_at: 2023-09-15 14:41

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;
});

Table of contents 목차

평점을 남겨주세요
평점 : 5.0
총 투표수 : 1

질문 및 답글