TronEnergy delega recursos computacionais ( Energy ) para carteiras Tron sob demanda, de modo que as transferências USDT são processadas a uma fração do custo normal. Sem staking, sem bloqueio de capital, sem conexão com a carteira.

O problema

Cada transferência USDT na Tron requer um recurso computacional chamado Energy . Sem ele, a rede queima seus TRX ou a transferência falha completamente.

65.000 Energy
Obrigatório para todas as transferências padrão USDT . O dobro para destinatários que recebem a transferência pela primeira vez.
~13 TRX queimados
O valor cobrado pela operadora caso você não tenha Energy . Isso equivale a aproximadamente US$ 3,50 por transferência.
8.851 falhas por dia
Nossa análise de 834 milhões de transferências revelou que 3,2 milhões falharam devido à falta Energy .

A solução

Sem TronEnergy

Consome aproximadamente 13 TRX por transferência (US$ 3,50)

A transferência falha se não houver TRX suficientes.

O usuário deve comprar TRX para cobrir a taxa.

Com TronEnergy

A partir de 4 TRX por transferência (US$ 1,08) — linear a 16.250 Energy / TRX

Energy delegada em aproximadamente 3 segundos

Não é necessário conectar a carteira.

Dois Caminhos de Integração

Simples (Sem código)
Os usuários enviam TRX para a carteira TronEnergy em tronnrg.com. Energy é delegada automaticamente. Sem chave API , sem conexão com a carteira.
API (para plataformas)
Sua plataforma utiliza nossa API REST para delegar Energy programaticamente. Envie TRX , assine uma mensagem para comprovar a propriedade e reivindique a delegação. Nenhuma chave API é necessária.
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"

Números-chave

99.97%
TEMPO DE ATIVIDADE
13K+
DIÁRIO
~3s
DELEGAÇÃO MÉDIA
60+
PAÍSES
Não custodial
Nunca armazenamos USDT ou tokens de usuários. Energy é delegada através do protocolo Tron . Não é necessária conexão com carteira.
Reembolsos automáticos
Caso a delegação falhe após o pagamento, TRX são automaticamente reembolsados para o endereço do remetente na blockchain.
Trava de 15 minutos
Energy é alocada por 15 minutos. Tempo mais do que suficiente para concluir sua transferência USDT .
Telegram WhatsApp