Blockchain Page

A Page showing a list of all transactions and blocks in a Paginated Table Component

Page Link: https://atlus.cloud/blockchain

This page shows all the blocks and the transactions in the system, both using a Paginated Table Component.

Transactions

This table lists all the transactions in the system, starting from the most recent one. The information shown about each transaction in the table columns is as follows:

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.

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.

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.

Age

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

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.

Status

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.

You can also use the search bar in the top right corner to search for a transaction by its hash.

Blocks

This table lists all the blocks added to the blockchain, starting by the most recent one. The information shown about each block in the table columns is as follows:

Column NameDescription

Round No.

This is the round number of this block, with a copy icon to copy it to the clipboard. Clicking on this redirects to the Block Details Page.

Age

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

Transaction count

This is the count of transactions found in this block.

Miner ID

This is the Provider ID of the miner which generated this block - know as a generator - with a copy icon to copy it to the clipboard. For more information about block generation process, check the Blockchain System Feature Documentation.

You can also use the search bar in the top right corner to search for a block by its round or miner id.

Last updated