mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-15 00:49:53 +08:00
27 lines
894 B
JSON
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"
|
|
}
|
|
}
|
|
}
|