mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-05-12 11:21:28 +08:00
# Conflicts: # .env # .github/workflows/ci.yml # .vscode/launch.json # package.json # src/api/init.ts # src/datastore/common.ts # src/datastore/pg-store.ts # src/event-stream/event-server.ts # src/event-stream/reader.ts # src/index.ts # src/test-utils/test-helpers.ts # src/tests-2.4/pox-3-delegate-aggregation.ts # src/tests-bns-e2e/bns-integration-tests.ts # src/tests-bns/v1-import-tests.ts # src/tests-tokens-metadata/tokens-metadata-tests.ts
31 lines
666 B
JSON
31 lines
666 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
|
|
},
|
|
"chain_tip": {
|
|
"$ref": "../../entities/info/chain-tip.schema.json"
|
|
}
|
|
}
|
|
}
|