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
Issuer
Tether
Standard
TRC20
Network
Tron
Freeze mechanism
addBlackList(address _evilUser)removeBlackList(address _clearedUser)destroyBlackFunds(address _blackListedUser)getBlackListStatus(address _maker) → boolCheck it yourself
- Open the contract address on Tronscan (link above).
- Go to the "Contract" tab, then "Read Contract".
- Find the read function listed above.
- Paste the wallet address (base58, starting with T) and run the query.
- `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 falseOr 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
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.