getrawmempool

Returns all transaction ids in memory pool as a json array of string transaction ids.

Hint: use getmempoolentry to fetch a specific transaction from the mempool.

This method will use 10 Compute Units.


Reference: Here

Parameters

verbose - boolean, optional, default=false

True for a json object, false for array of transaction ids

mempool_sequence - boolean, optional, default=false

If verbose=false, returns a json object with transaction list and mempool sequence number attached.

Returns (for verbose = false)

[           (json array)
  "hex",    (string) The transaction id
  ...
]

Returns (for verbose = true)

Result (for verbose = false and mempool_sequence = true)

Last updated

Was this helpful?