Get the control addresses
GET//v1/chains/:chainID/core/blocklog/controladdresses
Get the control addresses
Request
Path Parameters
chainID stringrequired
ChainID (Bech32)
Query Parameters
block string
Block index or trie root
Responses
- 200
- 401
The chain info
- application/json
- Schema
- Example (from schema)
Schema
governingAddress stringrequired
The governing address (Bech32)
sinceBlockIndex int32required
Possible values: >= 1
The block index (uint32
stateAddress stringrequired
The state address (Bech32)
{
"governingAddress": "governingAddress",
"sinceBlockIndex": 1,
"stateAddress": "stateAddress"
}
Unauthorized (Wrong permissions, missing token)
- application/json
- Schema
- Example (from schema)
Schema
error stringrequired
missingPermission stringrequired
{
"error": "string",
"missingPermission": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET '/v1/chains/:chainID/core/blocklog/controladdresses' \
-H 'Accept: application/json'
ResponseClear