TRON gas fee right now
TRON has no gas price auction. The fee is a network parameter multiplied by the resources your transaction spends, so it is fully predictable — once you know where to look. The numbers below are read from the network on page load.
Key takeaways
- The TRON fee is a network parameter, not an auction — it does not rise with load.
- A USDT transfer costs about 6.43 TRX to an address that holds USDT, about 13.03 TRX to one that does not.
- The recipient decides the price, not the amount you send.
- Renting energy is normally the cheapest of the three ways to cover it.
Read from the network at —
Why the TRON fee is not a gas price
On most networks you bid for block space: the busier the chain, the more you pay. TRON does not work that way. The cost of a transaction is a network parameter multiplied by the resources the transaction consumes, and that parameter changes only when Super Representatives vote to change it — not minute by minute.
That has one practical consequence worth understanding: your transfer never costs more because the network is busy. It costs more because of what you are sending and to whom. Everything else is arithmetic you can do in advance.
Where the number above comes from
A USDT transfer is a smart contract call, and contract calls consume energy. The amount is fixed by what the contract has to do: about 64,285 energy when the recipient already holds USDT, about 130,285 when they do not.
Multiply that by the network parameter (currently shown above in SUN per energy unit), divide by 1,000,000 to convert SUN into TRX, and you have the fee. Nothing is hidden in the middle, and no third party takes a cut — the TRX is destroyed.
Why a new recipient costs double
The USDT contract keeps a balance record for every address that holds it. If your recipient has never held USDT, the contract has to create that record, and writing new storage is the expensive part of the call.
So the same $10 transfer can cost 6.43 TRX or 13.03 TRX depending on nothing but the state of the receiving address. This is the single most common surprise for people sending USDT for the first time.
How to pay less than the burn
Burning TRX is the fallback, not the only option. Energy can also be delegated to your address by someone who has staked TRX — you get the resource, they keep their coins, and no private key ever changes hands.
Three ways to have energy when you press send:
- Stake TRX yourself — works, but covering even one transfer a day means locking a meaningful amount of capital.
- Keep enough TRX to burn — simplest, and the most expensive per transfer.
- Rent energy for the minutes you need it — the cheapest per transfer, which is why the rental market exists at all.
The figure above compares the burn with the cheapest live rental price we can see right now. It moves during the day, because rental prices move.
How to check any of this yourself
Every number on this page is readable from the network without trusting us. The fee parameter lives in the chain parameters under the name getEnergyFee, and any block explorer will show it. The energy your specific transfer needs depends on the recipient — our address checker asks the network directly.
That is the point of publishing it live rather than writing a number into an article: an article written last month is a claim, and a number read from the chain is a fact.
Frequently asked questions
How much is the TRON gas fee right now?
The figure at the top of this page is read from the network when the page loads. A USDT transfer to an address that already holds USDT burns about 6.43 TRX; to an address that never held it, about 13.03 TRX. Both follow from the network parameter shown above.
Why does my USDT transfer cost more than someone else's?
Almost always because of the recipient. A first-time USDT recipient forces the contract to create a balance record, which roughly doubles the energy the transfer consumes. The amount you send has no effect at all.
Can I send USDT on TRON with zero fee?
No. Every contract call consumes energy. What you can change is who pays for that energy: burn your own TRX, use energy from your own staked TRX, or rent energy for the minutes you need it. Renting is normally the cheapest of the three per transfer.
Does the TRON fee go up when the network is busy?
No. TRON has no fee auction. The cost is a network parameter times the resources used, and that parameter changes only by governance vote, not with load.
Where does the burned TRX go?
Nowhere — it is destroyed. It does not go to a validator, to Tether, or to us. That is why 'burn' is the accurate word for it.
How do I verify these numbers myself?
Look up the chain parameter named getEnergyFee on any TRON block explorer and multiply it by the energy your transfer needs. Our address checker tells you that second number for any specific recipient.