getmempoolinfo - Litecoin

Example code for the getmempoolinfo JSON-RPC method. Complete guide on how to use getmempoolinfo JSON-RPC in GetBlock Web3 documentation.

Returns details on the active state of the TX memory pool.

Parameters

  • None

Request examples

cURL
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "getmempoolinfo",
    "params": [],
    "id": "getblock.io"
}'

Response

{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": {
        "loaded": true,
        "size": 1234,
        "bytes": 567890,
        "usage": 1234567,
        "maxmempool": 300000000,
        "mempoolminfee": 0.00001000,
        "minrelaytxfee": 0.00001000
    }
}

Response Parameters

Field
Type
Description

size

number

Current tx count in mempool.

bytes

number

Sum of all tx sizes.

usage

number

Total memory usage.

mempoolminfee

number

Minimum fee rate for tx to be accepted.

Use Case

circle-info

The getmempoolinfo method is essential for:

  • Mempool monitoring

  • Fee estimation

  • Network congestion analysis

  • Transaction timing optimization

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid ACCESS-TOKEN.

Integration Notes

The getmempoolinfo method helps developers build robust applications that interact with the Litecoin blockchain.

Last updated

Was this helpful?