BlockDAG Docs
  • 🎯Introduction to BlockDAG
  • ⭐GETTING STARTED
    • What is BDAG?
    • Introductory Concepts
      • Decentralized Application (dApps)
      • Accounts
        • EVM Account
        • UTXO Account
      • Transactions
      • Blocks
      • EVM
        • Opcodes
      • Gas Fees
    • Nodes and Mining
      • Testnet Node Setup
    • BlockDAG Architecture
      • Architecture Overview
      • Core Modules and Components
      • Development and Implementation
      • Blockchain Features
      • Consensus Algorithm
  • TEST/MAIN NETWORKS
    • Testnet Alpha
    • Testnet Beta 1: Primordial
      • Network Details
  • BlockDAG Tools
    • Block Explorer
    • Faucet
    • Smart Contract IDE
      • IDE Layout
      • How to create and deploy
    • Contracts Wizard
  • BlockDAG Client APIs
    • EVM RPC
    • WebSocket
  • BlockDAG dApps
    • Create dApps
    • dApps Overview
    • Reflection User Guide
      • Home
      • Reflection Dashboard
      • Reflection
    • Lottery User Guide
      • Lottery Dashboard
      • Lottery
      • Participants
  • Block Explorer
    • EVM
      • Home
      • Block List
        • Block Detail
      • Transaction List
        • Transaction Detail
      • Address Details
      • Contract Listing
        • Contract Details
          • Transfer Tab
          • Holders Tab
          • Events Tab
          • Info Tab
          • Contract Tab
            • Code Tab
            • Read Tab
            • Write Tab
        • Contract Owner
        • Contract Verification
        • Contract Transaction Details
      • Tokens List
        • Token Detail
          • Transfer Tab
            • Transfer Detail Tab (Overview)
            • Transfer Detail (Logs)
          • Holders Tab
            • Holders Detail
          • Events Tab
          • Info Tab
          • Contracts Tab
        • Token Transfer
      • Node Visualizer
      • Faucet
    • UTXO
      • UTXO Home
      • Block List (UTXO)
        • Block Details (UTXO)
      • Transaction List (UTXO)
        • Transaction Details (UTXO)
      • Address Details (UTXO)
Powered by GitBook

Copyright © BlockDAG

On this page

Was this helpful?

Edit on GitHub
  1. Block Explorer
  2. EVM
  3. Tokens List
  4. Token Detail
  5. Transfer Tab

Transfer Detail (Logs)

The logs provide event data related to the transaction, helping users understand what happened inside the smart contract when the transaction was processed.

  • Transaction Hash The "Transaction Hash" is displayed as "0xea2000a6b7f12b76501e7f6c101bf0c97f710589ab09ac1bf812e40cdf33ecd8". This unique identifier allows users to track and verify the transaction. If needed, users can copy the hash using the "Copy" button to check it in other blockchain tools.

  • Logs Overview The Logs section records what happened during the execution of the transaction.

  • Raw Data The Raw section shows the hexadecimal data related to the event. This data is mostly used by developers for debugging and verifying smart contract execution. 0x000000000f6dE38af2B76130cAeAFe8549dbC5546b428e1cf0000000000000000000000000000000000000000000000000000000000000184. This represents encoded transaction details, including the sender, receiver, amount, and other parameters.

  • Method Name The "Method Name" for this transaction is Transfer. This confirms that tokens were successfully moved from one wallet to another.

  • Topics (Indexed Data) In blockchain logs, topics help categorize events. They are indexed so that blockchain explorers can quickly search for specific actions, like token transfers or approvals.

    • Topic 0: 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, this is a predefined signature for a Transfer event in ERC-20 tokens. It means the event follows the standard token transfer format.

    • Topic 1: 0x0000000000000000000000000fcc221e65a34c1a478b21c6afdb1d0413b6eaec4, this represents the wallet address of the sender (the person who sent the tokens).

    • Topic 2: 0x0000000000000000000000000f6dE38af2B76130cAeAFe8549dbC5546b428e1cf, this represents the wallet address of the recipient (the person who received the tokens).

  • Decoded Transfer Details Below the topics, the transaction details are further decoded into human-readable format:

    • From (Sender Address): 0xFCc221E65A34c1a478B21C6aFdbID0413b6EAeC4, this is the wallet address that sent the tokens.

    • To (Receiver Address): 0xF6dE38af2B76130cAeAFe8549dbC5546b428e1cf, this is the wallet that received the tokens.

    • Value (Amount Transferred): 1666666666666, this represents the number of tokens transferred.

PreviousTransfer Detail Tab (Overview)NextHolders Tab

Last updated 2 months ago

Was this helpful?