Docs

Hyperliquid - High-Performance Trading Infrastructure

Complete guide to Hyperliquid integration with Dwellir. Access HyperEVM JSON-RPC endpoints and L1 gRPC streaming for order books and trading data.

HyperLiquid RPC

With Dwellir, you get access to our global HyperLiquid network which always routes your API requests to the nearest available location, ensuring low latency and the fastest speeds.

Get your API key

Why Build on Hyperliquid?

Hyperliquid is a high-performance Layer 1 blockchain purpose-built for decentralized trading, offering both EVM compatibility through HyperEVM and specialized L1 features through gRPC streaming.

Blazing Fast Performance

  • Sub-second finality - Near-instant transaction confirmations
  • 200,000 orders/second - Unprecedented throughput for DeFi
  • Predictable low fees - Stable and minimal transaction costs

Dual API Architecture

  • HyperEVM - Full EVM compatibility for Solidity smart contracts
  • L1 gRPC Streaming - Real-time order books and market data
  • Native Trading Primitives - Built-in support for spot and perpetuals

Trading-Optimized Infrastructure

  • Fully on-chain order books - No off-chain components
  • HyperBFT consensus - Optimized for trading performance
  • Real-time market data - Stream fills, trades, and order updates

Quick Start with Hyperliquid

Hyperliquid is available through Dwellir's dedicated nodes, offering both HyperEVM JSON-RPC and L1 gRPC streaming:

Installation & Setup

Network Information

ParameterValueDetails
Chain ID999Mainnet
Block Time< 1 secondSub-second finality
Gas TokenHYPENative token
ConsensusHyperBFTTrading-optimized

API Reference

HyperEVM JSON-RPC API

HyperEVM provides full Ethereum compatibility, supporting all standard JSON-RPC methods for smart contract deployment and interaction.

EVM Integration Examples

Order Book WebSocket API

Access real-time L2 and L4 orderbook data with ultra-low latency from edge servers in Singapore and Tokyo:

L1 gRPC Streaming API

Access Hyperliquid's native Layer 1 features through our specialized gRPC interface:

Available gRPC Streams

  • Order Book Snapshots - Full depth market data
  • Block Streaming - Real-time block updates
  • Trade Streams - Live trade execution data
  • Fill Streams - Order fill notifications

Quick gRPC Example

Common Integration Patterns

Algorithmic Trading

Combine HyperEVM smart contracts with L1 streaming for sophisticated trading:

JavaScript
// Deploy strategy contract via HyperEVM
const strategy = await deployContract(strategyABI, strategyBytecode);

// Stream blocks via gRPC for trading data
const blockStream = grpcClient.StreamBlocks();
blockStream.on('data', async (block) => {
  const signal = analyzeBlockData(block);
  if (signal.shouldTrade) {
    await strategy.executeTrade(signal.params);
  }
});

Market Making

Provide liquidity using real-time data:

Python
# Monitor block data via gRPC
for block in stub.StreamBlocks(timestamp):
    data = analyze_block(block)
    if data.spread > target_spread:
        # Place orders via HyperEVM
        place_limit_orders(provider, spread)

DeFi Composability

Build complex DeFi applications:

solidity
// Leverage Hyperliquid's native features
contract YieldVault {
    function harvestAndCompound() external {
        // Access perpetuals for hedging
        // Use spot for liquidity
        // Compound yields automatically
    }
}

Use Cases

Perpetuals Trading

Leverage Hyperliquid's native perpetuals with up to 40x leverage (BTC), fully on-chain order books, and sub-second execution.

Spot Trading

Access deep liquidity for spot markets with minimal slippage and predictable fees.

Market Making

Provide liquidity using HyperEVM smart contracts combined with L1 streaming for optimal spreads.

Cross-Chain Arbitrage

Build bridges and arbitrage bots leveraging Hyperliquid's speed advantage over other chains.

Agent Skill

The Hyperliquid agent skill gives AI coding agents procedural knowledge for building on Hyperliquid through Dwellir's infrastructure. It follows the open Agent Skills standard, making it portable across 40+ AI coding agents including Claude Code, Cursor, and Windsurf.

Install it with a single command:

Bash
npx skills add dwellir-public/hyperliquid-skills

Once installed, the skill automatically activates when your agent encounters Hyperliquid-related tasks. It covers HyperEVM JSON-RPC, the Info API, gRPC streaming, order book WebSocket access, and native API routing for order placement.

Resources & Support

Developer Resources

  • HyperEVM JSON-RPC - Full Ethereum-compatible RPC interface
  • L1 gRPC API Reference - Streaming API documentation
  • Proto Files - Available upon request for gRPC integration
  • Testing Tools - 16MB Go binary for stream verification

API Access

  • Dedicated Nodes - Contact support@dwellir.com for setup
  • Custom Endpoints - Isolated infrastructure for your application
  • Uncapped Throughput - No rate limits on dedicated nodes

Need Help?


Build on Hyperliquid with Dwellir's dedicated nodes - combining HyperEVM smart contracts with L1 streaming data. Request Access