All contracts
Avalanche
ERC20

USDT (ERC20) Contract on Avalanche — Address, Freeze Functions & Stats

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

Contract address

0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7

Issuer

Tether

Standard

ERC20

Network

Avalanche

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 the chain’s official block explorer (link above).
  2. Go to the "Contract" tab, then "Read Contract" (or "Read as Proxy" if the explorer shows one).
  3. Find the read function listed above.
  4. Paste the wallet address you want to check and click "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 (ethers v6)

import { ethers } from "ethers";

const provider = new ethers.JsonRpcProvider("https://your-rpc-url");
const abi = ["function getBlackListStatus(address) view returns (bool)"];
const contract = new ethers.Contract(
  "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7",
  abi,
  provider
);

const isFlagged = await contract.getBlackListStatus("0xWalletAddressToCheck");
console.log(isFlagged); // true or false

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

Live USDT freeze stats on Avalanche

Freeze events recorded

0

Value frozen

$0

Wallets affected

0

No freeze event recorded for this contract yet.

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

FAQ

What is the official USDT contract address on Avalanche?

0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7. 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 Avalanche actually been used to freeze wallets?

FreezeRadar has not recorded a freeze event for this specific contract yet.

USDT (ERC20) Contract on Avalanche — Address, Freeze Functions & Stats | FreezeRadar