TRX Address Examples

Overview

See real TRX wallet address examples. A valid TRON address always starts with T and has exactly 34 alphanumeric characters in Base58Check encoding.

Real-world TRX wallet address format examples

Standard TRX Address: TNPdqto8HiuMzoG7Vv9wyyYhWzCojLeHAF is a typical 34-character Base58Check TRON address starting with T.

TRC20 USDT Address: TBia4uHnb3oSSZm5isP284cA7Np1v15Vhi shows TRC20 tokens share the same address format as TRX native addresses.

Contract Address: TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t is a TRON smart contract address using the same Base58 format as regular wallets.

TRX addresses are always 34 characters, starting with T

Every valid TRON address follows the same pattern: 34 alphanumeric characters in Base58Check encoding, beginning with capital T. This is enforced by the Base58 encoding math since 0x41 is the prefix byte, making T always the first character.

How to verify a valid TRX address in 4 checks

Step 1 – Check first character: The address must begin with capital T. Any other starting character indicates an invalid or wrong-network address.

Step 2 – Check length: Count the characters: a valid TRON address is exactly 34 characters. No more, no less.

Step 3 – Check character set: Only Base58 characters are valid: alphanumeric excluding 0 (zero), O, I, l to avoid confusion.

Step 4 – Validate checksum: Use TronWeb or an explorer to verify the embedded checksum matches the address body.

Related TRON Address Format Guides

Key Facts About TRON Wallet Address Format

A TRON wallet address in Base58Check format is always exactly 34 characters long and always begins with the capital letter T. This format uses Base58 encoding with a built-in checksum, making it case-sensitive and resistant to typos. The Hex format equivalent starts with 41 and is 42 characters long. TRC20 tokens including USDT on the TRON network use the exact same address format as native TRX, so one wallet address can hold both TRX and any TRC20 token simultaneously.

When validating a TRON address, first confirm it starts with T and contains exactly 34 characters. Use tronWeb.isAddress() for programmatic validation or check on tronscan.org. Never send TRX or TRC20 tokens to an ERC20 address (starting with 0x) as these transactions cannot be reversed on the TRON blockchain.