system_chainType - Midnight

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

This method returns the type of chain the node is connected to. Common values are Live (a production network), Development (a local development chain), and Local (a local test instance).

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_chainType",
    "params": [],
    "id": "getblock.io"
}'

Response Example

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

Response Parameters

Field
Type
Description

result

string

Chain type: Live, Development, or Local

Use Cases

  • Detecting whether a node is connected to a public network or a local dev chain

  • Safety checks in tooling that should refuse to run against production

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?