TronEnergy는 필요에 따라 계산 자원(에너지)을 트론 지갑에 위임하여 USDT 전송이 통상적인 비용의 극히 일부로 진행되도록 합니다. 스테이킹 불필요, 자본 락업 불필요, 지갑 연결 불필요.

문제점

Tron의 모든 USDT 전송에는 에너지라는 계산 자원이 필요합니다. 없으면 네트워크가 TRX를 소각하거나 전송이 실패합니다.

65,000 에너지
모든 표준 USDT 전송에 필요합니다. 처음 수신하는 경우 2배입니다.
~13 TRX 소각
에너지가 없을 때 네트워크에서 부과하는 금액입니다. 전송당 약 $3.50입니다.
일일 8,851건 실패
834M 전송에 대한 저희 분석 결과 320만 건이 에너지 부족으로 실패했습니다.

솔루션

TronEnergy 없음

전송당 약 13 TRX 소각 ($3.50)

TRX가 충분하지 않으면 전송 실패

사용자가 수수료를 충당할 TRX를 구매해야 함

TronEnergy 포함

전송당 4 TRX부터 ($1.08) — 16,250 에너지 / TRX 선형 비율

약 3초 내에 에너지 위임 완료

지갑 연결 불필요

두 가지 통합 방식

간단함 (코드 없음)
사용자가 tronnrg.com의 TronEnergy 지갑으로 TRX를 전송합니다. 에너지는 자동으로 위임됩니다. API 키나 지갑 연결이 필요 없습니다.
API (플랫폼용)
플랫폼이 저희 REST API를 호출하여 프로그래밍 방식으로 에너지를 위임합니다. TRX를 전송하고 메시지에 서명하여 소유권을 증명한 후 위임을 신청합니다. 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나 토큰을 보관하지 않습니다. 에너지는 Tron 프로토콜을 통해 위임됩니다. 지갑 연결이 필요하지 않습니다.
자동 환급
위임 후 결제 실패 시 TRX는 자동으로 발신자 주소로 온체인 환급됩니다.
15분 락
에너지는 15분 동안 위임됩니다. USDT 전송을 완료하기에 충분한 시간입니다.
Telegram WhatsApp