Skip to main content

Introduction

Fenines Network provides both standard Ethereum JSON-RPC endpoints and custom Fenine-specific endpoints for interacting with the blockchain and consensus layer.

RPC Namespaces

fenine_*

Fenine consensus and system contract methods

eth_*

Standard Ethereum JSON-RPC methods

Connection

Mainnet

https://rpc.fene.app

Testnet

https://testnet-rpc.fene.network

Quick Example

curl -X POST https://rpc.fene.app \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "fenine_getSigners",
    "params": ["latest"],
    "id": 1
  }'

Response Format

All RPC methods follow the JSON-RPC 2.0 specification:
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": { ... }
}
Error responses include an error object:
{
  "jsonrpc": "2.0",
  "id": 1,
  "error": {
    "code": -32600,
    "message": "Invalid request"
  }
}

Rate Limits

Public RPC endpoints are rate-limited. For production applications, consider running your own node or using a dedicated RPC provider.
TierRequests/SecondRequests/Day
Public10100,000
Premium1001,000,000

Next Steps

Fenine Methods

Explore Fenine-specific RPC methods

Ethereum Methods

Standard Ethereum JSON-RPC methods