Get transaction from transaction hash

Returns information about transactions that occurred in a specific blockchain environment with the transaction hash value as an identification value. A transaction hash value is a unique value that can identify a transaction.

Response

NameTypeRequiredDescription
transactionObjectTrueObject representing transaction information.

transaction object

NameTypeRequiredDescription
blockHashStringTrueHash of the block.
blockNumberNumberTrueNumber(height) of the block.
fromStringTrueAddress which the transaction was sent from.
gasStringTrueInteger of the gas provided for the transaction execution.
gasPriceStringTrueFixed gas price used for calculating on blockchain environment.
hashStringTrueHash of the transaction.
inputStringTrueInteger of the transactions index position in the block.
nonceStringTrueThe number of transactions made by the sender prior to this one.
toStringTrueAddress which the transaction was sent to.
transactionIndexStringTrueInteger of the transactions index position in the block.
valueStringTrueInteger of the value sent with this transaction.
typeStringTrueIndicates the type of transaction performed on the blockchain network.
vStringTrueValues for the transaction's signature.
rStringTrueValues for the transaction's signature.
sStringTrueValues for the transaction's signature.
parsedInputObjectOptionalNull if smart contract information, which includes the transaction which created this log, is not uploaded to EQ Hub.

parsedInput object

NameTypeRequiredDescription
nameStringTrueThe name of the function pre-defined in the ABI code.
dataObjectTrueInput Array is parsed into JSON object. The object is consisted of parameters specified below.

1. Key, value pair of index and value.
2. The length of Input array passed.
3. Key, value pair of the parsed key, value from ABI code.

If the name is defined as empty in ABI code, the third parameter will not exist.
Language
Click Try It! to start a request and see the response here!