Skip to content

Commit

Permalink
Update chain metadata and address files
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 6, 2025
1 parent c093d06 commit 9de1805
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions chains/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,55 @@
"hyperlaneChainMetadata": {
"type": "object",
"properties": {
"availability": {
"anyOf": [
{
"type": "object",
"properties": {
"status": {
"type": "string",
"const": "disabled",
"description": "The status that represents the chain availability. See ChainStatus for valid values."
},
"reasons": {
"type": "array",
"items": {
"type": "string",
"enum": [
"badrpc",
"deprecated",
"private",
"unavailable",
"other"
]
},
"minItems": 1,
"description": "List of reasons explaining why the chain is disabled."
}
},
"required": [
"status",
"reasons"
],
"additionalProperties": false
},
{
"type": "object",
"properties": {
"status": {
"type": "string",
"const": "live",
"description": "The status that represents the chain availability. See ChainStatus for valid values."
}
},
"required": [
"status"
],
"additionalProperties": false
}
],
"description": "Specifies if the chain is available and the reasons why it is disabled."
},
"bech32Prefix": {
"type": "string",
"description": "The human readable address prefix for the chains using bech32."
Expand Down

0 comments on commit 9de1805

Please sign in to comment.