For the complete documentation index, see llms.txt. This page is also available as Markdown.

system_name - Midnight

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

This method returns the name of the node implementation (e.g. midnight-node).

Parameters

  • None

Request Example

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

Response Example

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

Response Parameters

Field
Type
Description

result

string

Node implementation name

Use Cases

  • Identifying the node software in heterogeneous infrastructure

  • Logging in multi-client setups

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid <ACCESS-TOKEN>

-32602

Invalid params

Request parameters are missing or malformed

-32601

Method not found

The method is not enabled on this node or has been deprecated

429

Too Many Requests

Rate limit exceeded for your plan

SDK Integration

Was this helpful?