txpool_status

Returns the number of transactions in pending and queued states (Supported only on Geth). The API credit value for this method is 100.

  1. Parameters- This method does not accept any parameters

curl https://Krypc-End Point URL/ \
-X POST \
-H "Content-Type: application/json" \
--data '{"method":"txpool_status","params":[],"id":1,"jsonrpc":"2.0"}'
  1. Returns

    object-The transaction call object which contains the following fields:

  • pending The total number of pending transactions in the txpool, represented in hexadecimal format

  • queued The total number of queued transactions in the txpool, represented in hexadecimal format

Last updated