Skip to content

Commit

Permalink
copy CR tkporter from #4841
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbalaji committed Nov 8, 2024
1 parent d93f011 commit de1f4ba
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"decimals": 9
},
"ethereum": {
"amount": "10.988801871",
"amount": "15.0",
"decimals": 9
},
"everclear": {
Expand Down
1 change: 1 addition & 0 deletions typescript/infra/scripts/announce-validators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ async function main() {
await Promise.all(
Object.entries(agentConfig.validators.chains)
.filter(([validatorChain, _]) => {
// Ensure we skip lumia, as we don't have the addresses in registry.
if (validatorChain === 'lumia') {
return false;
}
Expand Down
3 changes: 2 additions & 1 deletion typescript/infra/scripts/check/check-validator-announce.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ async function main() {
const config = getEnvironmentConfig(environment);
const { core } = await getHyperlaneCore(environment);

// Ensure we skip lumia, as we don't have the addresses in registry.
const targetNetworks = (
chains && chains.length > 0 ? chains : config.supportedChainNames
).filter(isEthereumProtocolChain);
).filter((chain) => isEthereumProtocolChain(chain) && chain !== 'lumia');

const chainsWithUnannouncedValidators: ChainMap<string[]> = {};

Expand Down
4 changes: 3 additions & 1 deletion typescript/infra/src/config/chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ import { inCIMode } from '../utils/utils.js';

import { DeployEnvironment } from './environment.js';

// Temporarily skip some chains
// A list of chains to skip during deploy, check-deploy and ICA operations.
// Used by scripts like check-owner-ica.ts to exclude chains that are temporarily
// unsupported (e.g. zksync, zeronetwork) or have known issues (e.g. lumia).
export const chainsToSkip: ChainName[] = [
// TODO: remove once zksync PR is merged into main
// mainnets
Expand Down

0 comments on commit de1f4ba

Please sign in to comment.