home / skills / openclaw / skills / base
This skill helps you query on-chain data from the Base blockchain, including balances, gas prices, block numbers, and transaction status.
npx playbooks add skill openclaw/skills --skill baseReview the files below or copy the command above to add this skill to your agents.
---
name: base
description: Interact with Base blockchain — check balances, gas prices, block numbers, and transaction status. Use when the user wants to query onchain data on Base. No API key required.
metadata: {"clawdbot":{"emoji":"🟣","homepage":"https://base.org","requires":{"bins":["curl","jq","python3"]}}}
---
This skill provides simple, direct interaction with the Base blockchain for common on-chain queries. It lets you check account balances, current gas prices, latest block numbers, and transaction statuses without requiring an API key. The implementation focuses on read-only queries and quick diagnostics for Base network state.
The skill connects to a Base node or public RPC endpoint and issues JSON-RPC calls to fetch chain data. It inspects account balances, queries gas price and fee data, reads the latest block header, and polls transaction receipts to determine confirmation and status. Responses are returned as structured values for easy consumption by other tools or agents.
Do I need an API key to use the skill?
No. The skill uses public Base RPC endpoints and does not require an API key for read-only queries.
Can this skill send transactions or only read data?
It is intended for read-only queries: balances, gas prices, blocks, and transaction receipts. It does not manage private keys or broadcast signed transactions.