Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

hyperliquidhyperliquid 搜索

Agent Skill

hyperliquid 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,141

周安装

49

GitHub Stars

3

下载量

558
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:hyperliquid(hyperliquid 搜索)
来源仓库:https://github.com/dwellir-public/hyperliquid-skills
仓库路径:skills/hyperliquid
安装命令:
npx skills add https://github.com/dwellir-public/hyperliquid-skills --skill hyperliquid
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dwellir-public/hyperliquid-skills --skill hyperliquid

简介

hyperliquid 提供 Hyperliquid 区块链基础设施访问能力。

  • 适用于高频交易、订单簿监控等需要低延迟数据的场景。
  • 包含 gRPC 网关、实时订单书服务器与 Info API 代理。
  • 使用前需申请 API 密钥并了解新加坡/东京边缘节点位置。
  • 建议区分测试网与主网环境,避免误操作造成资产损失。

SKILL.md

Hyperliquid via Dwellir

Hyperliquid is a purpose-built L1 blockchain optimized for trading. Dwellir runs its own Hyperliquid nodes and offers infrastructure beyond standard RPC: a custom gRPC gateway for Hypercore data, a real-time order book server, and a filtering Info API proxy, with edge servers in Singapore and Tokyo.

How Hyperliquid Works

Hyperliquid has two layers:

HyperCore is the native trading layer. Fully on-chain perpetual futures and spot order books. Every order, cancellation, trade, and liquidation settles within one block. Handles ~200,000 orders/second with sub-second finality via HyperBFT consensus.

HyperEVM is a general-purpose EVM smart contract layer that runs alongside HyperCore. Developers can deploy Solidity contracts that interact with HyperCore's liquidity. Chain ID: 999. Native gas token: HYPE.

Key properties:

  • All order books are fully on-chain (no off-chain matching)
  • Sub-second block times with one-block finality
  • Perpetuals support up to 40x leverage (BTC); most assets 3-10x
  • Native spot trading with HIP-3 DEX deployment

What Dwellir Provides

Dwellir runs full Hyperliquid infrastructure: the official HL node, plus custom software built by Dwellir and the community for serving specific data channels.

For current pricing, features, and service details, see Dwellir Hyperliquid docs and Pricing.

EndpointWhat It ServesProtocolReference
HyperEVM JSON-RPCEVM state, smart contracts, blocksHTTPS + WSShyperevm-json-rpc.md
Info API proxyMarket data, user state, metadataHTTPS (POST)info-api.md
L1 gRPC GatewayHypercore block/fill/orderbook streaminggRPCgrpc-gateway.md
Orderbook WebSocketReal-time L2/L4 order book dataWSS onlyorderbook-websocket.md
Dedicated NodeFull stack, uncapped throughputAllSee below

Dwellir CLI

The Dwellir CLI (dwellir) provides terminal access to endpoint discovery, API key management, usage monitoring, and documentation. Useful for quickly finding Hyperliquid endpoint URLs, reading docs without leaving the terminal, and managing keys in CI pipelines. See dwellir-cli.md.

# Install
curl -fsSL https://raw.githubusercontent.com/dwellir-public/cli/main/scripts/install.sh | sh

# Find all Hyperliquid endpoints
dwellir endpoints search hyperliquid

# Read Hyperliquid docs as markdown
dwellir docs search hyperliquid
dwellir docs get hyperliquid/info-endpoint

# Manage API keys and check usage
dwellir keys list
dwellir usage summary

What Dwellir Does NOT Proxy

Exchange API: Order placement, cancellation, transfers, and other write operations require EIP-712 signatures and go directly to api.hyperliquid.xyz/exchange. See native-api.md.

Native WebSocket: Hyperliquid's subscription WebSocket (wss://api.hyperliquid.xyz/ws) for user events, trades, and candles is separate from Dwellir's Orderbook WebSocket. See native-api.md.

Read vs Write Architecture

┌─────────────────────────────────────────────────────────┐
│  Your Application                                        │
├──────────────────┬──────────────────────────────────────┤
│  READ (Dwellir)  │  WRITE (Hyperliquid native)          │
│                  │                                       │
│  EVM state ──────┤  Place orders ─── api.hyperliquid.xyz │
│  Info queries ───┤  Cancel orders    /exchange           │
│  gRPC streams ───┤  Transfers        (requires sig)      │
│  Order book ─────┤  Set leverage                         │
└──────────────────┴──────────────────────────────────────┘

When to Use Which Reference

You want to...Use this reference
Deploy or interact with Solidity contracts on HyperEVMhyperevm-json-rpc.md
Query EVM state (balances, logs, blocks)hyperevm-json-rpc.md
Get market data (prices, order books, candles, funding rates)info-api.md
Query user positions, orders, fills, or balancesinfo-api.md
Get perpetuals/spot metadata (universe, leverage, assets)info-api.md
Stream real-time order book updates with deep levelsorderbook-websocket.md
Build market-making or arbitrage systemsorderbook-websocket.md
Stream L1 block data or fill executionsgrpc-gateway.md
Build indexers or data pipelines from Hypercoregrpc-gateway.md
Place, cancel, or modify ordersnative-api.md
Subscribe to user events, trades, or candle updatesnative-api.md
Access historical trade/fill datahistorical-data.md
Discover endpoint URLs, manage API keys, or read docs from the terminaldwellir-cli.md

Dedicated Nodes

Full Hyperliquid stack on single-tenant infrastructure. No shared rate limits, uncapped throughput. Available in Tokyo (mainnet) and testnet configurations.

A dedicated node includes all Dwellir services (EVM JSON-RPC, Info API, gRPC Gateway, Orderbook Server) on isolated infrastructure.

For current pricing and configuration options, see Dwellir Hyperliquid Pricing.

Contact sales or subscribe via dashboard.dwellir.com.

Best Practices

  1. Use Dwellir for reads, Hyperliquid native for writes. Dwellir provides the data infrastructure; order placement requires signatures and goes through api.hyperliquid.xyz/exchange.
  2. Use the gRPC gateway for latency-sensitive streaming. The gRPC endpoint reads from disk and has lower latency than HTTP polling the Info API.
  3. Use Dwellir's Orderbook WebSocket for book data. It's optimized for order book delivery with edge servers in Singapore and Tokyo.
  4. Batch Info API queries. Fetch combined endpoints like metaAndAssetCtxs (via public API) rather than per-asset queries. Check Info API docs for which types are available on the Dwellir proxy vs public endpoint.
  5. Cache metadata. meta, spotMeta, and perpDexs are semi-static. Cache for 1-5 minutes.
  6. Use l2Book via Info API for snapshots, Orderbook WS for streaming. The Info API gives point-in-time snapshots; the Orderbook WebSocket gives continuous updates.

Documentation Links

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.91%
按下载量换算206

Claude

31.04%
按下载量换算173

Cursor

20.13%
按下载量换算112

Gemini CLI

9.84%
按下载量换算55

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills