curl --request POST \
--url https://nd-202-842-353.p2pify.com/788f110831fe13808302bd79796d55e8 \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "1.0",
"method": "gettxoutsetinfo",
"params": "<any>",
"id": 1
}'
{
"result": {},
"error": {},
"id": 123
}
curl --request POST \
--url https://nd-202-842-353.p2pify.com/788f110831fe13808302bd79796d55e8 \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "1.0",
"method": "gettxoutsetinfo",
"params": "<any>",
"id": 1
}'
{
"result": {},
"error": {},
"id": 123
}
gettxoutsetinfo
method provides statistics about the unspent transaction output set, including the total number of unspent outputs and the total value of all unspent outputs.
curl
example in your terminal.result
— an object containing statistics about the unspent transaction output set, such as the total number of unspent outputs and the total value.error
— an object containing an error message if an error occurred, otherwise null
.id
— an integer representing the ID of the request, used to match requests with responses.gettxoutsetinfo
method is useful for understanding the current state of the unspent transaction outputs in the blockchain. It provides valuable insights into the distribution and value of unspent outputs.Statistics about the unspent transaction output set
The response is of type object
.
Was this page helpful?