txpool
txpool_content
POST
/
id
jsonrpc
method
params
curl --request POST \
--url https://rpc1.taurus.axiomesh.io/
Returns all pending and queued transactions in the txpool.
Body
id
number
Serves as a unique identifier for the request
jsonrpc
string
Indicates the version of JSON-RPC being used
method
string
Represents the name of the remote procedure or method to be called
params
array
Contains the list of parameters passed to the remote method
Response
id
number
Returns unique identifier for the request
jsonrpc
string
Returns the version of JSON-RPC being used
contentResponse
object
A list of pending and queued transactions in txpool
curl 'https://example-rpc.axiomesh.io' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "txpool_content",
"params": [],
"id": 1
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"pending": {
"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC": {
"16": {
"blockHash": null,
"blockNumber": null,
"from": "0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc",
"gas": "0x493e0",
"gasPrice": "0x9184e72a000",
"hash": "0x21a1839ca42bdc52043d627080ca825ac6a41a0a4b546bdcf32d2641e3c53e28",
"input": "0x3131",
"nonce": "0x10",
"to": "0x14dc79964da2c08b23698b3d3cc7ca32193d9955",
"transactionIndex": null,
"value": "0x0",
"type": "0x0",
"incentiveAddress": "0x0000000000000000000000000000000000000000",
"v": "0x25",
"r": "0x42adc53611a96cb5d09f2ffc9e0d8fd411d40d03eede8cd2ee8bf2c65db948ac",
"s": "0xe2d07d7c8fe328fa0f3dfb294b4bbb93ede3262fa53b928ee7665b5c2740dae"
}
},
"0xa0Ee7A142d267C1f36714E4a8F75612F20a79720": {
"11": {
"blockHash": null,
"blockNumber": null,
"from": "0xa0ee7a142d267c1f36714e4a8f75612f20a79720",
"gas": "0x493e0",
"gasPrice": "0x9184e72a000",
"hash": "0x98a6c8c31aa14785c8347826c7a099857306de383c3044997acb21cd4c12455b",
"input": "0x3131",
"nonce": "0xb",
"to": "0x70997970c51812dc3a010c7d01b50e0d17dc79c8",
"transactionIndex": null,
"value": "0x0",
"type": "0x0",
"incentiveAddress": "0x0000000000000000000000000000000000000000",
"v": "0x25",
"r": "0xc05c8cdd474dc32c6e3bba2d6bb4792e042fec9c4ab115a839c5a1f5d42941e8",
"s": "0x4925c23b1f62c139d3aed438f20e26191e19bf5568cd8a0526b8ad529d4c8a99"
}
}
},
"queued": {},
"txCountLimit": 50000,
"txCount": 2,
"readyTxCount": 2,
"notReadyTxCount": 0
}
}
curl 'https://example-rpc.axiomesh.io' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "txpool_content",
"params": [],
"id": 1
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"pending": {
"0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC": {
"16": {
"blockHash": null,
"blockNumber": null,
"from": "0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc",
"gas": "0x493e0",
"gasPrice": "0x9184e72a000",
"hash": "0x21a1839ca42bdc52043d627080ca825ac6a41a0a4b546bdcf32d2641e3c53e28",
"input": "0x3131",
"nonce": "0x10",
"to": "0x14dc79964da2c08b23698b3d3cc7ca32193d9955",
"transactionIndex": null,
"value": "0x0",
"type": "0x0",
"incentiveAddress": "0x0000000000000000000000000000000000000000",
"v": "0x25",
"r": "0x42adc53611a96cb5d09f2ffc9e0d8fd411d40d03eede8cd2ee8bf2c65db948ac",
"s": "0xe2d07d7c8fe328fa0f3dfb294b4bbb93ede3262fa53b928ee7665b5c2740dae"
}
},
"0xa0Ee7A142d267C1f36714E4a8F75612F20a79720": {
"11": {
"blockHash": null,
"blockNumber": null,
"from": "0xa0ee7a142d267c1f36714e4a8f75612f20a79720",
"gas": "0x493e0",
"gasPrice": "0x9184e72a000",
"hash": "0x98a6c8c31aa14785c8347826c7a099857306de383c3044997acb21cd4c12455b",
"input": "0x3131",
"nonce": "0xb",
"to": "0x70997970c51812dc3a010c7d01b50e0d17dc79c8",
"transactionIndex": null,
"value": "0x0",
"type": "0x0",
"incentiveAddress": "0x0000000000000000000000000000000000000000",
"v": "0x25",
"r": "0xc05c8cdd474dc32c6e3bba2d6bb4792e042fec9c4ab115a839c5a1f5d42941e8",
"s": "0x4925c23b1f62c139d3aed438f20e26191e19bf5568cd8a0526b8ad529d4c8a99"
}
}
},
"queued": {},
"txCountLimit": 50000,
"txCount": 2,
"readyTxCount": 2,
"notReadyTxCount": 0
}
}