post https://ckb-mirana.unifra.io/v1/
Returns all transaction ids in tx pool as a json array of string transaction ids.
Parameters
- verbose - True for a json object, false for array of transaction ids, default=false.
Returns
null
Example
Request
curl --location --request POST 'https://ckb-mirana.unifra.io/v1/4fb36720a57340d39aee4cf68511064a' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": 42,
"jsonrpc": "2.0",
"method": "get_raw_tx_pool",
"params": [true]
}'
Result
{
"jsonrpc": "2.0",
"result": {
"pending": {},
"proposed": {}
},
"id": 42
}