Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/auto-update-hyperlane-deps-1770328557.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hyperlane-xyz/registry': minor
---

Update Hyperlane dependencies to SDK 25.0.0 and Utils 25.0.0
76 changes: 50 additions & 26 deletions chains/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,23 @@
"description": "An API key for the explorer (recommended for better reliability)."
},
"family": {
"type": "string",
"enum": [
"etherscan",
"blockscout",
"routescan",
"voyager",
"zksync",
"radixdashboard",
"other"
"anyOf": [
{
"type": "string",
"enum": [
"etherscan",
"blockscout",
"routescan",
"voyager",
"zksync",
"radixdashboard",
"other",
"unknown"
]
},
{
"type": "string"
}
],
"description": "The type of the block explorer. See ExplorerFamily for valid values."
}
Expand Down Expand Up @@ -326,15 +334,23 @@
"description": "The metadata of the native token of the chain (e.g. ETH for Ethereum)."
},
"protocol": {
"type": "string",
"enum": [
"ethereum",
"sealevel",
"cosmos",
"cosmosnative",
"starknet",
"radix",
"aleo"
"anyOf": [
{
"type": "string",
"enum": [
"ethereum",
"sealevel",
"cosmos",
"cosmosnative",
"starknet",
"radix",
"aleo",
"unknown"
]
},
{
"type": "string"
}
],
"description": "The type of protocol used by this chain. See ProtocolType for valid values."
},
Expand All @@ -358,14 +374,22 @@
"description": "The SLIP-0044 coin type."
},
"technicalStack": {
"type": "string",
"enum": [
"arbitrumnitro",
"opstack",
"polygoncdk",
"polkadotsubstrate",
"zksync",
"other"
"anyOf": [
{
"type": "string",
"enum": [
"arbitrumnitro",
"opstack",
"polygoncdk",
"polkadotsubstrate",
"zksync",
"other",
"unknown"
]
},
{
"type": "string"
}
],
"description": "The technical stack of the chain. See ChainTechnicalStack for valid values."
},
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"@changesets/cli": "^2.26.2",
"@eslint/js": "^9.1.1",
"@faker-js/faker": "^9.6.0",
"@hyperlane-xyz/sdk": "20.1.0",
"@hyperlane-xyz/utils": "20.1.0",
"@hyperlane-xyz/sdk": "25.0.0",
"@hyperlane-xyz/utils": "25.0.0",
"@types/chai-as-promised": "^8",
"@types/mocha": "^10.0.1",
"@types/node": "^24.10.9",
Expand Down
Loading