system_accountNextIndex - Midnight

Example code for the system_accountNextIndex JSON-RPC method. Complete guide on how to use system_accountNextIndex JSON-RPC in GetBlock Web3 documentation.

This method is an alias for account_nextIndex. It returns the next nonce for an account in the same format and is provided for compatibility with older Substrate clients.

Parameters

Parameter
Type
Required
Description

address

string

Yes

SS58-encoded account address

Request Example

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "system_accountNextIndex",
    "params": [
        "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"
    ],
    "id": "getblock.io"
}'

Response Example

{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": 42
}

Response Parameters

Field
Type
Description

result

integer

The next nonce (account index) for this account

Use Cases

  • Compatibility with tools that call system_accountNextIndex rather than account_nextIndex

  • Identical to account_nextIndex — use either

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid <ACCESS-TOKEN>

-32602

Invalid params

Request parameters are missing or malformed

429

Too Many Requests

Rate limit exceeded for your plan

SDK Integration

Last updated

Was this helpful?