txpool_status
can be queried for 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.
None
Type | Description |
---|---|
int | The number of pending transactions. |
int | The number of queued transactions. |
// Request
curl -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"txpool_status","id":1}' https://klaytn.blockpi.network/v1/rpc/your-api-key
// Result
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"pending": "0x7",
"queued": "0x0"
}
}
Last modified 10mo ago