Skip to content

Commit

Permalink
added dao migrator deploy set
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahSaso committed Nov 8, 2024
1 parent 1680704 commit 98098e9
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions packages/dispatch/scripts/deploy/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ export const deploySets: DeploySet[] = [
],
},

// the contracts to deploy on all chains once
// the external contracts to deploy on all chains once
{
name: 'external',
type: 'once',
contracts: ['cw1_whitelist', 'cw4_group'],
},

// the contracts to deploy on all chains every time
// the core DAO contracts to deploy on all chains every time
{
name: 'core DAO stuff',
type: 'always',
Expand All @@ -68,6 +68,14 @@ export const deploySets: DeploySet[] = [
],
},

// the v1 to v2 migrator contract to deploy every time
{
name: 'migrator',
type: 'always',
contracts: ['dao_migrator'],
chainIds: [ChainId.JunoMainnet, ChainId.JunoTestnet],
},

// cw-vesting with staking, which all chains but Neutron support
{
name: 'cw-vesting with staking',
Expand Down

0 comments on commit 98098e9

Please sign in to comment.