GoChain RPC Proxy

This is an RPC endpoint for GoChain. It provides access to a limited subset of services. Rate limits apply.

Rate Limit

The rate limit is 10000 requests per minute. If you exceed this limit, you will receive a 429 response:

{
  "jsonrpc": "2.0",
  "id": "ID",
  "error": {
    "code": -32000,
    "message": "You hit the request limit"
  }
}

Allowed Methods

Only the following listed methods are allowed. Click for an example. If you attempt to call any other methods, you will receive a 401 response:

{
  "jsonrpc": "2.0",
  "id": "ID",
  "error": {
    "code": -32601,
    "message": "You are not authorized to make this request: method_name"
  }
}