txpool_content
Returns the exact details of all transactions currently pending for inclusion in the next block as well as scheduled for future execution.
Parameters
Returns
Request
{
"jsonrpc": "2.0",
"method": "txpool_content",
"params": [],
"id": 1
}
Response
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"pending": {
"0x407d73d8a49eeb85d32cf465507dd71d507100c1": {
"0": {
"blockHash": null,
"blockNumber": null,
"from": "0x407d73d8a49eeb85d32cf465507dd71d507100c1",
"gas": "0x76c0",
"gasPrice": "0x2540be400",
"hash": "0x88df016429689c079f3b2f6ad39fa052532c56795b733da78a91ebe6a713944b",
"input": "0x",
"nonce": "0x0",
"to": "0x87265f0e8b7b9b5f7e1a8e4d2c6f9a1b3e8d7c6a",
"transactionIndex": null,
"value": "0xde0b6b3a7640000"
}
}
},
"queued": {}
}
}
Last updated