Files
stacks-blockchain-api/docs/api/info/get-stx-supply.schema.json
2021-03-12 10:46:25 +01:00

27 lines
894 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "GET request that returns network target block times",
"title": "GetStxSupplyResponse",
"type": "object",
"additionalProperties": false,
"required": ["unlocked_percent", "total_stx", "unlocked_stx", "block_height"],
"properties": {
"unlocked_percent": {
"type": "string",
"description": "String quoted decimal number of the percentage of STX that have unlocked"
},
"total_stx": {
"type": "string",
"description": "String quoted decimal number of the total possible number of STX"
},
"unlocked_stx": {
"type": "string",
"description": "String quoted decimal number of the STX that have been mined or unlocked"
},
"block_height": {
"type": "integer",
"description": "The block height at which this information was queried"
}
}
}