post https://ckb-mirana.unifra.io/v1/
Returns the transaction pool information.
Parameters
- none
Returns
The info of TxPool.
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": "tx_pool_info",
"params": []
}'
Result
{
"jsonrpc": "2.0",
"result": {
"last_txs_updated_at": "0x0",
"min_fee_rate": "0x3e8",
"orphan": "0x0",
"pending": "0xd",
"proposed": "0x0",
"tip_hash": "0xa8fd32feb3256c3e41defebebed313b09a2135d42332e8542ff475881a7cdf65",
"tip_number": "0x7ff6b2",
"total_tx_cycles": "0x3007acb",
"total_tx_size": "0x1a7f8"
},
"id": 42
}