Resource Model

The three system resources — Bandwidth, Energy, and TRON Power — that govern every operation on TRON.

Bandwidth, Energy, and TRON Power (TP, also called Voting Right) are TRON's three system resources, together forming the metering system that governs every interaction with the network:

  • Bandwidth — covers the byte size of transactions stored on-chain; larger transactions consume more.
  • Energy — covers the computation the TVM performs when executing a smart contract; every contract call consumes some.
  • TRON Power — determines an account's influence in Super Representative elections.
📘

Prerequisites


The three resources

ResourcePurposeDaily network supplyHow to obtain
TRON Power (TP)Vote for Super Representativesn/a (1 TRX → 1 TP)Stake TRX
BandwidthPay for transaction size (byte cost)43,200,000,000 BandwidthFree 600/day + stake TRX
EnergyPay for smart contract execution180,000,000,000 EnergyStake TRX (no free quota)

When stake and the free quota cannot cover an operation's Bandwidth or Energy cost, the network falls back to burning TRX from the sender's balance at fixed rates. The transaction goes through as long as the sender holds enough TRX. See Paying for resources & Energy sharing for the canonical burn rates and the deployer Energy sharing mechanism that lets DApps absorb costs for their users.


TRON Power (Voting Right)

Before any account can vote for Super Representatives, it needs to obtain voting rights — that is, TRON Power. TP is obtained by staking TRX: staking 1 TRX grants 1 TP. For details on staking lifecycle, see Staking on the TRON network.

An account can stake multiple times, and TP from each operation accumulates. Query an account's total and used TP through wallet/getaccountresource.


Bandwidth and Energy

Every transaction except queries consumes Bandwidth — its cost equals the transaction's byte count on-chain. Each external account receives a free 600 Bandwidth daily quota; staking TRX earns more from the fixed daily network supply.

Smart contract calls additionally consume Energy. Each TVM instruction has a fixed Energy cost, and a call's total Energy is the sum of those costs. Energy has no free quota — accounts must either stake (or receive delegated) TRX to obtain it, or rely on the TRX-burn fallback.

For the full mechanics — daily supply formulas, staking workflow, delegation, and recovery cycle — see Bandwidth and Energy.


APIs

APIDescription
wallet/getaccountresourceQuery Bandwidth, Energy, and TRON Power for an account
wallet/freezebalancev2Stake TRX for Bandwidth or Energy
wallet/unfreezebalancev2Begin unstaking
wallet/withdrawexpireunfreezeWithdraw TRX after the 14-day waiting period

Related resources