Skip to content

Commit 831bfcb

Browse files
committed
fix(contracts): plugin-settings
1 parent 58829b9 commit 831bfcb

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed
Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import buildMetadata from './src/build-metadata.json';
22
import releaseMetadata from './src/release-metadata.json';
3-
import {GovernanceERC20} from './test/test-utils/typechain-versions';
4-
import {ethers} from 'hardhat';
53

64
export const PLUGIN_REPO_PROXY_NAME = 'TokenVotingProxy';
75
export const PLUGIN_CONTRACT_NAME = 'MaciVoting'; // This must match the filename `packages/contracts/src/MyPlugin.sol` and the contract name `MyPlugin` within.
@@ -26,26 +24,3 @@ export const METADATA = {
2624
build: buildMetadata,
2725
release: releaseMetadata,
2826
};
29-
30-
const zeroDaoAddress = ethers.constants.AddressZero;
31-
const zeroTokenAddress = ethers.constants.AddressZero;
32-
const emptyName = '';
33-
const emptySymbol = '';
34-
35-
export const emptyMintSettings: GovernanceERC20.MintSettingsStruct = {
36-
receivers: [],
37-
amounts: [],
38-
};
39-
40-
export const GOVERNANCE_ERC20_DEPLOY_ARGS = [
41-
zeroDaoAddress,
42-
emptyName,
43-
emptySymbol,
44-
emptyMintSettings,
45-
];
46-
47-
export const GOVERNANCE_WRAPPED_ERC20_DEPLOY_ARGS = [
48-
zeroTokenAddress,
49-
emptyName,
50-
emptySymbol,
51-
];

0 commit comments

Comments
 (0)