All contracts
Tron
TRC20

USDT (TRC20) Contract on Tron — Address, Freeze Functions & Stats

Issued by Tether. Verified against the actually deployed contract, not just the newest-looking source.

Contract address

TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t

Issuer

Tether

Standard

TRC20

Network

Tron

View on official block explorer

Freeze mechanism

FreezeaddBlackList(address _evilUser)
UnfreezeremoveBlackList(address _clearedUser)
Burn frozen fundsdestroyBlackFunds(address _blackListedUser)
Read statusgetBlackListStatus(address _maker) → bool
EventsAddedBlackList, RemovedBlackList, DestroyedBlackFunds

Check it yourself

  1. Open the contract address on Tronscan (link above).
  2. Go to the "Contract" tab, then "Read Contract".
  3. Find the read function listed above.
  4. Paste the wallet address (base58, starting with T) and run the query.
  5. `true` means that address is currently frozen or blacklisted.

That only tells you the current status. It doesn't tell you where the funds came from, whether the counterparties are compromised, or how likely a future freeze is. That is the gap FreezeRadar's wallet scan fills.

Read it programmatically

Node.js (TronWeb)

const { TronWeb } = require("tronweb");
const tronWeb = new TronWeb({ fullHost: "https://api.trongrid.io" });

const contract = await tronWeb.contract().at("TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t");
const isFlagged = await contract.getBlackListStatus("TWalletAddressToCheck").call();
console.log(isFlagged); // true or false

Or use our API to cover every supported chain with one call instead of one integration per chain.

Live USDT freeze stats on Tron

Freeze events recorded

1,702

Value frozen

$1,208,352,598

Wallets affected

1,699

Last recorded event: Aug 23, 2026 UTC.

Recent USDT events on Tron

See every freezeable contractScreen a USDT wallet before you sendRun a wallet scan

FAQ

What is the official USDT contract address on Tron?

TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t. Always confirm this against Tether's own transparency page before trusting it — that link is on this page.

How can I tell if a USDT address is frozen or blacklisted?

Read getBlackListStatus(address _maker) → bool directly from the contract, or use FreezeRadar's scan, which also checks sanctions exposure and counterparty risk that a direct contract read can't show.

Has USDT on Tron actually been used to freeze wallets?

Yes. FreezeRadar has recorded 1,702 freeze events for this contract, most recently on Aug 23, 2026.

USDT (TRC20) Contract on Tron — Address, Freeze Functions & Stats | FreezeRadar