mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-05-16 10:29:31 +08:00
48 lines
1.0 KiB
JSON
48 lines
1.0 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Get Proof of Transfer (PoX) information",
|
|
"title": "CoreNodePoxResponse",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"contract_id",
|
|
"first_burnchain_block_height",
|
|
"min_amount_ustx",
|
|
"registration_window_length",
|
|
"rejection_fraction",
|
|
"reward_cycle_id",
|
|
"reward_cycle_length",
|
|
"rejection_votes_left_required",
|
|
"total_liquid_supply_ustx"
|
|
],
|
|
"properties": {
|
|
"contract_id": {
|
|
"type": "string"
|
|
},
|
|
"first_burnchain_block_height": {
|
|
"type": "integer"
|
|
},
|
|
"min_amount_ustx": {
|
|
"type": "integer"
|
|
},
|
|
"registration_window_length": {
|
|
"type": "integer"
|
|
},
|
|
"rejection_fraction": {
|
|
"type": "integer"
|
|
},
|
|
"reward_cycle_id": {
|
|
"type": "integer"
|
|
},
|
|
"reward_cycle_length": {
|
|
"type": "integer"
|
|
},
|
|
"rejection_votes_left_required": {
|
|
"type": "integer"
|
|
},
|
|
"total_liquid_supply_ustx": {
|
|
"type": "integer"
|
|
}
|
|
}
|
|
}
|