API Method
The API Method allows you to interact with the Bitrock Blockchain.

ADMIN methodsโ
ADMIN methodsโadmin_addPeerโ
admin_addPeerโIf connections are timing out, ensure the node ID in the enode URL is correct.
Parametersโ
enode: - String = enode://1fd6bfa1ac606ab3cdbbbacef1b27a1e38b0ac54d5c1a361d07a27211b54b4817aa9b14e596f23c7020d246998f5224ae18882b181dad2ee940d774a085eb7bd@206.81.20.253:30303
Returnsโ
result: boolean - true if peer added or false if peer already a static node
curl HTTP request
wscat WS request
JSON result
admin_changeLogLevelโ
admin_changeLogLevelโChanges the log level without restarting Besu. You can change the log level for all logs, or you can change the log level for specific packages or classes.
You can specify only one log level per RPC call.
Parametersโ
level: string - log levellog_filter: array - (optional) packages or classes for which to change the log level
Returnsโ
result: string - Success if the log level has changed, otherwise error
The following example changes the debug level for specified classes to DEBUG.
curl HTTP request
wscat WS request
JSON result
The following example changes the debug level of all logs to WARN.
curl HTTP request
wscat WS request
JSON result
admin_generateLogBloomCacheโ
admin_generateLogBloomCacheโGenerates cached log bloom indexes for blocks. APIs such as eth_getLogs and eth_getFilterLogs use the cache for improved performance.
Note
Each index file contains 100000 blocks. The last fragment of blocks less than 100000 are not indexed.
Parametersโ
startBlock: string - block to start generating indexesendBlock: string - block to stop generating indexes
Returnsโ
result: object - log bloom index details:
startBlock: string - starting block for the last requested cache generationendBlock: string - ending block for the last requested cache generationcurrentBlock: string - most recent block added to the cacheindexing: boolean - indicates if indexing is in progressboolean - indicates acceptance of the request from this call to generate the cache
curl HTTP request
wscat WS request
JSON result
admin_logsRemoveCacheโ
admin_logsRemoveCacheโRemoves cache files for the specified range of blocks.
Parametersโ
fromBlock: string - integer representing a block number or one of the string tagslatest,earliest, orpending, as described in block parametertoBlock: string - integer representing a block number or one of the string tagslatest,earliest, orpending, as described in block parameter
You can skip a parameter by using an empty string, "". If you specify:
No parameters, the call removes cache files for all blocks.
Only
fromBlock, the call removes cache files for the specified block.Only
toBlock, the call removes cache files from the genesis block to the specified block.
Returnsโ
result: object - Cache Removed status or error.
curl HTTP request
wscat WS request
JSON result
admin_logsRepairCacheโ
admin_logsRepairCacheโRepairs cached logs by fixing all segments starting with the specified block number.
Parametersโ
startBlock: string - decimal index of the starting block to fix; defaults to the head block
Returnsโ
result: object - status of the repair request; Started or Already running
curl HTTP request
wscat WS request
JSON result
admin_nodeInfoโ
admin_nodeInfoโReturns networking information about the node. The information includes general information about the node and specific information from each running Ethereum sub-protocol (for example, eth).
Parametersโ
None
Returnsโ
result: object - node object with the following fields:
enode: string - enode URL of the nodelistenAddr: string - host and port for the nodename: string - client nameid: string - node public keyports: object - peer discovery and listening portsprotocols: object - list of objects containing information for each Ethereum sub-protocol
Note
If the node is running locally, the host of the enode and listenAddr display as [::] in the result. When advertising externally, the external address displayed for the enode and listenAddr is defined by --nat-method.
curl HTTP request
wscat WS request
JSON result
admin_peersโ
admin_peersโReturns networking information about connected remote nodes.
Parametersโ
None
Returnsโ
result: array of objects - list of objects returned for each remote node, with the following fields.
version: string - P2P protocol versionname: string - client namecaps: array of strings - list of Ethereum sub-protocol capabilitiesnetwork: object - local and remote addresses established at time of bonding with the peer (the remote address might not match the hex value forport; it depends on which node initiated the connection.)port: string - port on the remote node on which P2P discovery is listeningid: string - node public key (excluding the0xprefix, the node public key is the ID in the enode URLenode://<id ex 0x>@<host>:<port>.)protocols: object - current state of peer includingdifficultyandhead(headis the hash of the highest known block for the peer.)enode: string - enode URL of the remote nodecurl HTTP request
wscat WS request
JSON result
admin_removePeerโ
admin_removePeerโRemoves a static node.
Parametersโ
enode: string - enode URL of peer to remove
Returnsโ
result: boolean - true if peer removed or false if peer not a static node
curl HTTP request
wscat WS request
JSON result
DEBUG methodsโ
DEBUG methodsโThe DEBUG API methods allow you to inspect and debug the network. The DEBUG API is a more verbose alternative to the TRACE API, and its main purpose is compatibility with tools such as Remix. Where these APIs overlap, we recommend using the TRACE API for production use over the DEBUG API. Specifically, we recommend trace_block over debug_traceBlock, and trace_transaction over debug_traceTransaction.
Note
The DEBUG API methods are not enabled by default for JSON-RPC. To enable the DEBUG API methods, use the --rpc-http-api or --rpc-ws-api options.
debug_accountAtโ
debug_accountAtโReturns account information at the specified index of the specified block.
Parametersโ
blockHashOrNumber: string - block hash or number at which to retrieve account informationtxIndex: number - transaction index at which to retrieve account informationaddress: string - contract or account address for which to retrieve information
Returnsโ
result: object - account details object with the following fields:
code: data - code for the account. Displays0x0if the address is an externally owned account.nonce: quantity - number of transactions made by the account before this onebalance: quantity - balance of the account in Weicodehash: data - code hash for the account
This example uses an externally owned account address for the address parameter.
curl HTTP request
wscat WS request
JSON result
This example uses a contract address for the address parameter.
curl HTTP request
wscat WS request
JSON result
debug_accountRangeโ
debug_accountRangeโRetesteth uses debug_accountRange to implement debugging.
Returns the accounts for a specified block.
Parametersโ
blockHashOrNumber: string - block hash or number at which to retrieve account informationtxIndex: number - transaction index at which to retrieve account informationaddress: string - address hash from which to startlimit: integer - maximum number of account entries to return
Returnsโ
result: object - account details object with the following fields:
addressMap: map of strings to strings - map of address hashes and account addressesnextKey: string - hash of the next address if any addresses remain in the state, otherwise zerocurl HTTP request
wscat WS request
JSON result
debug_batchSendRawTransactionโ
debug_batchSendRawTransactionโSends a list of signed transactions. This is used to quickly load a network with a lot of transactions. This does the same thing as calling eth_sendRawTransaction multiple times.
Parametersโ
data: string - signed transaction data array
Returnsโ
result: array of objects - object returned for each transaction, with the following fields:
index: string - index of the transaction in the request parameters arraysuccess: boolean - indicates whether or not the transaction has been added to the transaction poolerrorMessage: string - (optional) error messagecurl HTTP
wscat WS
JSON result
debug_getBadBlocksโ
debug_getBadBlocksโReturns a list of invalid blocks. This is used to detect and analyze consensus flaws.
Parametersโ
None
Returnsโ
result: array of objects - list of block objects
curl HTTP
wscat WS
JSON result
debug_getRawBlockโ
debug_getRawBlockโReturns the RLP encoding of the specified block.
Parametersโ
blockNumber: string - integer representing a block number or one of the string tags latest, earliest, or pending, as described in block parameter
Returnsโ
result: object - RLP-encoded block object
curl HTTP request
wscat WS request
JSON result
Returns the RLP encoding of the header of specified block.
Parametersโ
blockNumber: string - integer representing a block number or one of the string tags latest, earliest, or pending, as described in block parameter
Returnsโ
result: string - RLP-encoded block header or error
curl HTTP request
wscat WS request
JSON result
debug_metricsโ
debug_metricsโReturns metrics providing information on the internal operation of Besu.
The available metrics might change over time. The JVM metrics might vary based on the JVM implementation used.
The metric types are:
Timer
Counter
Gauge
Parametersโ
None
Returnsโ
result: object - metrics object
curl HTTP request
wscat WS request
JSON result
debug_replayBlockโ
debug_replayBlockโRe-imports the block matching the specified block number, by rolling the head of the local chain back to the block right before the specified block, then importing the specified block.
Parametersโ
blockNumber: string - integer representing a block number or one of the string tags latest, earliest, or pending, as described in block parameter
Returnsโ
result: string - Success or error
curl HTTP request
wscat WS request
JSON result
debug_resyncWorldstateโ
debug_resyncWorldstateโTriggers a re-synchronization of the world state while retaining imported blocks. This is useful if there are world state database inconsistencies (for example, Bonsai database issues).
Parametersโ
None
Returnsโ
result: string - Success or error
curl HTTP request
wscat WS request
JSON result
debug_setHeadโ
debug_setHeadโSets the current head of the local chain to the block matching the specified block number.
Parametersโ
blockNumber: string - integer representing a block number or one of the string tags latest, earliest, or pending, as described in block parameter
Returnsโ
result: string - Success or error
curl HTTP request
wscat WS request
JSON result
debug_standardTraceBlockToFileโ
debug_standardTraceBlockToFileโGenerates files containing the block trace. A separate file is generated for each transaction in the block.
You can also specify a trace file for a specific transaction in a block.
Use debug_standardTraceBadBlockToFile to view the trace for an invalid block.
Parametersโ
blockHash: string - block hash
txHash: string - (optional) transaction hash; if omitted, a trace file is generated for each transaction in the block.
disableMemory: boolean - (optional) specifies whether to capture EVM memory during the trace; defaults to true
Returnsโ
result: string - location of the generated trace files
curl HTTP request
wscat WS request
JSON result
debug_standardTraceBadBlockToFileโ
debug_standardTraceBadBlockToFileโGenerates files containing the block trace of invalid blocks. A separate file is generated for each transaction in the block.
Use debug_standardTraceBlockToFile to view the trace for a valid block.
Parametersโ
blockHash: string - block hash
Returnsโ
result: string - location of the generated trace files
curl HTTP request
wscat WS request
JSON result
debug_storageRangeAtโ
debug_storageRangeAtโRemix uses debug_storageRangeAt to implement debugging. Use the Debugger tab in Remix instead of calling debug_storageRangeAt directly.
Returns the contract storage for the specified range.
Parametersโ
blockHash: string - block hashtxIndex: number - transaction index from which to startaddress: string - contract addressstartKey: string - start keylimit: number - number of storage entries to return
Returnsโ
result: object - range object.
curl HTTP request
wscat WS request
JSON result
curl HTTP request
wscat WS request
JSON result
debug_traceBlockโ
debug_traceBlockโReturns full trace of all invoked opcodes of all transactions included in the block.
Parametersโ
block: string - RLP of the blockoptions: object - request options object with the following fields (all optional and default tofalse):disableStorage: boolean -truedisables storage capture.disableMemory: boolean -truedisables memory capture.disableStack: boolean -truedisables stack capture.
Returnsโ
result: object - trace object
curl HTTP request
wscat WS request
JSON result
debug_traceBlockByHashโ
debug_traceBlockByHashโReturns full trace of all invoked opcodes of all transactions included in the block.
Parametersโ
blockHash: string - block hashoptions: object - request options object with the following fields (all optional and default tofalse):disableStorage: boolean -truedisables storage capture.disableMemory: boolean -truedisables memory capture.disableStack: boolean -truedisables stack capture.
Returnsโ
result: array of objects - list of trace objects
curl HTTP request
wscat WS request
JSON result
debug_traceBlockByNumberโ
debug_traceBlockByNumberโReturns full trace of all invoked opcodes of all transactions included in the block.
Parametersโ
blockNumber: string - integer representing a block number or one of the string tagslatest,earliest, orpending, as described in block parameteroptions: object - request options object with the following fields (all optional and default tofalse):disableStorage: boolean -truedisables storage capture.disableMemory: boolean -truedisables memory capture.disableStack: boolean -truedisables stack capture.
Returnsโ
result: array of objects - list of trace objects
curl HTTP request
wscat WS request
JSON result
ETH methodsโ
ETH methodsโThe ETH API methods allow you to interact with the blockchain.
Note
Methods with an equivalent GraphQL query include a GraphQL request and result in the method example. The parameter and result descriptions apply to the JSON-RPC requests. The GraphQL specification is defined in the schema.
eth_accountsโ
eth_accountsโReturns a list of account addresses a client owns.
Parametersโ
None
Returnsโ
result: array of strings - list of 20-byte account addresses owned by the client
curl HTTP request
wscat WS request
JSON result
eth_blockNumberโ
eth_blockNumberโReturns the index corresponding to the block number of the current chain head.
Parametersโ
None
Returnsโ
result: string - hexadecimal integer representing the index corresponding to the block number of the current chain head
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_callโ
eth_callโInvokes a contract function locally and does not change the state of the blockchain.
You can interact with contracts using eth_sendRawTransaction or eth_call.
If revert reason is enabled with --revert-reason-enabled, the eth_call error response includes the revert reason.
Parametersโ
call: object - transaction call object
blockNumber or blockHash: string - integer representing a block number, block hash, or one of the string tags latest, earliest, or pending, as described in block parameter
Note
By default, eth_call does not fail if the sender account has an insufficient balance. This is done by setting the balance of the account to a large amount of ether. To enforce balance rules, set the strict parameter in the transaction call object to true.
Returnsโ
result: string - return value of the executed contract
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
Example of a simulated contract creation
The following example creates a simulated contract by not including the to parameter from the transaction call object in the call parameter. Besu simulates the data to create the contract.
curl HTTP
JSON result
eth_chainIdโ
eth_chainIdโReturns the chain ID.
Parametersโ
None
Returnsโ
result: string - chain ID in hexadecimal
curl HTTP request
wscat WS request
JSON result
eth_coinbaseโ
eth_coinbaseโReturns the client coinbase address. The coinbase address is the account to pay mining rewards to.
To set a coinbase address, start Besu with the --miner-coinbase option set to a valid Ethereum account address. You can get the Ethereum account address from a client such as MetaMask or Bitrock Scan. For example:
Example
Parametersโ
None
Returnsโ
result: string - coinbase address
curl HTTP request
wscat WS request
JSON result
eth_createAccessListโ
eth_createAccessListโCreates an EIP-2930 access list that you can include in a transaction.
Parametersโ
transaction: object - transaction call object
blockNumber or blockHash: string - integer representing a block number, block hash, or one of the string tags latest, earliest, or pending, as described in block parameter.
Returnsโ
result: object - access list object with the following fields:
accessList: array of objects - list of objects with the following fields:address: string - addresses to be accessed by the transactionstorageKeys: array - storage keys to be accessed by the transaction
gasUsed: string - approximate gas cost for the transaction if the access list is includedcurl HTTP
wscat WS
JSON result
eth_estimateGasโ
eth_estimateGasโReturns an estimate of the gas required for a transaction to complete. The estimation process does not use gas and the transaction is not added to the blockchain. The resulting estimate can be greater than the amount of gas the transaction ends up using, for reasons including EVM mechanics and node performance.
The eth_estimateGas call does not send a transaction. You must call eth_sendRawTransaction to execute the transaction.
If revert reason is enabled with --revert-reason-enabled, the eth_estimateGas error response includes the revert reason.
Parametersโ
For eth_estimateGas, all fields are optional because setting a gas limit is irrelevant to the estimation process (unlike transactions, in which gas limits apply).
call: object - transaction call object
Returnsโ
result: string - amount of gas used
The following example returns an estimate of 21000 wei (0x5208) for the transaction.
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
The following example request estimates the cost of deploying a simple storage smart contract to the network. The data field contains the hash of the compiled contract you want to deploy. (You can get the compiled contract hash from your IDE, for example, Remix > Compile tab > details > WEB3DEPLOY.) The result is 113355 wei.
curl HTTP request
JSON result
eth_feeHistoryโ
eth_feeHistoryโReturns base fee per gas and transaction effective priority fee per gas history for the requested block range, allowing you to track trends over time.
Parametersโ
blockCount: integer or string - Number of blocks in the requested range. Between 1 and 1024 blocks can be requested in a single query. If blocks in the specified block range are not available, then only the fee history for available blocks is returned. Accepts hexadecimal or integer values.newestBlock: string - Integer representing the highest number block of the requested range or one of the string tagslatest,earliest, orpending, as described in block parameter.arrayofintegers- (optional) A monotonically increasing list of percentile values to sample from each block's effective priority fees per gas in ascending order, weighted by gas used.
Returnsโ
result: object - Fee history results object.
curl HTTP
wscat WS
JSON result
eth_gasPriceโ
eth_gasPriceโReturns a percentile gas unit price for the most recent blocks, in Wei. By default, the last 100 blocks are examined and the 50th percentile gas unit price (that is, the median value) is returned.
If there are no blocks, the value for --min-gas-price is returned. The value returned is restricted to values between --min-gas-price and --api-gas-price-max. By default, 1000 Wei and 500GWei.
Use the --api-gas-price-blocks, --api-gas-price-percentile , and --api-gas-price-max command line options to configure the eth_gasPrice default values.
Parametersโ
None
Returnsโ
result: string - percentile gas unit price for the most recent blocks, in Wei, as a hexadecimal value
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getBalanceโ
eth_getBalanceโReturns the account balance of the specified address.
Parametersโ
address: string - 20-byte account address from which to retrieve the balanceblockNumberorblockHash: string - integer representing a block number, block hash, or one of the string tagslatest,earliest, orpending, as described in block parameter
Returnsโ
result: string - current balance, in Wei, as a hexadecimal value
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getBlockByHashโ
eth_getBlockByHashโReturns information about the block matching the specified block hash.
Parametersโ
hash: string - 32-byte hash of a blockverbose: boolean - iftrue, returns the full transaction objects; iffalse, returns the transaction hashes
Returnsโ
result: object - block object, or null when there is no block
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getBlockByNumberโ
eth_getBlockByNumberโReturns information about the block matching the specified block number.
Parametersโ
blockNumber: string - integer representing a block number or one of the string tagslatest,earliest,pending,finalized, orsafeas described in block parameterverbose: boolean - iftrue, returns the full transaction objects; iffalse, returns only the hashes of the transactions.
Returnsโ
result: object - block object, or null when there is no block.
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getBlockTransactionCountByHashโ
eth_getBlockTransactionCountByHashโReturns the number of transactions in the block matching the specified block hash.
Parametersโ
hash: string - 32-byte block hash
Returnsโ
result: number - integer representing the number of transactions in the specified block, or null if no matching block hash is found
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getBlockTransactionCountByNumberโ
eth_getBlockTransactionCountByNumberโReturns the number of transactions in a block matching the specified block number.
Parametersโ
blockNumber: string - integer representing a block number or one of the string tags latest, earliest, or pending, as described in block parameter
Returnsโ
result: string - integer representing the number of transactions in the specified block, or null if no matching block number is found
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getCodeโ
eth_getCodeโReturns the code of the smart contract at the specified address. Besu stores compiled smart contract code as a hexadecimal value.
Parametersโ
address: string - 20-byte contract address
blockNumber or blockHash: string - integer representing a block number, block hash, or one of the string tags latest, earliest, or pending, as described in block parameter
Returnsโ
result: data - code stored at the specified address
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getFilterChangesโ
eth_getFilterChangesโPolls the specified filter and returns an array of changes that have occurred since the last poll.
Parametersโ
filterId: string - filter ID
Returnsโ
result: array of strings or objects - if nothing changed since the last poll, an empty list; otherwise:
For filters created with
eth_newBlockFilter, returns block hashes.For filters created with
eth_newPendingTransactionFilter, returns transaction hashes.For filters created with
eth_newFilter, returns log objects.curl HTTP request
wscat WS request
JSON result
eth_getFilterLogsโ
eth_getFilterLogsโReturns an array of logs for the specified filter.
Leave the --auto-log-bloom-caching-enabled command line option at the default value of true to improve log retrieval performance.
Note
eth_getFilterLogs is only used for filters created with eth_newFilter. To specify a filter object and get logs without creating a filter, use eth_getLogs.
Parametersโ
filterId: string - filter ID
Returnsโ
result: array of objects - list of log objects
curl HTTP request
wscat WS request
JSON result
eth_getLogsโ
eth_getLogsโReturns an array of logs matching a specified filter object.
Leave the --auto-log-bloom-caching-enabled command line option at the default value of true to improve log retrieval performance.
caution
Using eth_getLogs to get logs from a large range of blocks, especially an entire chain from its genesis block, might cause Besu to hang for an indeterminable amount of time while generating the response. We recommend setting a range limit using the --rpc-max-logs-range option (or leaving it at its default value of 1000).
Parametersโ
filterOptions: object - filter options object
Returnsโ
result: array of objects - list of log objects
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getMinerDataByBlockHashโ
eth_getMinerDataByBlockHashโReturns miner data for the specified block.
Parametersโ
hash: string - 32-byte block hash
Returnsโ
result: object - miner data object
curl HTTP
wscat WS
JSON result
eth_getMinerDataByBlockNumberโ
eth_getMinerDataByBlockNumberโReturns miner data for the specified block.
Parametersโ
blockNumber: string - integer representing a block number or one of the string tags latest, earliest, or pending, as described in block parameter
Returnsโ
result: object - miner data object
curl HTTP
wscat WS
JSON result
eth_getProofโ
eth_getProofโReturns the account and storage values of the specified account, including the Merkle proof.
The API allows IoT devices or mobile apps which are unable to run light clients to verify responses from untrusted sources, by using a trusted block hash.
Parametersโ
address: string - 20-byte address of the account or contract
keys: array of strings - list of 32-byte storage keys to generate proofs for
blockNumber or blockHash: string - integer representing a block number, block hash, or one of the string tags latest, earliest, or pending, as described in block parameter
Returnsโ
result: object - account details object with the following fields:
balance: string - account balancecodeHash: string - 32-byte hash of the account codenonce: string - number of transactions sent from the accountstorageHash: string - 32-byte SHA3 of thestorageRootaccountProof: array of strings - list of RLP-encoded Merkle tree nodes, starting with thestateRootstorageProof: array of objects - list of storage entry objects with the following fields:key: string - storage keyvalue: string - storage valueproof: array of strings - list of RLP-encoded Merkle tree nodes, starting with thestorageHash
curl HTTP
wscat WS
JSON result
eth_getStorageAtโ
eth_getStorageAtโReturns the value of a storage position at a specified address.
Parametersโ
address: string - 20-byte storage address
index: string - integer index of the storage position
blockNumber or blockHash: string - integer representing a block number, block hash, or one of the string tags latest, earliest, or pending, as described in block parameter
Returnsโ
result : string - value at the specified storage position
Calculating the correct position depends on the storage you want to retrieve.
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getTransactionByBlockHashAndIndexโ
eth_getTransactionByBlockHashAndIndexโReturns transaction information for the specified block hash and transaction index position.
Parametersโ
block: string - 32-byte hash of a block
index: string - integer representing the transaction index position
Returnsโ
result: object - transaction object, or null when there is no transaction
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getTransactionByBlockNumberAndIndexโ
eth_getTransactionByBlockNumberAndIndexโReturns transaction information for the specified block number and transaction index position.
Parametersโ
blockNumber: string - integer representing a block number or one of the string tags latest, earliest, or pending, as described in block parameter
index: string - transaction index position
Returnsโ
result: object - transaction object, or null when there is no transaction
This request returns the third transaction in the 82990 block on the Bitrock Chain. You can also view this block and transaction on Bitrock Scan.
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getTransactionByHashโ
eth_getTransactionByHashโReturns transaction information for the specified transaction hash.
Parametersโ
transaction: string - 32-byte transaction hash
Returnsโ
result: object - transaction object, or null when there is no transaction
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getTransactionCountโ
eth_getTransactionCountโReturns the number of transactions sent from a specified address. Use the pending tag to get the next account nonce not used by any pending transactions.
Parametersโ
address: string - 20-byte account address
blockNumber or blockHash: string - integer representing a block number, block hash, or one of the string tags latest, earliest, or pending, as described in block parameter
Returnsโ
result: string - integer representing the number of transactions sent from the specified address
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getTransactionReceiptโ
eth_getTransactionReceiptโReturns the receipt of a transaction by transaction hash. Receipts for pending transactions are not available.
If you enabled revert reason, the receipt includes available revert reasons in the response.
Parametersโ
transaction: string - 32-byte hash of a transaction
Returnsโ
result: object - transaction receipt object, or null when there is no receipt
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getUncleByBlockHashAndIndexโ
eth_getUncleByBlockHashAndIndexโReturns uncle specified by block hash and index.
Parametersโ
block: string - 32-byte block hash
uncleIndex: string - index of the uncle
Returnsโ
result: object - block object
note
Uncles don't contain individual transactions.
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getUncleByBlockNumberAndIndexโ
eth_getUncleByBlockNumberAndIndexโReturns uncle specified by block number and index.
Parametersโ
blockNumber: string - integer representing a block number or one of the string tagslatest,earliest, orpending, as described in block parameteruncleIndex: string - index of the uncle
Returnsโ
result: object - block object
note
Uncles do not contain individual transactions.
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getUncleCountByBlockHashโ
eth_getUncleCountByBlockHashโReturns the number of uncles in a block from a block matching the given block hash.
Parametersโ
block: string - 32-byte block hash
Returnsโ
result: string - integer representing the number of uncles in the specified block
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getUncleCountByBlockNumberโ
eth_getUncleCountByBlockNumberโReturns the number of uncles in a block matching the specified block number.
Parametersโ
blockNumber: string - integer representing a block number or one of the string tags latest, earliest, or pending, as described in block parameter
Returnsโ
result: string - integer representing the number of uncles in the specified block
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_getWorkโ
eth_getWorkโReturns the hash of the current block, the seed hash, and the required target boundary condition.
Parametersโ
None
Returnsโ
result: array of strings - array with the following items:
header: string - 32-byte hash of the current block header (PoW-hash)seed: string - 32-byte seed hash used for the DAGtarget: string - 32-byte required target boundary condition: 2^256 / difficultyblockNumber: string - hexadecimal integer representing the current block numbercurl HTTP request
wscat WS request
JSON result
eth_hashrateโ
eth_hashrateโReturns the number of hashes per second with which the node is mining.
When the stratum server is enabled, this method returns the cumulative hashrate of all sealers reporting their hashrate.
Parametersโ
None
Returnsโ
result: string - number of hashes per second
curl HTTP request
wscat WS request
JSON result
eth_miningโ
eth_miningโWhether the client is actively mining new blocks. Besu pauses mining while the client synchronizes with the network regardless of command settings or methods called.
Parametersโ
None
Returnsโ
result: boolean - indicates if the client is actively mining new blocks
curl HTTP request
wscat WS request
JSON result
eth_newBlockFilterโ
eth_newBlockFilterโCreates a filter to retrieve new block hashes. To poll for new blocks, use eth_getFilterChanges.
Parametersโ
None
Returnsโ
result: string - filter ID
curl HTTP request
wscat WS request
JSON result
eth_newFilterโ
eth_newFilterโCreates a log filter. To poll for logs associated with the created filter, use eth_getFilterChanges. To get all logs associated with the filter, use eth_getFilterLogs.
Parametersโ
filterOptions: object - filter options object
note
fromBlock and toBlock in the filter options object default to latest.
Returnsโ
result: string - filter ID
curl HTTP request
wscat WS request
JSON result
eth_newPendingTransactionFilterโ
eth_newPendingTransactionFilterโCreates a filter to retrieve new pending transactions hashes. To poll for new pending transactions, use eth_getFilterChanges.
Parametersโ
None
Returnsโ
result: string - filter ID
curl HTTP request
wscat WS request
JSON result
eth_protocolVersionโ
eth_protocolVersionโReturns current Ethereum protocol version.
Parametersโ
None
Returnsโ
result: string - Ethereum protocol version
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_sendRawTransactionโ
eth_sendRawTransactionโSends a signed transaction. A transaction can send ether, deploy a contract, or interact with a contract. Set the maximum transaction fee for transactions using the --rpc-tx-feecap CLI option.
You can interact with contracts using eth_sendRawTransaction or eth_call.
To avoid exposing your private key, create signed transactions offline and send the signed transaction data using eth_sendRawTransaction.
Parametersโ
transaction: string - signed transaction serialized to hexadecimal format
Returnsโ
result: string - 32-byte transaction hash
curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_submitHashrateโ
eth_submitHashrateโSubmits the mining hashrate. This is used by mining software such as Ethminer.
Parametersโ
hashrate: string - 32-byte hexadecimal string representation of the hashrateid: string - 32-byte random hexadecimal ID identifying the client
Returnsโ
result: boolean - indicates if submission is successful
curl HTTP request
wscat WS request
JSON result
eth_submitWorkโ
eth_submitWorkโSubmits a proof of work (Ethash) solution. This is used by mining software such as Ethminer.
Parametersโ
nonce: string - retrieved 8-byte nonceheader: string - 32-byte hash of the block header (PoW-hash)digest: string - 32-bytes mix digest
Returnsโ
result: boolean - indicates if the provided solution is valid
curl HTTP request
wscat WS request
JSON result
eth_syncingโ
eth_syncingโReturns an object with data about the synchronization status, or false if not synchronizing.
note
Once the node reaches the head of the chain, eth_syncing returns false, indicating that there is no active syncing target.
Parametersโ
None
Returnsโ
result: object or boolean - synchronization status data object with the following fields, or false if not synchronizing:
startingBlock: string - index of the highest block on the blockchain when the network synchronization startscurrentBlock: string - index of the latest block (also known as the best block) for the current node (this is the same index thateth_blockNumberreturns.)highestBlock: string - index of the highest known block in the peer network (that is, the highest block so far discovered among peer nodes. This is the same value ascurrentBlockif the current node has no peers.)pulledStates: string - if fast synchronizing, the number of state entries fetched so far, ornullif this is not known or not relevant (if full synchronizing or fully synchronized, this field is not returned.)knownStates: string - if fast synchronizing, the number of states the node knows of so far, ornullif this is not known or not relevant (if full synchronizing or fully synchronized, this field is not returned.)curl HTTP
wscat WS
JSON result
curl GraphQL
GraphQL
GraphQL result
eth_uninstallFilterโ
eth_uninstallFilterโUninstalls a filter with the specified ID. When a filter is no longer required, call this method.
Filters time out when not requested by eth_getFilterChanges or eth_getFilterLogs for 10 minutes.
Parametersโ
filterId: string - filter ID
Returnsโ
result: boolean - indicates if the filter is successfully uninstalled
curl HTTP request
wscat WS request
JSON result
MINER methodsโ
MINER methodsโThe MINER API methods allow you to control the nodeโs mining operation.
note
The MINER API methods are not enabled by default for JSON-RPC. To enable the MINER API methods, use the --rpc-http-api or --rpc-ws-api options.
miner_changeTargetGasLimitโ
miner_changeTargetGasLimitโUpdates the target gas limit set using the --target-gas-limit command line option.
Parametersโ
gasPrice: number - target gas price in Wei
Returnsโ
result: string - Success or error
curl HTTP request
wscat WS request
JSON result
miner_setCoinbaseโ
miner_setCoinbaseโSets the Coinbase, the address for the mining rewards.
note
You can also use miner_setEtherbase as an alternative method. They both work the same way. Etherbase is a historic name for Coinbase.
Parametersโ
coinbase: string - Account address you pay mining rewards to
Returnsโ
result: boolean - true when address is set
curl HTTP request
wscat WS request
JSON result
miner_startโ
miner_startโStarts the mining process. To start mining, you must first specify a miner coinbase using the --miner-coinbase command line option or using miner_setCoinbase.
Parametersโ
None
Returnsโ
result: boolean - true if mining starts, or if the node is already mining
curl HTTP request
wscat WS request
JSON result
miner_stopโ
miner_stopโStops the mining process on the client.
Parametersโ
None
Returnsโ
result: boolean - true if mining stops, or if the node is not mining
curl HTTP request
wscat WS request
JSON result
NET methodsโ
NET methodsโThe NET API methods provide network-related information.
net_enodeโ
net_enodeโReturns the enode URL.
Parametersโ
None
Returnsโ
result: string - enode URL of the node
curl HTTP request
wscat WS request
JSON result
net_listeningโ
net_listeningโWhether the client is actively listening for network connections.
Parametersโ
None
Returnsโ
result: boolean - indicates if the client is actively listening for network connections
curl HTTP request
wscat WS request
JSON result
net_peerCountโ
net_peerCountโReturns the number of peers currently connected to the client.
Parametersโ
None
Returnsโ
result: string - number of connected peers in hexadecimal
curl HTTP request
wscat WS request
JSON result
TXPOOL methodsโ
TXPOOL methodsโThe TXPOOL API methods allow you to inspect the contents of the transaction pool.
note
The TXPOOL API methods are not enabled by default for JSON-RPC. To enable the TXPOOL API methods, use the --rpc-http-api or --rpc-ws-api options.
txpool_besuPendingTransactionsโ
txpool_besuPendingTransactionsโLists pending transactions that match the supplied filter conditions.
Parametersโ
numResults: number - integer representing the maximum number of results to returnfields: object - object of fields used to create the filter condition
Each field in the object corresponds to a field name containing an operator, and a value for the operator. A field name can only be specified once, and can only contain one operator. For example, you cannot query transactions with a gas price between 8 and 9 Gwei by using both the gt and lt operator in the same field name instance.
All filters must be satisfied for a transaction to be returned.
from
Address of the sender.
Data, 20 bytes
eq
to
Address of the receiver, or "contract_creation".
Data, 20 bytes
eq, action
gas
Gas provided by the sender.
Quantity
eq, gt, lt
gasPrice
Gas price, in wei, provided by the sender.
Quantity
eq, gt, lt
value
Value transferred, in wei.
Quantity
eq, gt, lt
nonce
Number of transactions made by the sender.
Quantity
eq, gt, lt
Supported operators:
eq(equal to)lt(less than)gt(greater than)action
note
The only supported action is "contract_creation".
Returnsโ
result: array of objects - list of objects with details of the pending transaction
curl HTTP request
wscat WS request
JSON result
txpool_besuStatisticsโ
txpool_besuStatisticsโLists statistics about the node transaction pool.
Parametersโ
None
Returnsโ
result: object - transaction pool statistics object with the following fields:
maxSize: number - maximum number of transactions kept in the transaction pool; use the--tx-pool-max-sizeoption to configure the maximum size.localCount: number - number of transactions submitted directly to this noderemoteCount: number - number of transactions received from remote nodescurl HTTP request
wscat WS request
JSON result
txpool_besuTransactionsโ
txpool_besuTransactionsโLists transactions in the node transaction pool.
Parametersโ
None
Returnsโ
result: array of objects - list of transactions
curl HTTP request
wscat WS request
JSON result
WEB3 methodsโ
WEB3 methodsโThe WEB3 API methods provide functionality for the Ethereum ecosystem.
web3_clientVersionโ
web3_clientVersionโReturns the current client version.
Parametersโ
None
Returnsโ
result: string - current client version
curl HTTP request
wscat WS request
JSON result
web3_sha3โ
web3_sha3โReturns a SHA3 hash of the specified data. The result value is a Keccak-256 hash, not the standardized SHA3-256.
Parametersโ
data: string - data to convert to a SHA3 hash
Returnsโ
result: string - SHA3 result of the input data
curl HTTP request
wscat WS request
JSON result
Miscellaneous methodsโ
rpc_modulesโ
rpc_modulesโLists enabled APIs and the version of each.
Parametersโ
None
Returnsโ
result: map of strings to strings - enabled APIs and their versions
curl HTTP request
wscat WS request
JSON result
Last updated