mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-01-13 08:40:42 +08:00
* feat: handle pox-3 force unlocks * chore: todo note * feat: handle pox-3 force unlocks, pox-4 events, and revoke-delegate-stx event * chore: rename pox-2 file * chore: simplified pox route paths * feat: add migration to create pox4_events table * test: follow redirects in test fetch helper * chore: fix storing different pox version events * test: fix tests with missing pox4_events * chore: move delegations lookup endpoint into pox router * fix: handle pox4_events during reorgs * test: fix pox4events reorg count * chore: update stacks-node image to stacks 3.0 * test: begin transitioning pox tests to use pox-4 * chore: bump stacks-node to wip nakamoto branch * test: switch more tests from pox-3 to pox-4 * fix: tx fee fall back in faucet * test: update delegation check endpoints * chore: isolate error in delegate-revoke test * chore: pox3 to pox4 misc renames * ci: rename 2.4 to 2.5 * test: remove no-longer applicable delegate-stx while stacking test * chore: remove incorrect commend in pox4 test
35 lines
751 B
JSON
35 lines
751 B
JSON
{
|
|
"description": "GET blockchain API status",
|
|
"title": "ServerStatusResponse",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"status"
|
|
],
|
|
"properties": {
|
|
"server_version": {
|
|
"type": "string",
|
|
"description": "the server version that is currently running"
|
|
},
|
|
"status": {
|
|
"type": "string",
|
|
"description": "the current server status"
|
|
},
|
|
"pox_v1_unlock_height": {
|
|
"type": "integer",
|
|
"nullable": true
|
|
},
|
|
"pox_v2_unlock_height": {
|
|
"type": "integer",
|
|
"nullable": true
|
|
},
|
|
"pox_v3_unlock_height": {
|
|
"type": "integer",
|
|
"nullable": true
|
|
},
|
|
"chain_tip": {
|
|
"$ref": "../../entities/info/chain-tip.schema.json"
|
|
}
|
|
}
|
|
}
|