Tron에서 trx 전송하기

Tron에서 trx 전송하기 updated_at: 2023-09-15 14:42

Trx 다른 지갑으로 전송하기

const TronWeb = require('tronweb');
..........
const tronWeb = new TronWeb({
  fullHost: 'https://nile.trongrid.io',
  headers: { "TRON-PRO-API-KEY": [Your TRON_API_KEY] },
})

const build = await tronWeb.transactionBuilder.sendTrx(
  [받을 지갑 주소],
  [보낼 Trx Amout],
  [보내는 지갑 주소]
);

const signedtxn = await tronWeb.trx.sign(
  build,
  privateKey // 보내는 지갑의 privateKey
);

const receipt = await tronWeb.trx.sendRawTransaction(
  signedtxn
);

console.log(receipt) // 보낸 결과 (영수증)

Table of contents 목차

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

질문 및 답글