시작하기
OVERVIEW
TronEnergy 역할, Energy 위임 작동 방식, 그리고 매일 13,000건 이상의 위임이 TronEnergy를 통해 이루어지는 이유에 대해 알아봅니다.
TronEnergy 필요에 따라 Tron 지갑에 컴퓨팅 리소스( Energy )를 위임하므로 USDT 전송 비용이 평소보다 훨씬 저렴합니다. 스테이킹도, 자본 동결도, 지갑 연결도 필요 없습니다.
문제점
Every USDT transfer on Tron requires a computational resource called Energy. Without it, the network burns your TRX or the transfer fails entirely.
65,000 Energy
모든 일반 USDT 송금에 필수입니다. 처음 수령하는 경우 두 배로 필요합니다.
~13 TRX 가 타버렸습니다
Energy 부족할 경우 네트워크에서 부과하는 요금입니다. 건당 약 3.5달러입니다.
하루 8,851건의 오류 발생
8억 3,400만 건의 전송을 분석한 결과, 320만 건이 Energy 부족으로 인해 실패한 것으로 나타났습니다.
해결책
TronEnergy 없이
송금 건당 약 13 TRX ($3.50)의 수수료가 발생합니다.
TRX 충분하지 않으면 전송이 실패합니다.
사용자는 수수료를 충당하기 위해 TRX 구매해야 합니다.
TronEnergy 와 함께
건당 4 TRX ($1.08)부터 시작 - 16,250 Energy / TRX 의 선형 비율
약 3초 동안 Energy 전달됩니다.
지갑 연결이 필요 없습니다.
두 가지 통합 경로
간단함 (코드 필요 없음)
Users send TRX to the TronEnergy wallet on tronnrg.com. Energy is delegated automatically. No API key, no wallet connection.
API (플랫폼용)
Your platform calls our REST API to delegate Energy programmatically. Send TRX, sign a message to prove ownership, and claim via the API.
const API = 'https://api.tronnrg.com';
const ADDR = 'TFqUiCu1JwLHHnBNeaaVKH7Csm4aA3YhZx';
// Step 1: Send TRX to the payment address
// Linear pricing: 16,250 energy per TRX. Min 4 TRX (65k energy), max 1,000 TRX.
// 4 → 65k · 8 → 130k · 16 → 260k · 40 → 650k · 1000 → 16.25M
const delegateTo = 'TRecipientWallet';
const trxAmount = 4; // change this for more energy
const payment = await tronWeb.trx.sendTransaction(ADDR, trxAmount * 1e6);
// Step 2: Sign — proves you are the sender
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());
console.log(result.energy); // trxAmount × 16,250 (e.g. 4 → 65000)
console.log(result.delegations[0].tx); // on-chain tx hash
console.log(result.ref); // "nrg_d_42"
import requests
API = 'https://api.tronnrg.com'
ADDR = 'TFqUiCu1JwLHHnBNeaaVKH7Csm4aA3YhZx'
# Step 1: Send TRX to ADDR (on-chain via your Tron library)
# Linear pricing: 16,250 energy per TRX. Min 4 TRX, max 1,000 TRX.
trx_amount = 4 # 4 → 65k · 8 → 130k · 16 → 260k · 1000 → 16.25M
tx_hash = send_trx(ADDR, trx_amount)
delegate_to = 'TRecipientWallet'
# Step 2: Sign — proves you are the sender
message = f'{tx_hash}:{delegate_to}'
signature = tron.trx.sign_message_v2(message)
# Step 3: Claim the delegation
result = requests.post(f'{API}/delegate', json={
'tx_hash': tx_hash,
'delegate_to': delegate_to,
'signature': signature,
}).json()
print(result['energy']) # trx_amount × 16,250 (e.g. 4 → 65000)
print(result['delegations'][0]['tx']) # on-chain tx hash
print(result['ref']) # "nrg_d_42"
# Step 1: Send TRX to TFqUiCu1JwLHHnBNeaaVKH7Csm4aA3YhZx (via wallet)
# Linear pricing: 16,250 energy per TRX. Min 4 TRX (65k), max 1,000 TRX (16.25M).
# Send 4 for a standard transfer, 8 for a new-wallet transfer, more for bulk.
# Step 2: Sign the message tx_hash:delegate_to (proves you are the sender)
# Use tronWeb.trx.signMessageV2() in your code
# Step 3: Claim the delegation
curl -X POST https://api.tronnrg.com/delegate \
-H "Content-Type: application/json" \
-d '{
"tx_hash": "YOUR_PAYMENT_TX_HASH",
"delegate_to": "TRecipientWallet",
"signature": "YOUR_SIGNATURE"
}'
$api = 'https://api.tronnrg.com';
$addr = 'TFqUiCu1JwLHHnBNeaaVKH7Csm4aA3YhZx';
// Step 1: Send TRX to $addr (on-chain via your Tron library)
// Linear pricing: 16,250 energy per TRX. Min 4 TRX, max 1,000 TRX.
// $trxAmount = 4; // 4 → 65k · 8 → 130k · 16 → 260k · 1000 → 16.25M
// $payment = $tron->sendTrx($addr, $trxAmount);
// $txHash = $payment['txid'];
// Step 2: Sign — proves you are the sender
// $message = $txHash . ':' . $delegateTo;
// $signature = sign_message_v2($message);
// Step 3: Claim the delegation
$ch = curl_init("${api}/delegate");
curl_setopt_array($ch, [
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Content-Type: application/json'],
CURLOPT_POSTFIELDS => json_encode([
'tx_hash' => $txHash,
'delegate_to' => $delegateTo,
'signature' => $signature,
]),
]);
$result = json_decode(curl_exec($ch), true);
curl_close($ch);
echo $result['energy']; // $trxAmount * 16250 (e.g. 4 → 65000)
echo $result['ref']; // "nrg_d_42"
주요 수치
99.97%
가동 시간
13K+
일일
~3s
평균 위임
60+
국가
비보호
저희는 사용자 USDT 또는 토큰을 보유하지 않습니다. Energy Tron 프로토콜을 통해 위임됩니다. 지갑 연결은 필요하지 않습니다.
자동 환불
결제 후 위임이 실패하면 TRX 는 온체인의 송신자 주소로 자동으로 환불됩니다.
15분 잠금
Energy 15분 동안 할당됩니다. USDT 송금을 완료하기에 충분한 시간입니다.