Blockchain

GetTransactionsByBlockNumber

Returns all the transactions (including reward transactions) for the given block number. Note that this only considers blocks in the main chain.

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

Parameters

PropType / Default
blockNumber
number

Returns

PropType / Default
returnValue
array

On this page