Skip to content

Commit

Permalink
Enable NFT gov on testnets, disable NFT gov on mainnets
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgall committed May 24, 2024
1 parent ef4328b commit 278da20
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 20 deletions.
6 changes: 1 addition & 5 deletions src/providers/NetworkConfig/networks/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,5 @@ export const baseConfig: NetworkConfig = {
keyValuePairs: KeyValuePairs.address,
},
staking: {},
createOptions: [
GovernanceType.MULTISIG,
GovernanceType.AZORIUS_ERC20,
GovernanceType.AZORIUS_ERC721,
],
createOptions: [GovernanceType.MULTISIG, GovernanceType.AZORIUS_ERC20],
};
6 changes: 1 addition & 5 deletions src/providers/NetworkConfig/networks/mainnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,5 @@ export const mainnetConfig: NetworkConfig = {
withdrawalQueueContractAddress: '0x889edC2eDab5f40e902b864aD4d7AdE8E412F9B1',
},
},
createOptions: [
GovernanceType.MULTISIG,
GovernanceType.AZORIUS_ERC20,
GovernanceType.AZORIUS_ERC721,
],
createOptions: [GovernanceType.MULTISIG, GovernanceType.AZORIUS_ERC20],
};
6 changes: 1 addition & 5 deletions src/providers/NetworkConfig/networks/optimism.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,5 @@ export const optimismConfig: NetworkConfig = {
keyValuePairs: KeyValuePairs.address,
},
staking: {},
createOptions: [
GovernanceType.MULTISIG,
GovernanceType.AZORIUS_ERC20,
GovernanceType.AZORIUS_ERC721,
],
createOptions: [GovernanceType.MULTISIG, GovernanceType.AZORIUS_ERC20],
};
6 changes: 1 addition & 5 deletions src/providers/NetworkConfig/networks/polygon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,5 @@ export const polygonConfig: NetworkConfig = {
keyValuePairs: KeyValuePairs.address,
},
staking: {},
createOptions: [
GovernanceType.MULTISIG,
GovernanceType.AZORIUS_ERC20,
GovernanceType.AZORIUS_ERC721,
],
createOptions: [GovernanceType.MULTISIG, GovernanceType.AZORIUS_ERC20],
};

0 comments on commit 278da20

Please sign in to comment.