Get the allowed state controller addresses
GET//v1/chains/:chainID/core/governance/allowedstatecontrollers
Returns the allowed state controller addresses
Request
Path Parameters
chainID stringrequired
ChainID (Bech32)
Query Parameters
block string
Block index or trie root
Responses
- 200
- 401
The state controller addresses
- application/json
- Schema
- Example (from schema)
Schema
addresses string[]
The allowed state controller addresses (Bech32-encoded)
{
"addresses": [
"addresses",
"addresses"
]
}
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/governance/allowedstatecontrollers' \
-H 'Accept: application/json'
ResponseClear