getBlock
Get a specific block from a given network.
Example
const block = await getBlock({
network: "ethereum",
block: 12345678,
});
Parameters
Returns
the block for the given block number / block tag
type ReturnType = Promise<Block>;
Get a specific block from a given network.
const block = await getBlock({
network: "ethereum",
block: 12345678,
});
the block for the given block number / block tag
type ReturnType = Promise<Block>;