Skip to content

Commit

Permalink
starting with testnet4
Browse files Browse the repository at this point in the history
  • Loading branch information
aroralanuk committed Sep 5, 2023
1 parent 130238e commit 9a861e0
Show file tree
Hide file tree
Showing 41 changed files with 27 additions and 3,427 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
# needs: [yarn-build]
# strategy:
# matrix:
# environment: [testnet3, mainnet2]
# environment: [testnet4, mainnet2]
# module: [ism, core, igp, ica, helloworld]

# steps:
Expand Down
8 changes: 4 additions & 4 deletions typescript/infra/config/aggregationIsm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ import { chainNames as mainnet2Chains } from './environments/mainnet2/chains';
import { owners as mainnet2Owners } from './environments/mainnet2/owners';
import { chainNames as testChains } from './environments/test/chains';
import { owners as testOwners } from './environments/test/owners';
import { chainNames as testnet3Chains } from './environments/testnet3/chains';
import { owners as testnet3Owners } from './environments/testnet3/owners';
import { chainNames as testnet4Chains } from './environments/testnet4/chains';
import { owners as testnet4Owners } from './environments/testnet4/owners';
import { rcMultisigIsmConfigs } from './multisigIsm';

const chains = {
mainnet2: mainnet2Chains,
testnet3: testnet3Chains,
testnet4: testnet4Chains,
test: testChains,
};

const owners = {
testnet3: testnet3Owners,
testnet4: testnet4Owners,
mainnet2: mainnet2Owners,
test: testOwners,
};
Expand Down
4 changes: 2 additions & 2 deletions typescript/infra/config/environments/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { environment as mainnet2 } from './mainnet2';
import { environment as test } from './test';
import { environment as testnet3 } from './testnet3';
import { environment as testnet4 } from './testnet4';

export const environments = {
test,
testnet3,
testnet4,
mainnet2,
};
11 changes: 9 additions & 2 deletions typescript/infra/config/environments/mainnet2/igp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import {
import { utils } from '@hyperlane-xyz/utils';

import { MainnetChains, chainNames } from './chains';
import { core } from './core';
import { owners } from './owners';

// TODO: make this generic
Expand Down Expand Up @@ -43,7 +42,15 @@ export const igp: ChainMap<OverheadIgpConfig> = objMap(
),
]),
),
upgrade: core[chain].upgrade,
upgrade: {
timelock: {
delay: 0,
roles: {
proposer: owner,
executor: owner,
},
},
},
};
},
);
182 changes: 0 additions & 182 deletions typescript/infra/config/environments/testnet3/agent.ts

This file was deleted.

27 changes: 0 additions & 27 deletions typescript/infra/config/environments/testnet3/chains.ts

This file was deleted.

25 changes: 0 additions & 25 deletions typescript/infra/config/environments/testnet3/core.ts

This file was deleted.

Loading

0 comments on commit 9a861e0

Please sign in to comment.