Skip to content

Commit

Permalink
Merge pull request #83 from XLabs/deployment/set-canonical-peer-addendum
Browse files Browse the repository at this point in the history
Deployment/set canonical peer addendum
  • Loading branch information
scnale authored Oct 28, 2024
2 parents 14e4608 + b8b2d33 commit aa3f4ac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 17 deletions.
17 changes: 0 additions & 17 deletions deployment/config/testnet/ecosystem.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"operatingChains": [6],
"evm": {
"networks": [
{
Expand Down Expand Up @@ -33,22 +32,6 @@
"network": "Testnet",
"rpc": "https://sepolia-rollup.arbitrum.io/rpc",
"wormholeAddress": "0x6b9C8671cdDC8dEab9c719bB87cBd3e782bA6a35"
},
{
"name": "BaseSepolia",
"externalId": 84532,
"chainId": 10004,
"network": "Testnet",
"rpc": "https://base-sepolia-rpc.publicnode.com",
"wormholeAddress": "0x6b9C8671cdDC8dEab9c719bB87cBd3e782bA6a35"
},
{
"name": "OptimismSepolia",
"evmNetworkId": 11155420,
"chainId": 10005,
"network": "Testnet",
"rpc": "https://sepolia.optimism.io",
"wormholeAddress": "0x31377888146f3253211EFEf5c676D41ECe7D58Fe"
}
]
},
Expand Down
5 changes: 5 additions & 0 deletions deployment/helpers/solana.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ export function solanaOperatingChains() {
export async function runOnSolana(scriptName: string, cb: SolanaScriptCb) {
const chains = solanaOperatingChains() as SolanaChainInfo[];

if (chains.length === 0) {
console.log("No operating chains entries found");
return;
}

console.log(`Running script on Solana:`, scriptName);

const result = chains.map(async chain => {
Expand Down

0 comments on commit aa3f4ac

Please sign in to comment.