-
Notifications
You must be signed in to change notification settings - Fork 214
feat: deploy to solanadevnet #1069
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@hyperlane-xyz/registry': minor | ||
--- | ||
|
||
Add solanadevnet addresses, update EVM ISMs to receive from solanadevnet |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ fallbackRoutingHook: "0x507C18fa4e3b0ce6beBD494488D62d1ed0fB0555" | |
interchainAccountIsm: "0xD9dc83Ea22C6F1A224e51562B32b580695905A1A" | ||
interchainAccountRouter: "0x17866ebE0e503784a9461d3e753dEeD0d3F61153" | ||
interchainGasPaymaster: "0xce0e13f67399375eF0a7acb741E815145A6AAf67" | ||
interchainSecurityModule: "0x912447ed8CAF70a3B70A2F4E619ADeac41680599" | ||
interchainSecurityModule: "0x45fA696529e0E98C69C4bFeA7054b7b20D7150e1" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainCarrChain ISM moved – keep an eye on funding & guardianship. No complaints here; just confirm the previous address 🏁 Script executed: #!/bin/bash
# Ensure only the new CarrChain ISM address shows up.
rg -i "0x45fa696529e0e98c69c4bfea7054b7b20d7150e1" | head Length of output: 167 🏁 Script executed: #!/bin/bash
# Ensure the old CarrChain ISM address is fully removed
rg -i "0x9124" Length of output: 109 Patch mainnet ISM address (old one still lurking) • File: chains/addresses.yaml interchainSecurityModule: "0x912447ed8CAF70a3B70A2F4E619ADeac41680599" • Update to the new guardian everywhere: - interchainSecurityModule: "0x912447ed8CAF70a3B70A2F4E619ADeac41680599"
+ interchainSecurityModule: "0x45fA696529e0E98C69C4bFeA7054b7b20D7150e1" Once that’s swapped out, we can be sure the old address’s fully retired. 🤖 Prompt for AI Agents
|
||
mailbox: "0x589C201a07c26b4725A4A829d772f24423da480B" | ||
merkleTreeHook: "0xb3D796584fDeBE2321894eeF31e0C3ec52169C61" | ||
pausableHook: "0x2bD9aF503B9F608beAD63D4ACC328Abf9796b576" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
interchainGasPaymaster: 2pZwGG1vLKi6wJ1DkyxuWPGKAY6xKVv9Yyk6MFqBH2HC | ||
interchainSecurityModule: 5V7qEbBrVXaviTrkhhqJshfAcS7dEe91oj2QRU7kMiNH | ||
mailbox: 5MhSYXV2wZPLv21h1xiaG8R9Ddq9Nw5n1sfwDxVaErDt | ||
merkleTreeHook: 5MhSYXV2wZPLv21h1xiaG8R9Ddq9Nw5n1sfwDxVaErDt | ||
validatorAnnounce: ADk5MbBDn6AZ94qmca4QWjCKNHUPbFreiGuav8VnhZnQ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Looks good, but mind the jungle—double-check this BSC testnet ISM
Checksum casing and length pass the eye test. Let’s still confirm the contract really lives at
1378…DeF6
on bsctestnet before merging.🏁 Script executed:
Length of output: 227
Heads-up: lingering old ISM address
Ran the grep and spotted the old BSC testnet ISM still in the global config – let’s fix that before merging.
• chains/addresses.yaml [line 892]
interchainSecurityModule: “0xc1d01Ae6698C06cfd0B3cd84BcBE9371b6F65B5a”
→ replace with “0x137853a0226e9d560AbEBBcAe292D55B2715DeF6”
• Once replaced, verify the new contract is live on BSC testnet (via BscScan or a quick web3/ethers.js call)
🤖 Prompt for AI Agents