# 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.&#x20;
* **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&#x20;*****(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:**\
    \&#xNAN;***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:**\
    \&#xNAN;***0x0000000000000000000000000fcc221e65a34c1a478b21c6afdb1d0413b6eaec4***, this represents the wallet address of the sender (the person who sent the tokens).
  * **Topic 2:**\
    \&#xNAN;***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&#x20;*****(Sender Address)*****:**\
    \&#xNAN;***0xFCc221E65A34c1a478B21C6aFdbID0413b6EAeC4***, this is the wallet address that sent the tokens.
  * **To&#x20;*****(Receiver Address)*****:**\
    \&#xNAN;***0xF6dE38af2B76130cAeAFe8549dbC5546b428e1cf***, this is the wallet that received the tokens.
  * **Value&#x20;*****(Amount Transferred)*****:**\
    \&#xNAN;***1666666666666***, this represents the number of tokens transferred.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.blockdagnetwork.io/block-explorer/evm/tokens-list/token-detail/transfer-tab/transfer-detail-logs.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
