Use this skill to run Ethereum execution JSON-RPC operations through uxc + JSON-RPC.
Reuse the uxc skill for shared execution, auth, and error-handling guidance.
uxc is installed and available in PATH.https://raw.githubusercontent.com/ethereum/execution-apis/assembled-spec/refs-openrpc.jsonThis skill covers a safe read-first Ethereum execution surface:
eth_subscribe pubsub subscriptions for new heads, logs, and pending transactionsThis skill does not cover:
eth_sendRawTransactionpersonal_, admin_, debug_, engine_, txpool_*This skill defaults to a public read provider:
https://ethereum-rpc.publicnode.comThe operation surface comes from the official Ethereum execution OpenRPC schema:
https://raw.githubusercontent.com/ethereum/execution-apis/assembled-spec/refs-openrpc.jsonuxc JSON-RPC discovery normally depends on OpenRPC or rpc.discover. Ethereum RPC providers often do not expose discovery directly, so this skill uses a fixed --schema-url link and request flow.
The official execution OpenRPC document is strong enough for normal request/response methods, but it does not currently expose pubsub methods such as eth_subscribe. Use the schema-backed link for reads, and use uxc subscribe start directly for subscriptions.
For subscriptions, use a WebSocket Ethereum RPC provider that you have verified actually accepts eth_subscribe. Do not assume a public HTTPS host automatically guarantees the same wss:// host is stable for pubsub.
The default public read provider used by this skill does not require authentication.
If a user later points the same workflow at a private Ethereum RPC provider, verify its auth model first before reusing this skill unchanged.
command -v ethereum-jsonrpc-cli uxc link ethereum-jsonrpc-cli https://ethereum-rpc.publicnode.com --schema-url https://raw.githubusercontent.com/ethereum/execution-apis/assembled-spec/refs-openrpc.json
ethereum-jsonrpc-cli -hethereum-jsonrpc-cli eth_blockNumber -hethereum-jsonrpc-cli eth_getBlockByNumber -hethereum-jsonrpc-cli eth_getBalance -hethereum-jsonrpc-cli eth_chainIdethereum-jsonrpc-cli eth_blockNumberethereum-jsonrpc-cli eth_getBalance Address=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 Block=latest ethereum-jsonrpc-cli eth_getBalance Address=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 Block=latest
ethereum-jsonrpc-cli eth_getBlockByNumber '["latest", false]'
ethereum-jsonrpc-cli eth_call '[{"to":"0xA0b86991c6218b36c1d19d4a2e9eb0ce3606eb48","data":"0x313ce567"},"latest"]'
uxc subscribe start directly for pubsub streams:uxc subscribe start wss:// eth_subscribe '{"params":["newHeads"]}' --sink file:$HOME/.uxc/subscriptions/eth-new-heads.ndjson uxc subscribe start wss:// eth_subscribe '{"params":["logs",{"address":"0xA0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"}]}' --sink file:$HOME/.uxc/subscriptions/eth-logs.ndjson uxc subscribe status uxc subscribe stop net_versioneth_chainIdeth_blockNumbereth_getBlockByNumbereth_getBalanceeth_getLogseth_calleth_subscribeSubscription params[0] modes that are usually most useful:
newHeadslogsnewPendingTransactions--text.ok, kind, protocol, data, error.eth_subscribe by default.eth_subscribe; treat subscriptions as runtime-only flows, not schema-discovered operations.uxc subscribe start for pubsub methods; the fixed ethereum-jsonrpc-cli link is for normal request/response methods.wss:// endpoint.ethereum-jsonrpc-cli ... is equivalent to uxc https://ethereum-rpc.publicnode.com --schema-url ... .references/usage-patterns.md共 1 个版本