post https://arb-mainnet.unifra.io/v1/
Arbitrum API - Returns the currently configured chain ID, a value used in replay-protected transaction signing as introduced by EIP-155.
Parameters
none
Returns
QUANTITY - Integer of the current chain ID.
Example
Request
curl https://arb-mainnet.unifra.io/v1/your-api-key \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":83}'
URL: https://arb-mainnet.unifra.io/v1/your-api-key
RequestType: POST
Body:
{
"jsonrpc":"2.0",
"method":"eth_chainId",
"params":[],
"id":83
}
Result
{
"id": 83,
"jsonrpc": "2.0",
"result": "0x3d" // 61
}