Tron에서 지갑 생성하기
Tron 지갑생성
NodeJs에서 TronWeb을 이용한 지갑 생성
install
npm i tronweb
TRON_API_KEY 획득
https://www.trongrid.io/ 에서 획득
js
const TronWeb = require('tronweb');
..........
const tronWeb = new TronWeb({
fullHost: 'https://nile.trongrid.io',
// fullHost: 'https://api.trongrid.io',
headers: { "TRON-PRO-API-KEY": [Your TRON_API_KEY] },
})
// 지갑 생성
const account = tronWeb.createAccount();
account.then((account) => {
console.log(account)
const address = account.address.base58;
const secret = account.privateKey;
});
지갑 생성은 tronWeb.createAccount() 명령을 통해 쉽게 생성 가능합니다.