← All skills
Tencent SkillHub Β· Developer Tools

RouteMesh Crypto RPC

Call RouteMesh's unified JSON-RPC endpoint (lb.routeme.sh) for any EVM chainId using a helper script. Use when you need to fetch onchain data (eth_* methods), debug RPC responses, or demo RouteMesh routing for a chain/method.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Call RouteMesh's unified JSON-RPC endpoint (lb.routeme.sh) for any EVM chainId using a helper script. Use when you need to fetch onchain data (eth_* methods), debug RPC responses, or demo RouteMesh routing for a chain/method.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 6 sections Open source page

RouteMesh RPC (JSON-RPC)

This skill standardizes how to call RouteMesh’s unified RPC endpoint: Endpoint: POST https://lb.routeme.sh/rpc/{chainId}/{apiKey} Body: JSON-RPC 2.0 (jsonrpc, id, method, optional params)

Quick start

Set your API key (recommended): export ROUTEMESH_API_KEY="rm_...your_key..." Make a request (example: Ethereum mainnet, eth_blockNumber): python3 "{baseDir}/scripts/routemesh_rpc.py" \ --chain-id 1 \ --method eth_blockNumber \ --params '[]'

Usage pattern

Prefer calling via the helper script so output stays consistent and you don’t accidentally break JSON encoding.

Script arguments

--chain-id: EVM chain id (string or int, e.g. 1, 137, 42161) --api-key: optional; falls back to ROUTEMESH_API_KEY --method: JSON-RPC method (e.g. eth_getBlockByNumber, eth_call) --params: JSON string for params (default []) --url: optional base URL (default https://lb.routeme.sh)

Common examples

Get the latest block (Polygon): python3 "{baseDir}/scripts/routemesh_rpc.py" \ --chain-id 137 \ --method eth_getBlockByNumber \ --params '["latest", false]' Get chain id (any EVM chain): python3 "{baseDir}/scripts/routemesh_rpc.py" \ --chain-id 8453 \ --method eth_chainId \ --params '[]' eth_call (Base). data must be hex-encoded calldata: python3 "{baseDir}/scripts/routemesh_rpc.py" \ --chain-id 8453 \ --method eth_call \ --params '[{"to":"0x0000000000000000000000000000000000000000","data":"0x"}, "latest"]'

Notes / error handling

RouteMesh returns standard JSON-RPC responses (result or error) and may also use HTTP error codes. If you get a JSON-RPC error.code, refer to RouteMesh RPC error code docs in this repo: docs/reference/Reference/get_new-endpoint.md. Keep ROUTEMESH_API_KEY out of logs, issues, and commits.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc