getBlockHeight RPC Method

Возвращает текущую высоту блока узла

Параметры #

object optional

Configuration object containing the following fields:

commitment string optional

minContextSlot number optional

The minimum slot that the request can be evaluated at

Результат #

  • <u64> - Текущая высота блока

Пример кода #

curl https://api.devnet.solana.com -X POST -H "Content-Type: application/json" -d '
  {
    "jsonrpc":"2.0","id":1,
    "method":"getBlockHeight"
  }
'

Результат:

Замечание #

{
  "jsonrpc": "2.0",
  "result": 1233,
  "id": 1
}