🚀
accelerate labs
  • Introduction
  • GraphQL API
    • Quick Start
    • API Reference
    • Rate Limits
    • GraphQL Explorer
  • HyperEVM RPC
    • Free Public Endpoint
  • Custom RPC Services
Powered by GitBook
On this page
  • Usage Examples
  • Terms of Service

Was this helpful?

  1. HyperEVM RPC

Free Public Endpoint

Our Hyperliquid RPC service provides developers with reliable access to the HyperEVM and supports all standard Ethereum JSON-RPC methods. We provide a public RPC endpoint that is free to use with a rate limit of 10 requests per second:

https://rpc.acc8.dev/evm

Usage Examples

Example using Foundry Cast

# Get the latest block number
cast block-number --rpc-url https://rpc.acc8.dev/evm

# Get an account balance
cast balance <ADDRESS> --rpc-url https://rpc.acc8.dev/evm

# Call a contract function
cast call <CONTRACT_ADDRESS> "functionName()" --rpc-url https://rpc.acc8.dev/evm

Example using ethers.js

const { ethers } = require('ethers');

// Connect to Hyperliquid network
const provider = new ethers.providers.JsonRpcProvider('https://rpc.acc8.dev/evm');

// Now you can use this provider to interact with the network
async function getLatestBlock() {
  const blockNumber = await provider.getBlockNumber();
  console.log(`Latest block number: ${blockNumber}`);
}

getLatestBlock();

Terms of Service

Use of our RPC service implies agreement with our Terms of Service. Abusive usage will result in IP banning. We reserve the right to modify rate limits and service availability without prior notice.

PreviousGraphQL ExplorerNextCustom RPC Services

Last updated 28 days ago

Was this helpful?