gettxoutsetinfo - Litecoin

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

Returns statistics about the unspent transaction output (UTXO) set.

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": "gettxoutsetinfo",
    "params": [],
    "id": "getblock.io"
}'

Response

response.json
{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": {
        "height": 2750000,
        "bestblock": "blockhash...",
        "transactions": 12345678,
        "txouts": 23456789,
        "bogosize": 1234567890,
        "hash_serialized_2": "hash...",
        "disk_size": 1234567890,
        "total_amount": 70000000.00000000
    }
}

Response Parameters

Field
Type
Description

height

number

The current block height.

transactions

number

Number of transactions with unspent outputs.

txouts

number

Number of unspent transaction outputs.

total_amount

number

The total amount in LTC.

Use Case

circle-info

The gettxoutsetinfo method is essential for:

  • UTXO set analysis

  • Supply verification

  • Database statistics

  • Chain state monitoring

Error Handling

chevron-rightCommon errorhashtag
Status Code
Error Message
Cause

403

Forbidden

Missing or invalid ACCESS-TOKEN.

Integration Notes

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

Was this helpful?