Descripción general de TronEnergy: Cómo funciona el alquiler de Tron Energy
Qué hace TronEnergy, cómo funciona la delegación de Tron Energy y por qué ocurren más de 13,000 delegaciones a través de él cada día. Reduce las comisiones de transferencia de USDT de 13 TRX a 4.
TronEnergy delega recursos computacionales (energía) a billeteras de Tron bajo demanda, para que las transferencias de USDT se realicen a una fracción de su costo normal. Sin staking, sin bloqueo de capital, sin conexión de billetera.
El problema
Cada transferencia de USDT en Tron requiere un recurso computacional llamado Energy. Sin él, la red quema tu TRX o la transferencia falla completamente.
65,000 Energía
Requerida para cada transferencia estándar de USDT. El doble para receptores por primera vez.
~13 TRX quemados
Lo que la red cobra si no tienes Energía. Son ~$3.50 por transferencia.
8,851 fallos / Día
Nuestro análisis de 834M transferencias encontró 3.2 millones que fallaron por falta de Energía.
La Solución
Sin TronEnergy
Quema ~13 TRX por transferencia ($3.50)
La transferencia falla si no hay suficientes TRX
El usuario debe comprar TRX para cubrir la comisión
Con TronEnergy
Desde 4 TRX por transferencia ($1.08) — lineal a 16,250 Energía / TRX
Energía delegada en ~3 segundos
No se requiere conexión de billetera
Dos Caminos de Integración
Simple (Sin código)
Los usuarios envían TRX a la billetera de TronEnergy en tronnrg.com. La Energía se delega automáticamente. Sin API key, sin conexión de billetera.
API (Para Plataformas)
Tu plataforma llama nuestra API REST para delegar Energía programáticamente. Envía TRX, firma un mensaje para probar propiedad, reclama la delegación. Sin API key requerida.
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.25Mconst delegateTo = 'TRecipientWallet';
const trxAmount = 4; // change this for more energyconst payment = await tronWeb.trx.sendTransaction(ADDR, trxAmount * 1e6);
// Step 2: Sign — proves you are the senderconst message = `${payment.txid}:${delegateTo}`;
const signature = await tronWeb.trx.signMessageV2(message);
// Step 3: Claim the delegationconst result = awaitfetch(`${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 hashprint(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 Clave
99.97%
DISPONIBILIDAD
13K+
DIARIO
~3s
DELEGACIÓN PROMEDIO
60+
PAÍSES
Sin Custodia
Nunca mantenemos tu USDT ni tokens. La energía se delega a través del protocolo Tron. No se requiere conexión de billetera.
Reembolsos Automáticos
Si la delegación falla después del pago, los TRX se reembolsan automáticamente a la dirección del remitente en la cadena.
Bloqueo de 15 Minutos
La energía se delega por 15 minutos. Tiempo suficiente para completar tu transferencia de USDT.