Ethereum JSON-RPC
On this page
JSON-RPC Server #
Learn about the JSON-RPC server to interact with the EVM.
The JSON-PRC Server provides an API that allows you to connect to the ICPlaza blockchain and interact with the EVM. This gives you direct access to reading Ethereum-formatted transactions or sending them to the network which otherwise wouldn’t be possible on a ICPlaza chain, such as ICPlaza.
JSON-RPC is a stateless, light-weight remote procedure call (RPC) protocol. It defines several data structures and the rules around their processing. It is transport agnostic in that the concepts can be used within the same process, over sockets, over HTTP, or in many various message passing environments. It uses JSON (RFC 4627) as data format.
JSON-RPC is provided on multiple transports. ICPlaza supports JSON-RPC over HTTP and WebSocket. Transports must be enabled through command-line flags or through the app.toml
configuration file.
Web3 Support #
ICPlaza supports all standard web3 JSON-RPC APIs. You can find documentation for these APIs on the [JSON-RPC Methods
] page.
Ethereum JSON-RPC APIs use a name-space system. RPC methods are grouped into several categories depending on their purpose. All method names are composed of the namespace, an underscore, and the actual method name within the namespace. For example, the eth_call method resides in the eth namespace.
Access to RPC methods can be enabled on a per-namespace basis. Find documentation for individual namespaces in the Namespaces page.
HEX value encoding #
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 prefixed0x
)
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 prefixed0x
)
Default block parameter #
The following methods have an extra default block parameter:
[
eth_getBalance
][
eth_getCode
][
eth_getTransactionCount
][
eth_getStorageAt
][
eth_call
]
When requests are made that act on the state of ICPlaza, 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 numberString "earliest"
for the earliest/genesis blockString "latest"
- for the latest mined blockString "pending"
- for the pending state/transactions
Curl Examples Explained #
The curl options below might return a response where the node complains about the content type, this is because the --data
option sets the content type to application/x-www-form-urlencoded
. If your node does complain, manually set the header by placing -H "Content-Type: application/json"
at the start of the call.
The examples also do not include the URL/IP & port combination which must be the last argument given to curl e.x. 127.0.0.1:8545
Running the Server #
Learn how to run and setup the JSON-RPC server on ICPlaza. {synopsis}
Enable Server #
To enable RPC server use the following flag (set to true by default).
Defining Namespaces #
Eth
,Net
and Web3
namespaces are enabled by default. In order to enable other namespaces use flag --json-rpc.api
.
Set a Gas Cap #
eth_call
and eth_estimateGas
define a global gas cap over rpc for DoS protection. You can override the default gas cap value of 25,000,000 by passing a custom value when starting the node:
CORS #
If accessing the RPC from a browser, CORS will need to be enabled with the appropriate domain set. Otherwise, JavaScript calls are limit by the same-origin policy and requests will fail.
The CORS setting can be updated from the app.toml
Namespaces #
Check the JSON-RPC namespaces supported on ICPlaza. {synopsis}
Pre-requisite Readings #
Ethereum Namespaces #
ICPlaza provides several extensions to the standard eth
JSON-RPC namespace.
✔
✔
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.
❌
debug
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 nodeinstance, including but not limited to network peer and RPC endpoint management.
❌
personal
The personal
API manages private keys in the key store.
✔
❌
JSON-RPC Methods #
Check the JSON-RPC methods supported on ICPlaza. {synopsis}
Pre-requisite Readings #
Endpoints #
web3_clientVersion
Web3
✔
✔
web3_sha3
Web3
✔
✔
net_version
Net
✔
✔
net_peerCount
Net
✔
✔
net_listening
Net
✔
✔
eth_protocolVersion
Eth
✔
✔
eth_syncing
Eth
✔
✔
eth_gasPrice
Eth
✔
✔
eth_accounts
Eth
✔
✔
eth_blockNumber
Eth
✔
✔
eth_getBalance
Eth
✔
✔
eth_getStorageAt
Eth
✔
✔
eth_getTransactionCount
Eth
✔
✔
eth_getBlockTransactionCountByNumber
Eth
✔
✔
eth_getBlockTransactionCountByHash
Eth
✔
✔
eth_getCode
Eth
✔
✔
eth_sign
Eth
✔
✔
eth_sendTransaction
Eth
✔
✔
eth_sendRawTransaction
Eth
✔
✔
eth_call
Eth
✔
✔
eth_estimateGas
Eth
✔
✔
eth_getBlockByNumber
Eth
✔
✔
eth_getBlockByHash
Eth
✔
✔
eth_getTransactionByHash
Eth
✔
✔
eth_getTransactionByBlockHashAndIndex
Eth
✔
✔
eth_getTransactionReceipt
Eth
✔
✔
Eth
✔
✔
eth_newBlockFilter
Eth
✔
✔
eth_newPendingTransactionFilter
Eth
✔
✔
eth_uninstallFilter
Eth
✔
✔
eth_getFilterChanges
Eth
✔
✔
eth_getFilterLogs
Eth
✔
✔
eth_getLogs
Eth
✔
✔
eth_getTransactionbyBlockNumberAndIndex
Eth
✔
eth_getWork
Eth
N/A
✔
PoW-only
eth_submitWork
Eth
N/A
✔
PoW-only
eth_submitHashrate
Eth
eth_getCompilers
Eth
eth_compileLLL
Eth
eth_compileSolidity
Eth
eth_compileSerpent
Eth
eth_signTransaction
Eth
eth_mining
Eth
❌
eth_coinbase
Eth
✔
eth_hashrate
Eth
N/A
❌
PoW-only
eth_getUncleCountByBlockHash
Eth
N/A
PoW-only
eth_getUncleCountByBlockNumber
Eth
N/A
PoW-only
eth_getUncleByBlockHashAndIndex
Eth
N/A
PoW-only
eth_getUncleByBlockNumberAndIndex
Eth
N/A
PoW-only
eth_getProof
Eth
✔
eth_subscribe
Websocket
✔
eth_unsubscribe
Websocket
✔
personal_importRawKey
Personal
✔
❌
personal_listAccounts
Personal
✔
❌
personal_lockAccount
Personal
✔
❌
personal_newAccount
Personal
✔
❌
personal_unlockAccount
Personal
✔
❌
personal_sendTransaction
Personal
✔
❌
personal_sign
Personal
✔
❌
personal_ecRecover
Personal
✔
❌
personal_initializeWallet
Personal
✔
❌
personal_unpair
Personal
✔
❌
db_putString
DB
db_getString
DB
db_putHex
DB
db_getHex
DB
shh_post
SSH
shh_version
SSH
shh_newIdentity
SSH
shh_hasIdentity
SSH
shh_newGroup
SSH
shh_addToGroup
SSH
shh_newFilter
SSH
shh_uninstallFilter
SSH
shh_getFilterChanges
SSH
shh_getMessages
SSH
admin_addPeer
Admin
❌
admin_datadir
Admin
❌
admin_nodeInfo
Admin
❌
admin_peers
Admin
❌
admin_startRPC
Admin
❌
admin_startWS
Admin
❌
admin_stopRPC
Admin
❌
admin_stopWS
Admin
❌
clique_getSnapshot
Clique
clique_getSnapshotAtHash
Clique
clique_getSigners
Clique
clique_proposals
Clique
clique_propose
Clique
clique_discard
Clique
clique_status
Clique
debug_backtraceAt
Debug
debug_blockProfile
Debug
✔
debug_cpuProfile
Debug
✔
debug_dumpBlock
Debug
debug_gcStats
Debug
✔
debug_getBlockRlp
Debug
debug_goTrace
Debug
✔
debug_freeOSMemory
Debug
✔
debug_memStats
Debug
✔
debug_mutexProfile
Debug
✔
debug_seedHash
Debug
debug_setHead
Debug
debug_setBlockProfileRate
Debug
✔
debug_setGCPercent
Debug
✔
debug_setMutexProfileFraction
Debug
✔
debug_stacks
Debug
✔
debug_startCPUProfile
Debug
✔
debug_startGoTrace
Debug
✔
debug_stopCPUProfile
Debug
✔
debug_stopGoTrace
Debug
✔
debug_traceBlock
Debug
✔
debug_traceBlockByNumber
Debug
✔
debug_traceBlockByHash
Debug
✔
debug_traceBlockFromFile
Debug
debug_standardTraceBlockToFile
Debug
debug_standardTraceBadBlockToFile
Debug
debug_traceTransaction
Debug
✔
debug_verbosity
Debug
debug_vmodule
Debug
debug_writeBlockProfile
Debug
✔
debug_writeMemProfile
Debug
✔
debug_writeMutexProfile
Debug
✔
les_serverInfo
Les
les_clientInfo
Les
les_priorityClientInfo
Les
les_addBalance
Les
les_setClientParams
Les
les_setDefaultParams
Les
les_latestCheckpoint
Les
les_getCheckpoint
Les
les_getCheckpointContractAddress
Les
miner_getHashrate
Miner
✔
❌
No-op
miner_setExtra
Miner
✔
❌
No-op
miner_setGasPrice
Miner
✔
❌
Needs node restart
miner_start
Miner
✔
❌
No-op
miner_stop
Miner
✔
❌
No-op
miner_setGasLimit
Miner
✔
❌
No-op
miner_setEtherbase
Miner
✔
❌
txpool_content
TxPool
✔
txpool_inspect
TxPool
✔
txpool_status
TxPool
✔
:::tip Block Number can be entered as a Hex string, "earliest"
, "latest"
or "pending"
. :::
Below is a list of the RPC methods, the parameters and an example response from the namespaces.
Web3 Methods #
web3_clientVersion
#
web3_clientVersion
#Get the web3 client version.
Parameters (0) #
Result #
Client Examples #
:::: tabs ::: tab Shell HTTP
::: ::: tab Shell WebSocket
::: ::: tab Javascript Console
::: ::::
web3_sha3
#
web3_sha3
#Returns Keccak-256 (not the standardized SHA3-256) of the given data.
Parameters (1) #
1: input hexutil.Bytes
Required: ✓ Yes
Result #
Client Examples #
:::: tabs ::: tab Shell HTTP
::: ::: tab Shell WebSocket
::: ::: tab Javascript Console
::: ::::
Net Methods #
net_version
#
Returns the current network id.
net_peerCount
#
Returns the number of peers currently connected to the client.
net_listening
#
Returns if client is actively listening for network connections.
Eth Methods #
eth_protocolVersion
#
Returns the current ethereum protocol version.
eth_syncing
#
The sync status object may need to be different depending on the details of Tendermint’s sync protocol. However, the ‘synced’ result is simply a boolean, and can easily be derived from Tendermint’s internal sync state.
eth_gasPrice
#
Returns the current gas price in the default EVM denomination parameter.
eth_accounts
#
Returns array of all eth accounts.
eth_blockNumber
#
Returns the current block height.
eth_getBalance
#
Returns the account balance for a given account address and Block Number.
Parameters #
Account Address
Block Number or Block Hash (EIP-1898)
eth_getStorageAt
#
eth_getStorageAt
#Returns the storage address for a given account address.
Parameters #
Account Address
Integer of the position in the storage
Block Number or Block Hash (EIP-1898)
eth_getTransactionCount
#
eth_getTransactionCount
#Returns the total transaction for a given account address and Block Number.
Parameters #
Account Address
Block Number or Block Hash (EIP-1898)
eth_getBlockTransactionCountByNumber
#
eth_getBlockTransactionCountByNumber
#Returns the total transaction count for a given block number.
Parameters #
Block number
eth_getBlockTransactionCountByHash
#
eth_getBlockTransactionCountByHash
#Returns the total transaction count for a given block hash.
Parameters #
Block Hash
eth_getCode
#
eth_getCode
#Returns the code for a given account address and Block Number.
Parameters #
Account Address
Block Number or Block Hash (EIP-1898)
eth_sign
#
eth_sign
#The sign
method calculates an Ethereum specific signature with: sign(keccak256("\x19Ethereum Signed Message:\n" + len(message) + message)))
.
By adding a prefix to the message makes the calculated signature recognizable as an Ethereum specific signature. This prevents misuse where a malicious DApp can sign arbitrary data (e.g. transaction) and use the signature to impersonate the victim.
::: warning The address to sign with must be unlocked. :::
Parameters #
Account Address
Message to sign
eth_sendTransaction
#
eth_sendTransaction
#Sends transaction from given account to a given account.
Parameters #
Object containing:
from
:DATA
, 20 Bytes - The address the transaction is send from.to
:DATA
, 20 Bytes - (optional when creating new contract) The address the transaction is directed to.gas
: QUANTITY - (optional, default: 90000) Integer of the gas provided for the transaction execution. It will return unused gas.gasPrice
: QUANTITY - (optional, default: To-Be-Determined) Integer of the gasPrice used for each paid gasvalue
: QUANTITY - value sent with this transactiondata
:DATA
- The compiled code of a contract OR the hash of the invoked method signature and encoded parameters. For details see Ethereum Contract ABInonce
: QUANTITY - (optional) Integer of a nonce. This allows to overwrite your own pending transactions that use the same nonce.
eth_sendRawTransaction
#
eth_sendRawTransaction
#Creates new message call transaction or a contract creation for signed transactions. You can get signed transaction data using the [personal_sign
] method.
Parameters #
The signed transaction data
eth_call
#
eth_call
#Executes a new message call immediately without creating a transaction on the block chain.
Parameters #
Object containing:
from
:DATA
, 20 Bytes - (optional) The address the transaction is sent from.to
:DATA
, 20 Bytes - The address the transaction is directed to.gas
: QUANTITY - gas provided for the transaction execution. eth_call consumes zero gas, but this parameter may be needed by some executions.gasPrice
: QUANTITY - gasPrice used for each paid gasvalue
: QUANTITY - value sent with this transactiondata
:DATA
- (optional) Hash of the method signature and encoded parameters. For details see Ethereum Contract ABI in the Solidity documentationBlock number or Block Hash (EIP-1898)
eth_estimateGas
#
eth_estimateGas
#Returns an estimate value of the gas required to send the transaction.
Parameters #
Object containing:
from
:DATA
, 20 Bytes - The address the transaction is send from.to
:DATA
, 20 Bytes - (optional when creating new contract) The address the transaction is directed to.value
:QUANTITY
- value sent with this transaction
eth_getBlockByNumber
#
eth_getBlockByNumber
#Returns information about a block by block number.
Parameters #
Block Number
If true it returns the full transaction objects, if false only the hashes of the transactions.
eth_getBlockByHash
#
eth_getBlockByHash
#Returns the block info given the hash found in the command above and a bool.
Parameters #
Hash of a block.
If true it returns the full transaction objects, if false only the hashes of the transactions.
eth_getTransactionByHash
#
eth_getTransactionByHash
#Returns transaction details given the ethereum tx something.
Parameters #
hash of a transaction
eth_getTransactionByBlockHashAndIndex
#
eth_getTransactionByBlockHashAndIndex
#Returns transaction details given the block hash and the transaction index.
Parameters #
Hash of a block.
Transaction index position.
eth_getTransactionReceipt
#
eth_getTransactionReceipt
#Returns the receipt of a transaction by transaction hash.
Note: Tx Code from Tendermint and the Ethereum receipt status are switched:
Success
0
1
Fail
1
0
Parameters #
Hash of a transaction
eth_newFilter
#
eth_newFilter
#Create new filter using topics of some kind.
Parameters #
hash of a transaction
eth_newBlockFilter
#
eth_newBlockFilter
#Creates a filter in the node, to notify when a new block arrives.
eth_newPendingTransactionFilter
#
eth_newPendingTransactionFilter
#Creates a filter in the node, to notify when new pending transactions arrive.
eth_uninstallFilter
#
eth_uninstallFilter
#Removes the filter with the given filter id. Returns true if the filter was successfully uninstalled, otherwise false.
Parameters #
The filter id
eth_getFilterChanges
#
eth_getFilterChanges
#Polling method for a filter, which returns an array of logs which occurred since last poll.
Parameters #
The filter id
eth_getFilterLogs
#
eth_getFilterLogs
#Returns an array of all logs matching filter with given id.
Parameters #
QUANTITY
- The filter id
eth_getLogs
#
eth_getLogs
#Returns an array of all logs matching a given filter object.
Parameters #
Object containing:
fromBlock
:QUANTITY|TAG
- (optional, default:"latest"
) Integer block number, or"latest"
for the last mined block or"pending"
,"earliest"
for not yet mined transactions.toBlock
:QUANTITY|TAG
- (optional, default:"latest"
) Integer block number, or"latest"
for the last mined block or"pending"
,"earliest"
for not yet mined transactions.address
:DATA|Array
, 20 Bytes - (optional) Contract address or a list of addresses from which logs should originate.topics
: Array ofDATA
, - (optional) Array of 32 BytesDATA
topics. Topics are order-dependent. Each topic can also be an array ofDATA
with “or” options.blockhash
: (optional, future) With the addition of EIP-234,blockHash
will be a new filter option which restricts the logs returned to the single block with the 32-byte hashblockHash
. UsingblockHash
is equivalent tofromBlock
=toBlock
= the block number with hashblockHash
. IfblockHash
is present in in the filter criteria, then neitherfromBlock
nortoBlock
are allowed.
eth_coinbase #
Returns the account the mining rewards will be send to.
eth_getProof #
Returns the account- and storage-values of the specified account including the Merkle-proof.
Parameters #
Address of account or contract
Integer of the position in the storage
Block Number or Block Hash (EIP-1898)
WebSocket Methods #
Read about websockets in events
eth_subscribe
#
eth_subscribe
#subscribe using JSON-RPC notifications. This allows clients to wait for events instead of polling for them.
It works by subscribing to particular events. The node will return a subscription id. For each event that matches the subscription a notification with relevant data is send together with the subscription id.
Parameters #
Subscription Name
Optional Arguments
eth_unsubscribe
#
eth_unsubscribe
#Unsubscribe from an event using the subscription id
Parameters #
Subscription ID
Personal Methods #
personal_importRawKey
#
personal_importRawKey
#::: tip Private: Requires authentication. :::
Imports the given unencrypted private key (hex encoded string) into the key store, encrypting it with the passphrase.
Returns the address of the new account.
Parameters (2) #
1: privkey string
Required: ✓ Yes
2: password string
Required: ✓ Yes
personal_listAccounts
#
personal_listAccounts
#::: tip Private: Requires authentication. :::
Returns a list of addresses for accounts this node manages.
personal_lockAccount
#
personal_lockAccount
#::: tip Private: Requires authentication. :::
Removes the private key with given address from memory. The account can no longer be used to send transactions.
Parameters #
Account Address
personal_newAccount
#
personal_newAccount
#::: tip Private: Requires authentication. :::
Generates a new private key and stores it in the key store directory. The key file is encrypted with the given passphrase. Returns the address of the new account.
Parameters #
Passphrase
personal_unlockAccount
#
personal_unlockAccount
#::: tip Private: Requires authentication. :::
Decrypts the key with the given address from the key store.
Both passphrase and unlock duration are optional when using the JavaScript console. The unencrypted key will be held in memory until the unlock duration expires. If the unlock duration defaults to 300 seconds. An explicit duration of zero seconds unlocks the key until geth exits.
The account can be used with [eth_sign
] and [eth_sendTransaction
] while it is unlocked.
Parameters #
Account Address
Passphrase
Duration
personal_sendTransaction
#
personal_sendTransaction
#::: tip Private: Requires authentication. :::
Validate the given passphrase and submit transaction.
The transaction is the same argument as for [eth_sendTransaction
] and contains the from
address. If the passphrase can be used to decrypt the private key belonging to tx.from
the transaction is verified, signed and send onto the network.
:::warning The account is not unlocked globally in the node and cannot be used in other RPC calls. :::
Parameters #
Object containing:
from
:DATA
, 20 Bytes - The address the transaction is send from.to
:DATA
, 20 Bytes - (optional when creating new contract) The address the transaction is directed to.value
: QUANTITY - value sent with this transactionPassphrase
personal_sign
#
personal_sign
#::: tip Private: Requires authentication. :::
The sign method calculates an Ethereum specific signature with: sign(keccack256("\x19Ethereum Signed Message:\n" + len(message) + message)))
,
Parameters #
Message
Account Address
Password
personal_ecRecover
#
personal_ecRecover
#::: tip Private: Requires authentication. :::
ecRecover
returns the address associated with the private key that was used to calculate the signature in [personal_sign
].
Parameters #
Message
Signature returned from [
personal_sign
]
personal_initializeWallet
#
personal_initializeWallet
#::: tip Private: Requires authentication. :::
Initializes a new wallet at the provided URL, by generating and returning a new private key.
Parameters (1) #
Parameters must be given by position.
1: url string
Required: ✓ Yes
Client Examples #
:::: tabs ::: tab Shell HTTP
::: ::: tab Shell WebSocket
::: ::: tab Javascript Console
::: ::::
personal_unpair
#
personal_unpair
#::: tip Private: Requires authentication. :::
Unpair deletes a pairing between wallet and the node.
Parameters (2) #
URL
Pairing password
Client Examples #
:::: tabs ::: tab Shell HTTP
::: ::: tab Shell WebSocket
::: ::: tab Javascript Console
::: ::::
Debug Methods #
debug_traceTransaction
#
debug_traceTransaction
#The traceTransaction
debugging method will attempt to run the transaction in the exact same manner as it was executed on the network. It will replay any transaction that may have been executed prior to this one before it will finally attempt to execute the transaction that corresponds to the given hash.
Parameters #
Trace Config
debug_traceBlockByNumber
#
debug_traceBlockByNumber
#The traceBlockByNumber
endpoint accepts a block number and will replay the block that is already present in the database.
Parameters #
Trace Config
Miner Methods #
miner_getHashrate
#
miner_getHashrate
#::: tip Private: Requires authentication. :::
Get the hashrate in H/s (Hash operations per second).
::: warning Proof-of-Work specific. This endpoint always returns 0
. :::
miner_setExtra
#
miner_setExtra
#::: tip Private: Requires authentication. :::
Sets the extra data a validator can include when proposing blocks. This is capped at 32 bytes.
::: warning Unsupported. This endpoint always returns an error :::
Parameters #
Data
miner_setGasPrice
#
miner_setGasPrice
#::: tip Private: Requires authentication. :::
Sets the minimal gas price used to accept transactions. Any transaction below this limit is excluded from the validator block proposal process.
This method requires a node
restart after being called because it changes the configuration file.
Make sure your ICPlazad start
call is not using the flag minimum-gas-prices
because this value will be used instead of the one set on the configuration file.
Parameters #
Hex Gas Price
miner_start
#
miner_start
#::: tip Private: Requires authentication. :::
Start the CPU validation process with the given number of threads.
::: warning Unsupported. This endpoint always returns an error :::
Parameters #
Hex Number of threads
miner_stop
#
miner_stop
#::: tip Private: Requires authentication. :::
Stop the validation operation.
::: warning Unsupported. This endpoint always performs a no-op. :::
miner_setGasLimit
#
miner_setGasLimit
#::: tip Private: Requires authentication. :::
Sets the gas limit the miner will target when mining. Note: on networks where EIP-1559 is activated, this should be set to twice what you want the gas target (i.e. the effective gas used on average per block) to be.
::: warning Unsupported. This endpoint always returns false
:::
Parameters #
Hex gas limit
miner_setEtherbase
#
miner_setEtherbase
#::: tip Private: Requires authentication. :::
Sets the etherbase. It changes the wallet where the validator rewards will be deposited.
Parameters #
Account Address
TxPool Methods #
txpool_content
#
txpool_content
#Returns a list of the exact details of all the transactions currently pending for inclusion in the next block(s), as well as the ones that are being scheduled for future execution only.
Parame (0) #
Client Examples #
:::: tabs ::: tab Shell HTTP
::: ::: tab Shell WebSocket
::: ::: tab Javascript Console
::: ::::
Result #
txpool_inspect
#
txpool_inspect
#Returns a list on text format to summarize all the transactions currently pending for inclusion in the next block(s), as well as the ones that are being scheduled for future execution only. This is a method specifically tailored to developers to quickly see the transactions in the pool and find any potential issues.
Parameters (0) #
Client Examples #
:::: tabs ::: tab Shell HTTP
::: ::: tab Shell WebSocket
::: ::: tab Javascript Console
::: ::::
Result #
txpool_status
#
txpool_status
#Returns the number of transactions currently pending for inclusion in the next block(s), as well as the ones that are being scheduled for future execution only.
Parameters (0) #
Client Examples #
:::: tabs ::: tab Shell HTTP
::: ::: tab Shell WebSocket
::: ::: tab Javascript Console
::: ::::
Result #
Events #
Event
s are objects that contain information about the execution of the application. They are mainly used by service providers like block explorers and wallet to track the execution of various messages and index transactions. {synopsis}
Pre-requisite Readings #
ICPlaza SDK Events {prereq}
Ethereum’s PubSub JSON-RPC API {prereq}
Subscribing to Events #
ICTech and Tendermint Events #
::: tip Check the Tendermint Websocket in the Clients documentation for reference. :::
It is possible to subscribe to Events
via Tendermint’s Websocket. This is done by calling the subscribe
RPC method via Websocket:
These events are triggered after a block is committed. You can get the full list of event
categories and values here.
The type
and attribute
value of the query
allow you to filter the specific event
you are looking for. For example, a an Ethereum transaction on ICTech (MsgEthereumTx
) triggers an event
of type ethermint
and has sender
and recipient
as attributes
. Subscribing to this event
would be done like so:
where hexAddress
is an Ethereum hex address (eg: 0x1122334455667788990011223344556677889900
).
Ethereum Events #
ICTech also supports the Ethereum JSON-RPC filters calls to subscribe to state logs, blocks or pending transactions changes.
Under the hood, it uses the Tendermint RPC client’s event system to process subscriptions that are then formatted to Ethereum-compatible events.
Then you can check if the state changes with the eth_getFilterChanges
call:
Websocket Connection #
Tendermint Websocket #
To start a connection with the Tendermint websocket you need to define the address with the --rpc.laddr
flag when starting the node (default tcp://127.0.0.1:26657
):
Then, start a websocket subscription with ws
Ethereum Websocket #
Since ICPlaza runs uses Tendermint Core as it’s consensus Engine and it’s built with the ICPlaza SDK framework, it inherits the event format from them. However, in order to support the native Web3 compatibility for websockets of the Ethereum’s PubSubAPI, ICPlaza needs to cast the Tendermint responses retrieved into the Ethereum types.
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"
):
Then, start a websocket subscription with ws
Last updated