Documentation
TRONENERGY DOCS

Tron Energy 위임 기능을 플랫폼에 통합하는 데 필요한 모든 것을 제공합니다. 간단한 TRX 전송부터 완벽한 API 통합까지, 필요한 모든 기능을 갖추고 있습니다.

API 결제 주소
TFqUiCu1JwLHHnBNeaaVKH7Csm4aA3YhZx
이 주소로 TRX 보내주세요. 귀하의 거래 해시는 에너지 위임을 청구하는 데 사용됩니다.
빠른 시작
세 단계에 걸쳐 에너지를 위임하세요
TRX 보내고, 서명하고, 청구하세요. 단 세 단계, API 키 필요 없음, 회원가입 필요 없음. 선형 가격 책정: TRX 당 16,250 에너지, 최소 4 TRX .
const API = 'https://api.tronnrg.com'; const ADDR = 'TFqUiCu1JwLHHnBNeaaVKH7Csm4aA3YhZx'; const delegateTo = 'TRecipientWallet'; // Step 1: Send TRX to the payment address // Pricing is linear: 16,250 energy per TRX. Minimum 4 TRX (65,000 energy), // maximum 1,000 TRX. Send 4 TRX for a standard transfer, 8 TRX if the // recipient has never received USDT (needs 130,000 energy), or any amount // in between — you get exactly trx × 16,250 energy back. const trxAmount = 4; // 4 → 65k, 8 → 130k, 16 → 260k, 40 → 650k ... const payment = await tronWeb.trx.sendTransaction(ADDR, trxAmount * 1e6); // Step 2: Sign — proves you sent the payment const message = `${payment.txid}:${delegateTo}`; const signature = await tronWeb.trx.signMessageV2(message); // Step 3: Claim the delegation const result = await fetch(`${API}/delegate`, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ tx_hash: payment.txid, delegate_to: delegateTo, signature, }), }).then(res => res.json()); // Done. Energy arrives in ~3 seconds. console.log(result.status); // "delegated" console.log(result.energy); // 65000 console.log(result.delegations[0].tx); // on-chain tx hash (verify on TronScan) console.log(result.ref); // "nrg_d_42" (for support)
99.97%
가동 시간
13K+
일일
60+
국가
~3s
평균 위임
Telegram WhatsApp