What is a mint address?
A mint address, or token mint account, is the mint account’s public key. This canonical token identifier is similar to an EVM “contract address” despite being a misnomer. When you look up an SPL token’s mint address on a SOL block explorer like Orb, you can find the token’s metadata, including:- Total supply
- Token decimals
- Token authorities
Token Mint Address vs. Associated Token Address
Your wallet address has a single public key for receiving tokens, but every token held in your wallet is owned by an “associated token account,” or ATA, that holds each unique token’s balance. A mint address can be thought of as a “global” address for a token, whereas an Associated Token Account is the token’s local address where your wallet holds its balance.When do you need a mint address?
Needing a token’s mint address is a common occurrence for:- Trading: confirm you are trading the correct token on a DEX
- Analysis: confirm you’re looking up the correct holder, markets, and liquidity data
- Security: confirm the token’s metadata, including token authorities
- Development: RPC methods like
getTokenAccountBalancerequire a mint address - Tracking: adding a specific token to your portfolio tracker or dashboard
How to Find a Solana Token’s Mint Address with Orb
The simplest way to find a token mint address on a block explorer like Orb is to search for the token’s name or ticker symbol in the search bar.
Explore Solana tokens on Orb
Note: make sure you click the token result with the “Verified” checkmark next to its name, as there may be duplicate tokens that impersonate the same name and symbol.

Solana token mint address for Tesla xStock on Orb

Solana token mint ID in Orb’s metadata section

Solana mint address for Token 2022 tokens on Orb
How to Find the Token Address (ATA) for a Token in Your Wallet
We know how to find the token’s mint address (i.e., the global address for a token). Now, let’s find the local token account for a specific wallet (i.e., the Associated Token Account). First, get your wallet address or SNS domain name and paste it into Orb. For this example, we’ll use the god.sol domain which is a popular memecoin trader’s wallet.
Searching for a Solana domain name in Orb
- The tokens in the wallet (name and symbol)
- The balances, price, and value of each token
- Recent transactions, token mint address, and ATA
pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn

Finding the token mint address and Associated Token Account on Orb
8TeLauDKq9sEFYQ2152aRwr23BThjwm8xMPxLVzR5Cvy
With the wallet’s ATA you can:
- Debug why a particular token isn’t showing in your app
- Call RPC methods like getTokenAccountBalance for that exact account
- Diagnose stuck transfers or airdrops by checking the right ATA was created/funded
Find a Token Mint Address and ATA from a Transaction Signature
Sometimes all you have is a transaction signature — for example, from a swap or airdrop. Orb makes it easy to find the relevant mint and token accounts from any transaction explorer page.- Copy the transaction signature from your wallet or app
- Paste it into the Orb search bar and open the transaction page
- Click the “Balances” tab
- Go to the “Token Balances” section
- Find the token in the “Change” column
- Copy the token mint address in the “Token Mint” column
- Copy the ATA for the token in the owner’s wallet in the “Token Account” column

Finding the Associated Token Account and mint address from a Solana transaction page
Conclusion
Now you know how to find and verify Solana token mint addresses on the Orb blockchain explorer from a token page, find Associated Token Accounts for a token on a wallet address page, and see this information from the balance summary on a transaction explorer page. For more information, check out these additional block explorer tutorials:- How to Use Orb on Solana Devnet
- How to Use Orb as a Wallet Explorer
- How to Use Orb to Find Solana Programs