Blockchain

GetTransactionByHash

Tries to fetch a transaction (including reward transactions) given its hash.

const res = await fetch("http://127.0.0.1:8648", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
  jsonrpc: "2.0",
  method: "getTransactionByHash",
  params: ["hash"],
  id: 1
})
});
const data = await res.json();

Parameters

PropType / Default
hash
string

Returns

PropType / Default
transaction
unknown
executionResult
boolean

On this page