CenturionDEX
Launch App

What is a token contract address?

Last modified:

A token contract address is the blockchain address of the smart contract that implements a token. It is the unique identifier that distinguishes one token from every other token on the same chain.

How it differs from a wallet address

Both are hexadecimal strings on EVM-compatible chains, but they point to fundamentally different things:

Address typePoints toExample purpose
Wallet addressA user's accountSending and receiving funds
Token contract addressA smart contractDefining a token's supply, balances, and transfer logic

For example, the USDC token on Ethereum has the contract address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48. Any wallet or protocol that interacts with USDC references this address.

Why it matters