How to check transaction result

Learn about 3 ways to check the outcome of a transaction.

In this guide, we will learn about 3 ways to check the outcome of a transaction through the transaction hash.

In this guide, you will learn about :

  • Checking the result in real time after sending the transaction
  • Checking the processed transaction result
  • Checking transaction results through EQ Field

๐Ÿ“˜

What is Hash?

This function receives data of arbitrary length and outputs a fixed-length value, a hash value. Because the hash value is derived from the input data, the same input will always have the same hash value. It can serve as an identifier to determine a specific transaction.


Checking the result in real time after sending the transaction

Transaction hashes allow you to check the outcome of a transaction in real-time. The process is as follows.

  1. Call the API to request the result of the transaction sent in real-time. For more information on the API, please refer [here]
  2. This API is implemented in the Long Polling method. For information on receiving information in real-time using the API implemented in the long polling method, refer to [here].
  3. You can check the result of the transaction through the API response.

Checking the processed transaction result

Transaction results can be verified through the transaction hash. The process is as follows.

  1. Call the API to query the processed transaction result. For more information on the API, see here.
  2. You can check the transaction result through the API response. You can check whether the requested transaction succeeded or failed through the transaction result.

Checking transaction via EQ Field

Through the EQ Field, you can check all transaction information and generated block information that occurred in a specific blockchain network, and you can also check the results of transactions that have the corresponding transaction hash by using the transaction hash.

For more information on EQ Field, refer to EQ Field.


Concluding

The result of the transaction and the transaction information were confirmed through the above process.