Skip to content

Latest commit

 

History

History
63 lines (47 loc) · 1.34 KB

eth_chainid.md

File metadata and controls

63 lines (47 loc) · 1.34 KB
description
Returns the currently configured chain ID, a value used in replay-protected transaction signing as introduced by EIP-155.

eth_chainId

The chain ID returned should always correspond to the information in the current known head block. This ensures that caller of this RPC method can always use the retrieved information to sign transactions built on top of the head.

If the current known head block does not specify a chain ID, the client should treat any calls to eth_chainId as though the method were not supported, and return a suitable error.

You should prefer eth_chainId over net_version, so that you can reliably identify the chain you are communicating with.

Parameters

None.

Returns

QUANTITY - integer of the current chain ID.

Example

Request

{% tabs %} {% tab title="Curl" %}

curl https://eth-mainnet.alchemyapi.io/v2/your-api-key \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":83}'

{% endtab %}

{% tab title="Postman" %}

URL: https://eth-mainnet.alchemyapi.io/v2/your-api-key
RequestType: POST
Body: 
{
    "jsonrpc":"2.0",
    "method":"eth_chainId",
    "params":[],
    "id":83
}

{% endtab %} {% endtabs %}

Result

{
  "id": 83,
  "jsonrpc": "2.0",
  "result": "0x3d" // 61
}