Skip to main content

Exploring the Token Page

Updated over a week ago

The token page on Routescan offers a comprehensive overview of any token, from its reputation and market data to transaction history and smart contract details, making it an essential tool for users to analyze and interact with tokens across supported blockchains.

Token Name and Reputation Checkmark

The token page on Routescan begins with the token title in the format "Token › [Token Name]: [Symbol]" followed by a checkmark symbol. This checkmark indicates the token's reputation level, as defined in Routescan's Token Reputation Levels system, helping users quickly assess its credibility based on available data.

Token Name and Reputation Checkmark on Routescan

Quick Dropdown menus

To the right of the token title and checkmark, a dropdown editorial menu offers a curated list of links related to the token, including social media profiles, official websites, and other external resources, enabling users to access additional information and community engagement channels.

Token editorial metadata on Routescan

Located to the right of the Editorial dropdown menu, the Helpful dropdown menu provides the following options:

  • Add Token to Metamask (Web3): Allows users to add the token to their Metamask wallet directly from the page.

  • Refresh Metadata: Re-analyzes the token's address to refresh details such as its name, symbol, decimals, and other metadata.

  • Submit name tag: Enables users to send a request form to the Routescan team to propose editorial changes, such as adding a title or links, for tokens lacking such information.

  • Report Abuse: Provides an option for users to report any suspicious or inappropriate activity related to the token.

Information Banner

Below the token title, checkmark, and dropdown menus, an information banner may appear, providing context-specific details such as general hints or alerts based on the token's situation. Users have the option to close the banner if they no longer wish to view it.

Information Banner on Token Page on Routescan

Informational Blocks

Below the information banner, three informational blocks provide key details about the token:

  • Overview: Displays essential metrics, including Total Supply (the total number of tokens in existence) and Holders (the number of unique addresses holding the token).

  • Market: Shows market-related data, such as Price (the current trading price of the token) and On-Chain Market Cap (the market capitalization calculated using on-chain data, with a tooltip explaining it is determined by multiplying the token's Circulating Supply on Ethereum with the current market price per token).

  • Other Info: Includes technical details like Blockchain (the chain the token operates on) and Token Contract address (featuring the token's decimals and a clickable address link leading to detailed Token Contract Address information).

Token Total Supply, Holders, Price, Market Cap, Blockchain and Token Contract

Transfers Tab

The Transfers tab provides a detailed log of recent token transfer transactions, allowing users to track movement between addresses in real-time. As users scroll down, they can access an option to Export CSV file containing the displayed page's transfers for further analysis. Additionally, a one-click button next to the Export CSV option enables users to Copy API request for this page data, facilitating programmatic access to the same transfer information.

  • Txn Hash: Unique transaction identifier.

  • Method: Type of transaction or action performed.

  • From: Originating address of the transfer.

  • To: Destination address of the transfer.

  • Quantity: Amount of tokens transferred.

  • Age: Time elapsed since the transaction occurred.

Token Transfers on Routescan
Token Transfers Export CSV and one click Copy API endpoint

Holders Tab

The Holders tab displays a ranked list of token holders, providing insights into the distribution of token ownership across addresses, with an option to view a pie graph for a visual representation of the data. Users can also Export CSV of the data or Copy API request for programmatic access at the bottom of the page.

  • Rank: Position of the holder based on token quantity.

  • Address: Wallet address holding the tokens.

  • Quantity: Number of tokens held by the address.

  • Percentage: Share of total token supply held by the address.

  • Value: Monetary value of the tokens held, based on current market price.

Token Holders list on Routescan

Trading Pairs Tab

The Trading Pairs tab lists the token's available trading pairs on decentralized exchanges (DEXs), offering insights into its market activity and liquidity. Users can Copy API request for this data in a single click at the bottom of the page.

  • Token: The paired token in the trading pair.

  • Liquidity Pair: The specific token pair available for trading.

  • Price: Current trading price of the token in the pair.

  • Volume (24h): Trading volume for the pair over the last 24 hours.

  • Liquidity: Total liquidity available for the trading pair.

  • DEX: The decentralized exchange hosting the trading pair.

Token Trading Pairs on Routescan

DEX Trades Tab

The DEX Trades tab provides a record of recent buy and sell transactions for the token on decentralized exchanges (DEXs), detailing trade specifics and market activity. Users can Copy API request for this data in a single click at the bottom of the page.

  • Txn Hash: Unique identifier for the transaction.

  • Action: Indicates whether the transaction is a Buy or Sell.

  • Token Amount (Out): Amount of tokens sent out in the trade.

  • Token Amount (In): Amount of tokens received in the trade.

  • Swapped Rate: Exchange rate at which the trade occurred.

  • Txn Value ($): Total value of the trade in USD at the time of the transaction.

  • Age: Time elapsed since the transaction was executed.

  • DEX: The decentralized exchange where the trade took place.

Token DEX Trades on Routescan

Contract Tab

The Contract tab provides detailed information about the token's smart contract, accessible through three sub-tabs: Code, Read Contract, and Write Contract. A green tick icon next to the Contract tab title indicates that the contract is verified; if the green tick is absent, the contract is not verified.

Code Sub-Tab

The Code sub-tab displays the contract's verified status and associated details in a structured format, along with several data windows.

  • Contract Source Code Verified Status: Indicates whether the contract's source code has been verified, showing either Partial Match or Full Match if verified.

  • Creation Timestamp: Displays the date and time when the contract was created.

  • Contract Details:

    • Contract Name: Name of the token contract.

    • Compiler Version: Version of the compiler used to compile the contract.

    • Optimization Enabled: Indicates whether code optimization was enabled during compilation.

    • Other Settings: Additional compiler settings, such as the default EVM version.

  • Code Window: Shows the full source code of the contract.

  • Contract Security Audit: Provides results or details of any security audits performed on the contract.

    Note that not all security audits may be listed, and users should independently verify audit information. Routescan does not take responsibility for the completeness or accuracy of the audit details provided.

  • Contract ABI Window: Displays the Application Binary Interface (ABI) of the contract, used for interacting with the contract programmatically.

  • Contract Creation Code Window: Shows the bytecode used to deploy the contract.

  • Constructor Arguments Window: Lists the ABI-encoded constructor arguments, extracted as the last bytes of the Contract Creation Code, used during contract deployment.

Token Contract tab on Routescan
Token Contract ABI, Security Audit, Creation Code and Constructor Arguments on Routescan

Read Contract Sub-Tab

The Read Contract sub-tab allows users to interact with the token's smart contract by querying its public functions and retrieving data directly from the blockchain without executing transactions.

  • Function List: Displays a list of the contract's public read-only functions, such as retrieving the total supply, balance of an address, or token decimals.

  • Input Fields: Provides fields for users to input parameters required by the functions (e.g., an address to check its balance).

  • Query Results: Shows the output of the queried function, providing real-time data from the contract, such as the current token balance or allowance for a specific address.

Token Read Contract functions on Routescan

Write Contract Sub-Tab

ℹ️ Important Note: Executing write contract functions is a sensitive operation that can have significant consequences on the blockchain and user's address. Users should proceed with caution and only perform these actions if they fully understand the implications and functionality of the contract.

The Write Contract sub-tab enables users to interact with the token's smart contract by executing its write functions, allowing actions that modify the blockchain state, such as transferring tokens or approving allowances.

  • Function List: Displays a list of the contract's public write functions, such as transfer, approve, or other state-changing operations.

  • Input Fields: Provides fields for users to input required parameters, like the recipient address and amount for a transfer.

  • Transaction Execution: Allows users to connect a wallet and submit a transaction to the blockchain, executing the selected function and altering the contract's state, such as transferring tokens or setting allowances.

Token Write Contract functions on Routescan

Info Tab

The Info tab offers a deeper look into the token by presenting additional context and details that vary based on the token's specifics. It includes a token overview with a brief description of the token's purpose or idea, community notes highlighting relevant updates or insights from the community, and details on burn events, such as dates and amounts burned, if applicable. This tab serves as a place for users to find key information that enhances their understanding of the token's background and activity.

Token Info tab on Routescan

Whether you're tracking token transfers, analyzing holder distribution, or interacting with smart contracts, the Routescan token page provides the insights and tools needed to navigate the blockchain ecosystem effectively—dive in and explore with confidence!

Did this answer your question?