Transaction Details Page

A page viewing the details of a transaction

You can access this page by one of the following:

  • Clicking on the Transaction Hash wherever it's presented, for example, in the Transactions table of the Blockchain page.

  • Using this url format: https://atlus.cloud/transaction-details/<txn_hash>

Transaction Overview

This part of the page shows the details of the transaction. It shows the same information show in the table of Transactions in the Blockchain page in Atlus.

Column NameDescription

Hash

This is the hash of the transaction, which represents an identifier for the transactions based on its content, with a copy icon that copies it to the clipboard. Clicking on that opens the Transaction Details Page of this transactions.

Status

Shown in the upper-right part of this view, this is the status of the transaction. It's either Success if the transaction is executed successfully or Failure if the transaction has an error, you can check the error, if found, in the Transaction Details Page.

Block

This is the hash of the block within which this transaction lies, with a copy icon to copy it to the clipboard. Clicking this opens the Block Details Page of the block represented by this hash.

Created At

This is the creation timestamp (date and time) of this transaction.

Type

This is the type of the transaction, which defines its function in the smart contracts. Find all the available types of transactions in the Smart Contract documentation.

From

This is the id of the sender/issuer of the transaction, with a copy icon to copy it to the clipboard. It can be a provider, a smart contract or a client's wallet, so clicking on that will open the details page of whatever the issuer is.

To

This is the id of the recipient of the transaction, with a copy icon to copy it to the clipboard. It can be a provider, a smart contract or a client's wallet, so clicking on that will open the details page of whatever the recipient is.

Value (ZCN)

The value is an attribute associated with the transactions to be used by the smart contract while processing the transaction. It's optional and depends on the function or the type of the transaction. You'll find this referred to in the documentation of the smart contract functions.

Txn Fee (ZCN)

This is the ZCN amount deducted as fee from the transaction issuer's wallet, as a cost for the computational power used to process the transaction. It also varies for different transaction types.

Transaction Details (JSON format)

This tab of the details viewer shows the JSON format of the details of this transaction. More information about the transactions data can be found in the Transaction Entity page.

How to find the error in a "failed" transaction

When a transaction fails, you can check its error in the JSON-formated details of the transactions. The error should be the value of the property named: transaction_output like in the image below

Last updated