Skip to main content

Parameters

This method does not take any parameters.

Response

number
The slot of the lowest confirmed block available

Code Examples

Basic Request

Using web3.js

Notes

  1. Returns the slot of the lowest confirmed block available
  2. This is useful for determining the node’s available history
  3. The value may change as the node prunes old blocks
  4. Different nodes may return different values
  5. The response is immediate as it reads from the current state

Best Practices

  1. Use this method to determine available block range
  2. Consider node pruning when querying historical blocks
  3. Cache results when appropriate to reduce RPC load
  4. Handle cases where requested blocks are not available
  5. Use in conjunction with other block methods

Common Errors

Use Cases

  1. Block Range Verification
  2. Historical Data Availability
  3. Block History Analysis