# Send RouteMesh Crypto RPC to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "routemesh-crypto-rpc",
    "name": "RouteMesh Crypto RPC",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/kermankohli/routemesh-crypto-rpc",
    "canonicalUrl": "https://clawhub.ai/kermankohli/routemesh-crypto-rpc",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/routemesh-crypto-rpc",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=routemesh-crypto-rpc",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/routemesh-crypto-rpc"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/routemesh-crypto-rpc",
    "downloadUrl": "https://openagent3.xyz/downloads/routemesh-crypto-rpc",
    "agentUrl": "https://openagent3.xyz/skills/routemesh-crypto-rpc/agent",
    "manifestUrl": "https://openagent3.xyz/skills/routemesh-crypto-rpc/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/routemesh-crypto-rpc/agent.md"
  }
}
```
## Documentation

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: kermankohli
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/routemesh-crypto-rpc)
- [Send to Agent page](https://openagent3.xyz/skills/routemesh-crypto-rpc/agent)
- [JSON manifest](https://openagent3.xyz/skills/routemesh-crypto-rpc/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/routemesh-crypto-rpc/agent.md)
- [Download page](https://openagent3.xyz/downloads/routemesh-crypto-rpc)