What Is TRON Bandwidth? How It Works, Costs, Limits & How to Get More

TRON bandwidth is the network’s measure of how many bytes of data your transaction writes to the blockchain. Every 1 byte of on-chain data written consumes 1 bandwidth point. Every activated account receives 600 free bandwidth points every 24 hours; once the free quota plus any bandwidth you have staked are used up, TRON will burn your TRX at a fixed rate of 0.001 TRX per byte.

That is the short version. Next, I’ll walk through how bandwidth is billed, the real byte cost of each transaction type, what the free quota buys, the burn math, and four ways to get more bandwidth. I’ll also provide a staking formula you can plug straight into capacity planning. All data was verified on TRON mainnet on September 9, 2026, at block 86,084,282.

1. What TRON Bandwidth Is, in One Paragraph

Bandwidth is one of TRON’s three system resources; the other two are TRON energy (Energy, which meters the computation a smart contract needs to run) and TRON Power (voting weight). Bandwidth’s job is simple: it keeps count of how much space a transaction takes up once it is serialized, broadcast, and stored by every node in the network.

Three properties define it:

  1. It is measured in bytes. A 265-byte transaction costs 265 bandwidth.
  2. It has a free tier. Every activated account receives 600 points per 24-hour cycle, refreshed on a rolling basis rather than at a fixed midnight reset.
  3. It is a fallback bill, not a fee market. When bandwidth is insufficient, TRON burns TRX at a fixed rate per byte. There is no gas price to bid and no surge pricing during congestion.

This design has a very practical consequence: plan your resources ahead and you can usually transact at zero cost; skip the preparation and your worst-case fee can still be calculated with precision. Block space on TRON is allocated by 27 Super Representatives, not auctioned. Its scarce resource is mainly the cumulative cost of every node storing your transaction data forever, and bytes are the unit that measures that cost. As a result, fees are predictable and do not spike when network demand surges.

2. How Bandwidth Is Charged: The Three-Layer Order

This is the part most guides get wrong, and it changes how you should manage resources. TRON does not burn your free quota first:

  • Layer 1 — Bandwidth from TRX you have staked (freezeBalanceV2, resource = BANDWIDTH)
  • Layer 2 — Your free 600-point daily quota
  • Layer 3 — Burn TRX from your balance at 1,000 sun (0.001 TRX) per byte

Why it matters: when you stake for bandwidth, your account keeps its original 600-point free quota in reserve. The network spends your staked bandwidth first and only turns to the free quota once that runs out. Put simply, a staked account carries two layers of resource protection.

TRON energy follows the same layered-quota mechanism for smart contracts, but with one extra participant: the contract deployer. A contract’s consume_user_resource_percent parameter sets how the energy bill is shared: part is borne by the transaction caller, and the rest is offset by the deployer’s own staked energy. Bandwidth has no such sharing mechanism. The bandwidth bill is always paid by the transaction sender — with one exception: someone else can stake for bandwidth and cover the cost on your behalf (Section 7).

3. What Each Transaction Actually Costs

Rather than quote documentation, I measured this. I pulled six consecutive mainnet blocks (86,084,277–86,084,282) and read the net_usage field from each transaction’s receipt — the bandwidth the network actually charged.

TransactionContract typeBandwidth (bytes)RangeSample
Send TRXTransferContract265257 – 275586
Send a TRC-10 tokenTransferAssetContract281280 – 283321
Send USDT (TRC-20)TriggerSmartContract345338 – 412204
Delegate resourcesDelegateResourceContract281276 – 287369
Undelegate resourcesUnDelegateResourceContract282278 – 292421
Create a new accountAccountCreateContract2682683
Vote for Super RepresentativesVoteWitnessContract2712711

Three things I would flag:

The number in the API is not the number you pay. For a plain TRX transfer, raw_data_hex is about 131 bytes, but the network charges 265. The on-chain count includes the full envelope — block references, timestamp, expiration, contract payload, and the 65-byte signature. Always budget from net_usage.

Multi-signature costs more, predictably. Every additional signature adds roughly 65 bytes, so a 2-of-3 multi-sig transfer costs materially more. For a corporate treasury, this compounds across every transaction.

TRC-20 bandwidth varies. USDT transfers clustered at 345 bytes but ranged to 412, because contract calls carry a variable data payload.

The formula behind it all couldn’t be simpler:

Bandwidth consumed (points) = serialized size of the transaction (bytes)

4. The Free 600-Point Daily Quota

Every activated account gets 600 free bandwidth points per 24-hour cycle (chain parameter #61, getFreeNetLimit — confirmed live today). Here is what that buys at the byte costs I measured:

ActivityBandwidth eachFree transactions per day
Send TRX2652.26
Send a TRC-10 token2812.13
Send USDT (TRC-20)3451.74
Vote for Super Representatives2712.21

Free transactions per day = 600 ÷ bandwidth cost per transaction

The quota has been cut twice, which is why old articles are wrong:

PeriodDaily free bandwidthNote
Before September 20215,000Original default
September 2021 – mid-20231,500Reduced to curb spam TRC-10 airdrops
Mid-2023 – today600At the time, over 75% of TRX transfers were under 0.1 TRX

The 2023 reduction was justified with on-chain data: roughly 75.34% of TRX transfers over the prior three months moved less than 0.1 TRX. The governance discussion modelled the impact at about 2.24 free TRX transfers or 1.74 free TRC-20 transfers per day — my measurement of 2.26 and 1.74 matches it almost exactly.

How it recovers. Bandwidth and energy obtained by staking recover gradually over a rolling 24-hour window. If you exhaust your quota in one go, it will fully replenish after 24 hours under normal circumstances. It does not reset at midnight, and unused quota will not expire automatically.

Note: TRON accounts only get free bandwidth daily. There is no free energy.

5. When Bandwidth Runs Out: The TRX Burn Math

When layers 1 and 2 are exhausted, TRON burns TRX from the sender’s balance at chain parameter #3 (getTransactionFee), currently 1,000 sun per byte.

  • 1 TRX = 1,000,000 sun
  • Bandwidth burn rate = 1,000 sun/byte = 0.001 TRX per byte
  • Burn cost (TRX) = bandwidth shortfall (bytes) × 0.001

Using measured byte sizes and TRX at approximately $0.34:

ScenarioShortfallTRX burnedApprox. USD
One TRX transfer, quota empty2650.265 TRX~$0.09
One USDT transfer, quota empty3450.345 TRX~$0.12
10 TRX transfers, quota empty2,6502.65 TRX~$0.90

Two details worth internalizing:

A failed transaction still consumes bandwidth. If a contract call reverts, the bytes were still broadcast and stored. This is the most common source of “my balance is draining but nothing is happening.”

Bandwidth is charged even when you have energy. A USDT transfer consumes both — roughly 345 bandwidth and about 64,285 energy. Having plenty of tron energy does not reduce your bandwidth bill by a single byte.

6. Bandwidth vs. TRON Energy: Where Your Fee Really Goes

Plenty of people dig into bandwidth hoping to fix high USDT transfer fees. I’ll give you the conclusion up front: that road leads nowhere, because the cost structure is completely lopsided. Below is the full cost of one USDT (TRC-20) transfer with no resources prepared (calculated at live parameters):

Recipient walletBandwidth (0.001 TRX)TRON energy (0.0001 TRX)TotalBandwidth share
Already holds USDT345 → 0.345 TRX64,285 → 6.429 TRX6.77 TRX5.1%
First time holding USDT345 → 0.345 TRX130,285 → 13.029 TRX13.37 TRX2.6%

Bandwidth is the cheap resource; tron energy is the expensive one. Optimizing bandwidth alone trims only about 5% off your USDT transfer cost. That is why the resource-rental market is mostly an energy-rental business: many so-called “bandwidth rental” products actually provide delegated energy paid on your behalf.

Two notes on the energy side. The 100 sun price is recent — it was cut from 210 sun in August 2025 by governance proposal #104, which roughly halved TRX-denominated contract fees. And a dynamic energy mechanism is currently enabled: contracts whose recent consumption exceeds 5,000,000,000 energy carry an energy_factor that steps up to a cap of 3.4, making their effective cost up to 4.4× the base consumption (final usage = base × (1 + energy_factor)). High-traffic stablecoin contracts are the ones exposed. Bandwidth has no multiplier — one byte is always one byte.

7. Four Ways to Get More TRON Bandwidth

Method 1 — Use the free 600 daily quota deliberately

Two free TRX transfers a day, every day, is 60+ free transfers a month. Check your quota before you transact, and spread batch jobs across days instead of forcing 20 transfers into one window.

  • Cost: 0 TRX · Best for: Light individual use · Limitation: 600/day cap

Method 2 — Stake (freeze) TRX for bandwidth

In a wallet such as TronLink: open Stake / Freeze → choose Bandwidth → enter the amount (minimum 1 TRX) → confirm. Bandwidth is available immediately. To release it later, unfreeze and wait out the 14-day delay (parameter #70) before withdrawing.

What staking gives you beyond per-transaction payment:

  • A refilling pool that regenerates every 24 hours for as long as the stake holds.
  • TRON Power — staked TRX grants voting weight 1:1, so you can vote for Super Representatives and earn rewards. Your TRX is locked, not spent.
  • A preserved free quota, because staked bandwidth is consumed first.
  • Cost: Opportunity cost of locked capital · Best for: High-volume senders, businesses · Limitation: 14-day unlock; yield per TRX moves with network staking

Method 3 — Receive delegated bandwidth

Any account that has staked TRX can use the DelegateResourceContract to grant bandwidth to other accounts. The receiving side doesn’t need to stake any TRX, and no private key ever changes hands — the grant is completed directly at the blockchain protocol level. Exchanges and payment processors rely on exactly this method to cover user costs from a single pool, and every “energy rental” service on the market runs on the same mechanism underneath.

Field experience keeps teaching us the same lesson: bandwidth costs far less than TRON energy, so most resource-delegation services on the market are energy-rental products. When our Tronsell.io team provisions on-chain resources for clients, we find that what they need is almost always energy for making USDT transfers. Bandwidth needs, in practice, can generally be met by the daily free quota plus a small stake. For example, staking just 215 TRX is enough to cover the bandwidth consumed by a full day of USDT transfers.

  • Cost: Whatever the delegating party charges · Best for: Teams, multi-account operations · Limitation: You depend on a third party’s pool staying funded

Method 4 — Reduce the bytes you send

Batch where the contract allows it; avoid unnecessary multi-signature (each extra signature adds ~65 bytes); keep notes out of routine transfers; diagnose failures before resubmitting; and schedule around your rolling window rather than bursting.

8. Staking Math: How Much TRX Do You Need?

This is where I see the most bad arithmetic online, usually from guides quoting a stale “1 TRX ≈ 1,000 bandwidth.” There is no fixed rate — your bandwidth is your share of network-wide staking at that moment.

  • Your bandwidth (per 24h) = (your TRX staked for bandwidth ÷ total TRX staked for bandwidth network-wide) × 43,200,000,000
  • TRX to stake = required bandwidth ÷ (43,200,000,000 ÷ TotalNetWeight)

Live network totals from wallet/getaccountresource today:

Network figureValue (2026-09-09)
Total daily bandwidth supply (TotalNetLimit)43,200,000,000
Total TRX staked for bandwidth (TotalNetWeight)26,870,495,970 TRX
Bandwidth per staked TRX≈ 1.61
Total daily energy supply (TotalEnergyLimit)180,000,000,000
Total TRX staked for energy (TotalEnergyWeight)18,765,111,080 TRX
TRON energy per staked TRX≈ 9.59

So today one staked TRX buys about 1.61 bandwidth points per day (or about 9.59 energy).

Daily goalBandwidth needed/dayTRX to stakeApprox. value at $0.34
2 TRX transfers530330 TRX~$112
5 TRX transfers1,325824 TRX~$280
1 USDT transfer (bandwidth only)345215 TRX~$73
10 USDT transfers3,4502,146 TRX~$730

The honest comparison. Covering the bandwidth for one USDT transfer per day costs about 215 TRX of stake; covering the energy costs 64,285 ÷ 9.59 ≈ 6,702 TRX. If instead you burn 6.77 TRX per transfer, the stake breaks even after 6,702 ÷ 6.77 ≈ 990 transfers — just under three years at one a day, about three months at ten a day.

But that framing understates staking, because staked TRX is not spent: it stays yours, earns voting rewards, and unlocks in 14 days. The real cost is opportunity cost. Run the arithmetic with your own numbers before locking capital.

9. How to Check Your Bandwidth

Wallets such as TronLink show remaining bandwidth on the account screen, and TronScan’s resources panel shows free and staked bandwidth alongside energy. When I need exact numbers, I query the node:

curl -X POST https://api.trongrid.io/wallet/getaccountresource -H “Content-Type: application/json” -d ‘{“address”: “TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g”, “visible”: true}’

FieldMeaning
freeNetUsed / freeNetLimitFree daily bandwidth: used / total (600)
NetUsed / NetLimitBandwidth from your own staked TRX
assetNetUsed / assetNetLimitPer-TRC-10 bandwidth buckets
TotalNetLimit / TotalNetWeightNetwork supply and total staked TRX (for the formula above)

To check current prices rather than trusting any article, including this one:

curl -X POST https://api.trongrid.io/wallet/getchainparameters

Look for getTransactionFee (bandwidth price in sun), getEnergyFee, getFreeNetLimit, and getTotalNetLimit.

10. Six Bandwidth Problems and How to Fix Them

SymptomWhat is happeningFix
“Insufficient bandwidth” errorStaked pool and free 600 both exhaustedWait for the rolling window, stake TRX, or get delegated bandwidth
Transaction fails with OUT_OF_ENERGYContract call exceeded the fee_limit budget; not a bandwidth issueRaise fee_limit (cap 15,000 TRX) or obtain more energy
Balance drops but transactions failFailed transactions still consume bandwidth and energyDiagnose the revert reason before resubmitting
First transfer to a new address costs extraActivation burns 1 TRX, plus 0.1 TRX more if bandwidth is shortKeep a small TRX buffer; activation via contract adds 25,000 energy
New wallet cannot send anythingAccount was never activatedSend a small amount of TRX to the address first
Costs crept up over monthsParameters changed by governance, or network staking shifted your yieldRe-read getchainparameters and getaccountresource

One more failure mode deserves special attention: when you rent delegated resources from a provider and their pool runs out, your next transaction automatically starts consuming the TRX in your own account. You get no warning and no error message along the way — your balance just quietly drains. So keep an eye on your account balance, not just your resource allowance.

11. A Practical Playbook by User Type

If you are…Your bandwidth realityWhat I would do
An individual sending a few transfers a week600 free points is plentyUse the free quota; keep 5–10 TRX as a buffer
A frequent USDT senderBandwidth is ~5% of your fee; energy is ~95%Optimize energy; stake ~215 TRX to make bandwidth a non-issue
Running an exchange or payment processorThousands of transactions dailyStake both resources from one pool and delegate to operational wallets; monitor TotalNetWeight monthly
A dApp developerBandwidth is always the caller’s cost, even if you subsidize energySet consume_user_resource_percent = 0 to absorb energy; delegate bandwidth to active users
A TRC-10 issuerPer-token bandwidth buckets applyStake TRX for asset bandwidth so holders are not blocked

12. TRON Bandwidth FAQ

Basics

What is TRON bandwidth in simple terms? 

The unit TRON uses to measure how much data your transaction writes to the blockchain — one byte equals one bandwidth point. Think of it as paying postage by weight rather than distance.

Is bandwidth the same as gas? 

No. Gas is a demand-driven price for computation and block space. TRON bandwidth is a fixed quantity — bytes — charged at a fixed rate when you have no quota left. TRON meters computation separately, as energy.

How much free bandwidth do I get, and when does it reset? 

600 points per 24-hour cycle, down from 1,500 in 2023 and 5,000 originally. It recovers continuously on a rolling cycle measured from when you spent it — not at midnight.

Do I get free energy too? 

No. There is no free quota for tron energy; it comes only from staking, delegation, or burning TRX.

Can I transfer or sell unused bandwidth? 

Not directly — bandwidth is not a token. But you can delegate the bandwidth your stake generates to another account, which is how rental services work.

Costs and limits

How much bandwidth does one TRX transfer cost? 

About 265 bytes, measured across 586 transfers in six live blocks. With an empty quota that burns 0.265 TRX.

How much does a USDT (TRC-20) transfer use? 

About 345 bytes — but its real cost is energy: roughly 64,285 to a wallet that already holds USDT, or 130,285 to a first-time recipient. Bandwidth is only about 5% of the fee.

What is the burn rate when I run out? 

1,000 sun per byte, or 0.001 TRX per byte (1 TRX = 1,000,000 sun).

Why did my transfer to a new address cost more? 

Account activation burns an extra 1 TRX on top of normal bandwidth, plus another 0.1 TRX if the sender’s bandwidth is also short.

Do failed transactions cost bandwidth? 

Yes. Bytes are broadcast and stored regardless of outcome, and you pay for what was consumed up to the failure.

For developers and operators

In what order does TRON consume bandwidth? 

Staked bandwidth first, then the free 600, then TRX burn. Your free quota is a reserve, not the first thing spent.

How do I compute the stake I need? 

TRX to stake = required bandwidth ÷ (43,200,000,000 ÷ TotalNetWeight). That divisor is about 1.61 bandwidth per staked TRX today, but it moves — always read TotalNetWeight live.

How long does it take to unstake? 

Fourteen days (getUnfreezeDelayDays), then a separate withdraw transaction.

Can a contract pay bandwidth for its users? 

Not directly — consume_user_resource_percent only splits energy between caller and deployer. To cover a user’s bandwidth, delegate bandwidth to their address.

13. Key Takeaways

  1. TRON bandwidth is byte accounting. One byte of on-chain data costs one bandwidth point.
  2. Every account gets 600 free points per 24 hours, on a rolling cycle. It was 5,000, then 1,500, then 600.
  3. Real costs, measured today: ~265 bytes for a TRX transfer, ~281 for TRC-10, ~345 for a USDT (TRC-20) transfer.
  4. The burn rate is 0.001 TRX per byte, a governance parameter that does not surge with congestion.
  5. Charging order is staked → free → burn, so your free quota survives as a reserve if you stake.
  6. Bandwidth is the cheap half of a USDT transfer — about 5% of the fee. Tron energy is the other ~95%, and that is where optimization pays.

Data Sources

  1. TRON developer documentation, “Bandwidth and Energy” — resource definitions, 600-point free quota, 43,200,000,000 daily bandwidth supply, 180,000,000,000 daily energy supply, staking and delegation mechanics.
  2. TRON developer documentation, “Paying for resources & Energy sharing” — TRX burn rates (1,000 sun per bandwidth, 100 sun per energy), charging order, fee_limit, account creation fees, dynamic energy model.
  3. TRON mainnet HTTP API wallet/getchainparameters — live parameters retrieved September 9, 2026 (block 86,084,282).
  4. TRON mainnet HTTP API wallet/getaccountresource — live staking totals (TotalNetWeight 26,870,495,970 TRX; TotalEnergyWeight 18,765,111,080 TRX), retrieved September 9, 2026.
  5. TRON mainnet HTTP API wallet/getblockbynum and wallet/gettransactioninfobyblocknum — measured bandwidth (net_usage) and energy for transactions in blocks 86,084,277–86,084,282.
  6. TRON developer documentation, “Network Parameters” — parameter IDs #3 bandwidth unit price, #11 energy unit price, #61 free bandwidth, #70 unfreeze delay.
  7. tronprotocol/tips issue #320, “Change the free net limit to 1500” — the September 2021 reduction from 5,000 to 1,500.
  8. tronprotocol/tips issue #560, “Adjust parameters of bandwidth model” — the 2023 reduction from 1,500 to 600, including low-value transaction statistics.
  9. TRON DAO Forum governance discussion of bandwidth model parameters — network volume and low-value transaction ratios cited in the 600-point proposal.
  10. TRON governance proposal #104 (August 2025) — energy unit price reduced from 210 sun to 100 sun.
  11. TRONSCAN network statistics — daily transaction count, cumulative accounts, active accounts, USDT supply on TRON.
  12. Reporting dated August 24–25, 2026 on TRON crossing 400 million cumulative accounts and hosting about $94.2 billion of USDT (roughly 51.4% of circulating supply), including the cited TRX price near $0.344.
  13. TronWeb documentation, “Energy & Bandwidth Guide” — getAccountResources response fields and resource estimation.
  14. Crypto APIs, “TRON Fees Explained” — bandwidth unit price, resource consumption order, staking minimum and freeze duration.

Verification & disclosure: Every figure in this article was verified on TRON mainnet on September 9, 2026 — live chain parameters, staking totals, and measured net_usage and energy for 1,900+ transactions across six blocks — and cross-checked against TRON’s official documentation and the governance proposals that changed them. Tronsell operates a TRON resource pool and has a commercial interest in TRON resource markets; everything factual here is reproducible with the two curl commands in Section 9.

Disclaimer: This article is for educational and informational purposes only and does not constitute financial, investment, or legal advice. Cryptocurrency transactions are irreversible and involve risk. TRON network parameters change through on-chain governance, and the figures here were accurate as of September 9, 2026 — verify current values before making decisions. Always test with a small transaction first when using a new wallet, contract, or third-party service.