@@ -115,7 +115,7 @@ contract ModuleBaseDeployer is ScriptUtils {
115
115
console.log ("ERC20Incentive: " , erc20Incentive);
116
116
deployJson = deployJsonKey.serialize ("ERC20Incentive " , erc20Incentive);
117
117
bool newDeploy = _deploy2 (initCode, "" );
118
- _registerIfNew (newDeploy, "ERC20Incentive_2 " , erc20Incentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
118
+ _registerIfNew (newDeploy, "ERC20Incentive " , erc20Incentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
119
119
}
120
120
121
121
function _deployERC20PeggedIncentive (BoostRegistry registry ) internal returns (address erc20PeggedIncentive ) {
@@ -124,7 +124,7 @@ contract ModuleBaseDeployer is ScriptUtils {
124
124
console.log ("ERC20PeggedIncentive: " , erc20PeggedIncentive);
125
125
deployJson = deployJsonKey.serialize ("ERC20PeggedIncentive " , erc20PeggedIncentive);
126
126
bool newDeploy = _deploy2 (initCode, "" );
127
- _registerIfNew (newDeploy, "ERC20PeggedIncentive_2 " , erc20PeggedIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
127
+ _registerIfNew (newDeploy, "ERC20PeggedIncentive " , erc20PeggedIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
128
128
}
129
129
130
130
function _deployERC20PeggedVariableCriteriaIncentive (BoostRegistry registry ) internal returns (address erc20PeggedVariableCriteriaIncentive ) {
@@ -133,7 +133,7 @@ contract ModuleBaseDeployer is ScriptUtils {
133
133
console.log ("ERC20PeggedVariableCriteriaIncentive: " , erc20PeggedVariableCriteriaIncentive);
134
134
deployJson = deployJsonKey.serialize ("ERC20PeggedVariableCriteriaIncentive " , erc20PeggedVariableCriteriaIncentive);
135
135
bool newDeploy = _deploy2 (initCode, "" );
136
- _registerIfNew (newDeploy, "ERC20PeggedVariableCriteriaIncentive_2 " , erc20PeggedVariableCriteriaIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
136
+ _registerIfNew (newDeploy, "ERC20PeggedVariableCriteriaIncentive " , erc20PeggedVariableCriteriaIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
137
137
}
138
138
139
139
function _deployERC20VariableIncentive (BoostRegistry registry ) internal returns (address erc20VariableIncentive ) {
@@ -143,7 +143,7 @@ contract ModuleBaseDeployer is ScriptUtils {
143
143
deployJson = deployJsonKey.serialize ("ERC20VariableIncentive " , erc20VariableIncentive);
144
144
bool newDeploy = _deploy2 (initCode, "" );
145
145
_registerIfNew (
146
- newDeploy, "ERC20VariableIncentive_2 " , erc20VariableIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE
146
+ newDeploy, "ERC20VariableIncentive " , erc20VariableIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE
147
147
);
148
148
}
149
149
@@ -158,7 +158,7 @@ contract ModuleBaseDeployer is ScriptUtils {
158
158
bool newDeploy = _deploy2 (initCode, "" );
159
159
_registerIfNew (
160
160
newDeploy,
161
- "ERC20VariableCriteriaIncentive_2 " ,
161
+ "ERC20VariableCriteriaIncentive " ,
162
162
erc20VariableCriteriaIncentive,
163
163
registry,
164
164
ABoostRegistry.RegistryType.INCENTIVE
@@ -171,7 +171,7 @@ contract ModuleBaseDeployer is ScriptUtils {
171
171
console.log ("CGDAIncentive: " , cgdaIncentive);
172
172
deployJson = deployJsonKey.serialize ("CGDAIncentive " , cgdaIncentive);
173
173
bool newDeploy = _deploy2 (initCode, "" );
174
- _registerIfNew (newDeploy, "CGDAIncentive_2 " , cgdaIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
174
+ _registerIfNew (newDeploy, "CGDAIncentive " , cgdaIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
175
175
}
176
176
177
177
function _deployPointsIncentive (BoostRegistry registry ) internal returns (address pointsIncentive ) {
@@ -180,7 +180,7 @@ contract ModuleBaseDeployer is ScriptUtils {
180
180
console.log ("PointsIncentive: " , pointsIncentive);
181
181
deployJson = deployJsonKey.serialize ("PointsIncentive " , pointsIncentive);
182
182
bool newDeploy = _deploy2 (initCode, "" );
183
- _registerIfNew (newDeploy, "PointsIncentive_2 " , pointsIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
183
+ _registerIfNew (newDeploy, "PointsIncentive " , pointsIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
184
184
}
185
185
186
186
function _deployAllowListIncentive (BoostRegistry registry ) internal returns (address allowListIncentive ) {
@@ -190,7 +190,7 @@ contract ModuleBaseDeployer is ScriptUtils {
190
190
deployJson = deployJsonKey.serialize ("AllowListIncentive " , allowListIncentive);
191
191
bool newDeploy = _deploy2 (initCode, "" );
192
192
_registerIfNew (
193
- newDeploy, "AllowListIncentive_2 " , allowListIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE
193
+ newDeploy, "AllowListIncentive " , allowListIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE
194
194
);
195
195
}
196
196
0 commit comments