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.

Last updated

Was this helpful?