Ethereum JSON-RPC
Last updated
Last updated
The API offered by the Server enables users to establish a connection with the blockchain and engage with the EVM. This grants direct access to Ethereum-formatted transactions, allowing users to read or send them to the network. This functionality is unique to and not available on other Cosmos chains. is a lightweight, stateless protocol for remote procedure calls (RPC). It establishes guidelines for processing various data structures and is available on multiple transports. facilitates over HTTP and WebSocket. To enable transports, users can utilize command-line flags or the app.toml configuration file. JSON () is employed as the data format. More on Ethereum JSON-RPC:
is compatible with a wide range of standard web3 JSON-RPC APIs, allowing seamless integration with existing Ethereum-compatible web3 tools via HTTP. The Ethereum JSON-RPC APIs utilize a namespace system, categorizing RPC methods based on their specific purposes. Each method name is constructed by combining the namespace, an underscore, and the actual method name within that namespace. As an illustration, the eth_call method is located within the eth namespace. The activation of can be selectively granted on a per-namespace level. Find below the JSON-RPC namespaces supported on or head over to the documentation for the individual API endpoints and their respective curl commands on the JSON-RPC Methods page.
✔
🚫
The web3
API provides utility functions for the web3 client.
✔
🚫
The net
API provides access to network information of the node
✔
🚫
clique
The clique
API provides access to the state of the clique consensus engine. You can use this API to manage signer votes and to check the health of a private network.
🚫
The debug
API gives you access to several non-standard RPC methods, which will allow you to inspect, debug and set certain debugging flags during runtime.
✔
les
The les
API allows you to manage LES server settings, including client parameters and payment settings for prioritized clients. It also provides functions to query checkpoint information in both server and client mode.
🚫
The miner
API allows you to remote control the node’s mining operation and set various mining specific settings.
✔
🚫
The txpool
API gives you access to several non-standard RPC methods to inspect the contents of the transaction pool containing all the currently pending transactions as well as the ones queued for future processing.
✔
🚫
admin
The admin
API gives you access to several non-standard RPC methods, which will allow you to have a fine grained control over your node instance, including but not limited to network peer and RPC endpoint management.
🚫
The personal
API manages private keys in the key store.
✔
🚫
Under the hood, it uses the Tendermint RPC client's event system to process subscriptions that are then formatted to Ethereum-compatible events.
The Ethereum Websocket allows you to subscribe to Ethereum logs and events emitted in smart contracts. This way you don't need to continuously make requests when you want specific information.
You can start a connection with the Ethereum websocket using the --json-rpc.ws-address
flag when starting the node (default "0.0.0.0:8546"
):
At present there are two key datatypes that are passed over JSON:
quantities and
unformatted byte arrays.
Both are passed with a hex encoding, however with different requirements to formatting.
When encoding quantities (integers, numbers), encode as hex, prefix with "0x"
, the most compact representation (slight exception: zero should be represented as "0x0"
). Examples:
0x41
(65 in decimal)
0x400
(1024 in decimal)
WRONG: 0x
(should always have at least one digit - zero is "0x0"
)
WRONG: 0x0400
(no leading zeroes allowed)
WRONG: ff
(must be prefixed 0x
)
When encoding unformatted data (byte arrays, account addresses, hashes, bytecode arrays), encode as hex, prefix with "0x"
, two hex digits per byte. Examples:
0x41
(size 1, "A"
)
0x004200
(size 3, "\0B\0"
)
0x
(size 0, ""
)
WRONG: 0xf0f0f
(must be even number of digits)
WRONG: 004200
(must be prefixed 0x
)
The following methods have an extra default block parameter:
When requests are made that act on the state of CosVM, the last default block parameter determines the height of the block.
The following options are possible for the defaultBlock
parameter:
HEX String
- an integer block number
String "earliest"
for the earliest/genesis block
String "latest"
- for the latest mined block
String "pending"
- for the pending state/transactions
provides several extensions to the standard eth
JSON-RPC namespace.
also supports the Ethereum JSON-RPC filters calls to subscribe to , or changes.
Then you can check if the state changes with the call:
Given that is constructed using the Cosmos SDK framework and relies on Tendermint Core as its consensus engine, it adopts the event format from these technologies. Nevertheless, to facilitate native Web3 compatibility for websockets through , must convert the Tendermint responses it receives into Ethereum types.
Then, start a websocket subscription with