v1

latestOpenAPI 3.0.02026-07-2471143147.5 KB
Authentication

Get nonce state

Returns the current nonce anchor and next free bitmap index for an account. Used by bots to resume nonce state after restart.

get/v1/nonce-state/{account}

Path parameters

accountstring required

Account address in hex format (0x...)

Response

A successful response.

nonce_anchorstring uint64

Current nonce anchor epoch

current_bitmap_indexinteger

Current bitmap index (0-207), or 208 if anchor is full

bitmapstring

Full nonce bitmap as 0x-prefixed hex (uint256). bit=1 consumed, bit=0 available.

Example response

{
  "nonce_anchor": "0",
  "bitmap": "0x7"
}