- Overview
- Bitcoin
- Transaction
- Block
- Chain
- Memory Pool
- Ethereum
- ETH Methods
- Returns array of all accounts owned by the client.
- Returns the number of most recent block.
- Executes a new message call immediately without creating a transaction on the block chain.
- Returns the current gas price in the default EVM denomination parameter.
- Returns the balance of the account of given address.
- Returns information about a block by hash.
- Returns information about a block by block number.
- Returns the number of transactions sent from an address.
- Returns the number of transactions in a block from a block matching the given block hash.
- Returns code at a given address.
- Polling method for a filter, which returns an array of logs which occurred since last poll.
- Returns an array of all logs matching filter with given id.
- Returns an array of all logs matching a given filter object.
- Returns the value from a storage position at a given address.
- Returns information about a transaction by block hash and transaction index position.
- Returns information about a transaction by block number and transaction index position.
- Returns the information about a transaction requested by transaction hash.
- Returns the value from a storage position at a given address.
- Returns the receipt of a transaction by transaction hash.
- Returns information about a uncle of a block by hash and uncle index position.
- Returns information about a uncle of a block by number and uncle index position.
- Returns the number of transactions in a block matching the given block number.
- Returns the number of uncles in a block from a block matching the given block number.
- Creates a filter in the node, to notify when a new block arrives.
- Creates a filter object, based on filter options, to notify when the state changes (logs).
- Creates a filter in the node, to notify when new pending transactions arrive.
- Returns the current ethereum protocol version.
- Creates new message call transaction or a contract creation for signed transactions.
- Creates new message call transaction or a contract creation, if the data field contains code.
- The sign method calculates an Ethereum specific signature with: sign(keccak256("\x19Ethereum Signed Message:\n" + len(message) + message))).
- 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.
- Uninstalls a filter with given id. Should always be called when watch is no longer needed.
- Net Methods
- Web3 Methods
Returns various information about the TX mempool.
GET
/mempool/info.json
memory-pool
Last modified:2024-05-27 22:00:31
Request
None
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/mempool/info.json'
Responses
🟢200successful operation
application/json
Body
size
integer <int64>
optional
bytes
integer <int64>
optional
usage
integer <int64>
optional
maxmempool
integer <int64>
optional
mempoolminfee
number <float>
optional
minrelaytxfee
number <float>
optional
Example
{
"size": 0,
"bytes": 0,
"usage": 0,
"maxmempool": 0,
"mempoolminfee": 0,
"minrelaytxfee": 0
}
Modified at 2024-05-27 22:00:31