Pick a section on the left, search above, or jump to a popular page or recipe below. New here? Start with the getting started guide or try a runnable recipe.
Most popular
9
Runnable, step-by-step recipes for the most frequent TRON developer tasks. Click any card to see the full walkthrough with code, highlighted line-by-line.
💸
JS
Send Your First Transaction
Send TRX between accounts using TronWeb. Build, sign, and broadcast in one flow.
await tronWeb.trx
.sendRawTransaction(
signedTx
)
.sendRawTransaction(
signedTx
)
🔒
JS
Stake and Delegate Resources
Stake TRX for Bandwidth or Energy under Stake 2.0; delegate to another account.
tronWeb.transactionBuilder
.freezeBalanceV2(
amount, "ENERGY"
)
.freezeBalanceV2(
amount, "ENERGY"
)
📡
HTTP
API Signature and Broadcast Flow
Build, sign, and broadcast a transaction over raw HTTP — no SDK needed.
POST /wallet/createtransaction
POST /wallet/broadcasttransaction
POST /wallet/broadcasttransaction
✍️
JS
Offline Sign the Transaction
Build online, sign air-gapped, broadcast online. Keep the private key offline.
offlineTron.trx
.sign(tx, PRIV_KEY)
.sign(tx, PRIV_KEY)
🔍
JS
Query TRX Balance and Resources
Read an account's TRX balance, Bandwidth, and Energy from the network.
await tronWeb.trx
.getAccountResources(
targetAddress
)
.getAccountResources(
targetAddress
)
🗳️
JS
Vote for Super Representatives
Cast votes for SRs using your TRON Power, and claim accumulated rewards.
tronWeb.transactionBuilder
.vote(
{ 'TSrAddr...': 100 }
)
.vote(
{ 'TSrAddr...': 100 }
)
Recently updated
7
→
Super Representatives
/docs/super-representatives
recent
→
→
Advanced SR configuration
/docs/advanced-configuration-for-super-representative
recent
→
→
Offline transactions with Trident & TronWeb
/docs/create-offline-transactions-with-trident-and-tronweb
recent
→
→
Mainnet database snapshots
/docs/main-net-database-snapshots
1 week ago
→
→
Exchange / wallet integration
/docs/exchangewallet-integrate-with-the-tron-network
1 week ago
→
→
TRON community support
/docs/online-technical-support
2 weeks ago
→
→
Event subscription
/docs/event-subscription
2 weeks ago
→
Copyright © 2017-2026 TRON Network Limited. | All rights reserved.