BlockX Clients
BlockX supports different clients in order to support Cosmos and Ethereum transactions and queries:
- | Description | Default Port |
---|---|---|
Cosmos gRPC | Query or send BlockX transactions using gRPC |
|
Cosmos REST (gRPC-Gateway) | Query or send BlockX transactions using an HTTP RESTful API |
|
Ethereum JSON-RPC | Query Ethereum-formatted transactions and blocks or send Ethereum txs using JSON-RPC |
|
Ethereum Websocket | Subscribe to Ethereum logs and events emitted in smart contracts. |
|
Tendermint RPC | Subscribe to Ethereum logs and events emitted in smart contracts. |
|
Tendermint Websocket | Query transactions, blocks, consensus state, broadcast transactions, etc. |
|
Command Line Interface (CLI) | Query or send BlockX transactions using your Terminal or Console. | N/A |
Cosmos gRPC
BlockX exposes gRPC endpoints for all the integrated Cosmos SDK modules. This makes it easier for wallets and block explorers to interact with the Proof-of-Stake logic and native Cosmos transactions and queries.
Cosmos gRPC-Gateway (HTTP REST)
gRPC-Gateway reads a gRPC service definition and generates a reverse-proxy server which translates RESTful JSON API into gRPC. With gRPC-Gateway, users can use REST to interact the Cosmos gRPC service.
Ethereum JSON-RPC
BlockX supports most of the standard JSON-RPC APIs to connect with existing Ethereum-compatible web3 tooling.
Ethereum Websocket
Then, start a websocket subscription with ws
Tendermint Websocket
Tendermint Core provides a Websocket connection to subscribe or unsubscribe to Tendermint ABCI events.
For more info about the how to subscribe to events, please refer to the official Tendermint documentation.
List of Tendermint Events
The main events you can subscribe to are:
NewBlock
: Containsevents
triggered duringBeginBlock
andEndBlock
.Tx
: Containsevents
triggered duringDeliverTx
(i.e. transaction processing).ValidatorSetUpdates
: Contains validator set updates for the block.
The list of events types and values for each Cosmos SDK module can be found in the Modules
Specification section. Check the Events
page to obtain the event list of each supported module on BlockX .
List of all Tendermint event keys:
- | Event Type | Categories |
---|---|---|
Subscribe to a specific event |
|
|
Subscribe to a specific transaction |
|
|
Subscribe to transactions at a specific block height |
|
|
Index |
|
|
Subscribe to ABCI |
|
|
Subscribe to ABCI |
|
|
Below is a list of values that you can use to subscribe for the tm.event
type:
- | Event Value | Categories |
---|---|---|
New block |
|
|
New block header |
|
|
New Byzantine Evidence |
|
|
New transaction |
|
|
Validator set updated |
|
|
Block sync status |
|
|
lock |
|
|
New consensus round |
|
|
Polka |
|
|
Relock |
|
|
State sync status |
|
|
Timeout propose |
|
|
Timeout wait |
|
|
Unlock |
|
|
Block is valid |
|
|
Consensus vote |
|
|
Example
Example response:
CLI
Users can use the blockxd
binary to interact directly with an BlockX node though the CLI.
To use the CLI, you will need to provide a Tendermint RPC address for the --node
flag. Look for a publicly available addresses for testnet and mainnet in the Establishing Connections page.
Transactions:
blockxd tx
The list of available commands, as of
v3.0.0
, are:
Queries: blockxd query
The list of available commands, as of v3.0.0
, are:
When querying Ethereum transactions versus Cosmos transactions, the transaction hashes are different. When querying Ethereum transactions, users need to use event query. Here's an example with the CLI:
Last updated