BUSD (ERC20) Contract on Ethereum — Address, Freeze Functions & Stats
Issued by Paxos Trust Company. Verified against the actually deployed contract, not just the newest-looking source.
Contract address
Issuer
Paxos Trust Company
Standard
ERC20
Network
Ethereum
Freeze mechanism
freeze(address _addr)unfreeze(address _addr)wipeFrozenAddress(address _addr)isFrozen(address _addr) → boolCheck it yourself
- Open the contract address on the chain’s official block explorer (link above).
- Go to the "Contract" tab, then "Read Contract" (or "Read as Proxy" if the explorer shows one).
- Find the read function listed above.
- Paste the wallet address you want to check and click "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 (ethers v6)
import { ethers } from "ethers";
const provider = new ethers.JsonRpcProvider("https://your-rpc-url");
const abi = ["function isFrozen(address) view returns (bool)"];
const contract = new ethers.Contract(
"0x4Fabb145d64652a948d72533023f6E7A623C7C53",
abi,
provider
);
const isFlagged = await contract.isFrozen("0xWalletAddressToCheck");
console.log(isFlagged); // true or falseOr use our API to cover every supported chain with one call instead of one integration per EVM chain.
Live BUSD freeze stats on Ethereum
Freeze events recorded
0
Value frozen
$0
Wallets affected
0
No freeze event recorded for this contract yet.
FAQ
What is the official BUSD contract address on Ethereum?
0x4Fabb145d64652a948d72533023f6E7A623C7C53. Always confirm this against Paxos Trust Company's own transparency page before trusting it — that link is on this page.
How can I tell if a BUSD address is frozen or blacklisted?
Read isFrozen(address _addr) → 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 BUSD on Ethereum actually been used to freeze wallets?
FreezeRadar has not recorded a freeze event for this specific contract yet.