Skip to content

Commit 68ffa7b

Browse files
authored
[ADHOC] deploy EventAction module (#360)
1 parent a62b4c1 commit 68ffa7b

File tree

11 files changed

+550
-167
lines changed

11 files changed

+550
-167
lines changed

.changeset/empty-monkeys-decide.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@boostxyz/evm": minor
3+
"@boostxyz/cli": minor
4+
"@boostxyz/sdk": minor
5+
---
6+
7+
deploy EventAction module on Base/BaseSepolia/Sepolia

packages/evm/broadcast/Deploy_Modules.s.sol/11155111/run-1736015138.json

Lines changed: 116 additions & 0 deletions
Large diffs are not rendered by default.

packages/evm/broadcast/Deploy_Modules.s.sol/11155111/run-latest.json

Lines changed: 46 additions & 46 deletions
Large diffs are not rendered by default.

packages/evm/broadcast/Deploy_Modules.s.sol/8453/run-1736392101.json

Lines changed: 130 additions & 0 deletions
Large diffs are not rendered by default.

packages/evm/broadcast/Deploy_Modules.s.sol/8453/run-latest.json

Lines changed: 57 additions & 55 deletions
Large diffs are not rendered by default.

packages/evm/broadcast/Deploy_Modules.s.sol/84532/run-1736390232.json

Lines changed: 128 additions & 0 deletions
Large diffs are not rendered by default.

packages/evm/broadcast/Deploy_Modules.s.sol/84532/run-latest.json

Lines changed: 55 additions & 55 deletions
Large diffs are not rendered by default.

packages/evm/deploys/11155111.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"ERC20PeggedVariableCriteriaIncentive": "0xBA9C0739350C42d5f4bB55d779356C3CfEaB257a",
99
"ERC20VariableCriteriaIncentive": "0xE7763684b43bE4491A93469aA5D7868591343dEa",
1010
"ERC20VariableIncentive": "0xC502d89B01b0137327adC0bd393fCee2dE6EA6d0",
11-
"EventAction": "0xF1c51f679A250a542c38ed45fd5B6D050648669E",
11+
"EventAction": "0xAADe59E7B473c4f03b47C6CEd4931ae8B5e5F2bA",
1212
"ManagedBudget": "0xf109BAFC51aA2a78C831e5460dEDbDf68E866976",
1313
"ManagedBudgetWithFees": "0x18C217895bd8f1d8aD4F26844aAb5957Eb61C2bA",
1414
"OpenAllowList": "0xEe55C17D2EDBaB27603eB0d0C753c8A173ba7Ed6",

packages/evm/deploys/8453.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"ERC20PeggedVariableCriteriaIncentive": "0xBA9C0739350C42d5f4bB55d779356C3CfEaB257a",
99
"ERC20VariableCriteriaIncentive": "0xE7763684b43bE4491A93469aA5D7868591343dEa",
1010
"ERC20VariableIncentive": "0xC502d89B01b0137327adC0bd393fCee2dE6EA6d0",
11-
"EventAction": "0xF1c51f679A250a542c38ed45fd5B6D050648669E",
11+
"EventAction": "0xAADe59E7B473c4f03b47C6CEd4931ae8B5e5F2bA",
1212
"ManagedBudget": "0xf109BAFC51aA2a78C831e5460dEDbDf68E866976",
1313
"ManagedBudgetWithFees": "0x18C217895bd8f1d8aD4F26844aAb5957Eb61C2bA",
1414
"OpenAllowList": "0xEe55C17D2EDBaB27603eB0d0C753c8A173ba7Ed6",

packages/evm/deploys/84532.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"ERC20PeggedVariableCriteriaIncentive": "0xBA9C0739350C42d5f4bB55d779356C3CfEaB257a",
99
"ERC20VariableCriteriaIncentive": "0xE7763684b43bE4491A93469aA5D7868591343dEa",
1010
"ERC20VariableIncentive": "0xC502d89B01b0137327adC0bd393fCee2dE6EA6d0",
11-
"EventAction": "0xF1c51f679A250a542c38ed45fd5B6D050648669E",
11+
"EventAction": "0xAADe59E7B473c4f03b47C6CEd4931ae8B5e5F2bA",
1212
"ManagedBudget": "0xf109BAFC51aA2a78C831e5460dEDbDf68E866976",
1313
"ManagedBudgetWithFees": "0x18C217895bd8f1d8aD4F26844aAb5957Eb61C2bA",
1414
"OpenAllowList": "0xEe55C17D2EDBaB27603eB0d0C753c8A173ba7Ed6",

packages/evm/script/solidity/Deploy_Modules.s.sol

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ contract ModuleBaseDeployer is ScriptUtils {
115115
console.log("ERC20Incentive: ", erc20Incentive);
116116
deployJson = deployJsonKey.serialize("ERC20Incentive", erc20Incentive);
117117
bool newDeploy = _deploy2(initCode, "");
118-
_registerIfNew(newDeploy, "ERC20Incentive_2", erc20Incentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
118+
_registerIfNew(newDeploy, "ERC20Incentive", erc20Incentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
119119
}
120120

121121
function _deployERC20PeggedIncentive(BoostRegistry registry) internal returns (address erc20PeggedIncentive) {
@@ -124,7 +124,7 @@ contract ModuleBaseDeployer is ScriptUtils {
124124
console.log("ERC20PeggedIncentive: ", erc20PeggedIncentive);
125125
deployJson = deployJsonKey.serialize("ERC20PeggedIncentive", erc20PeggedIncentive);
126126
bool newDeploy = _deploy2(initCode, "");
127-
_registerIfNew(newDeploy, "ERC20PeggedIncentive_2", erc20PeggedIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
127+
_registerIfNew(newDeploy, "ERC20PeggedIncentive", erc20PeggedIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
128128
}
129129

130130
function _deployERC20PeggedVariableCriteriaIncentive(BoostRegistry registry) internal returns (address erc20PeggedVariableCriteriaIncentive) {
@@ -133,7 +133,7 @@ contract ModuleBaseDeployer is ScriptUtils {
133133
console.log("ERC20PeggedVariableCriteriaIncentive: ", erc20PeggedVariableCriteriaIncentive);
134134
deployJson = deployJsonKey.serialize("ERC20PeggedVariableCriteriaIncentive", erc20PeggedVariableCriteriaIncentive);
135135
bool newDeploy = _deploy2(initCode, "");
136-
_registerIfNew(newDeploy, "ERC20PeggedVariableCriteriaIncentive_2", erc20PeggedVariableCriteriaIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
136+
_registerIfNew(newDeploy, "ERC20PeggedVariableCriteriaIncentive", erc20PeggedVariableCriteriaIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
137137
}
138138

139139
function _deployERC20VariableIncentive(BoostRegistry registry) internal returns (address erc20VariableIncentive) {
@@ -143,7 +143,7 @@ contract ModuleBaseDeployer is ScriptUtils {
143143
deployJson = deployJsonKey.serialize("ERC20VariableIncentive", erc20VariableIncentive);
144144
bool newDeploy = _deploy2(initCode, "");
145145
_registerIfNew(
146-
newDeploy, "ERC20VariableIncentive_2", erc20VariableIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE
146+
newDeploy, "ERC20VariableIncentive", erc20VariableIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE
147147
);
148148
}
149149

@@ -158,7 +158,7 @@ contract ModuleBaseDeployer is ScriptUtils {
158158
bool newDeploy = _deploy2(initCode, "");
159159
_registerIfNew(
160160
newDeploy,
161-
"ERC20VariableCriteriaIncentive_2",
161+
"ERC20VariableCriteriaIncentive",
162162
erc20VariableCriteriaIncentive,
163163
registry,
164164
ABoostRegistry.RegistryType.INCENTIVE
@@ -171,7 +171,7 @@ contract ModuleBaseDeployer is ScriptUtils {
171171
console.log("CGDAIncentive: ", cgdaIncentive);
172172
deployJson = deployJsonKey.serialize("CGDAIncentive", cgdaIncentive);
173173
bool newDeploy = _deploy2(initCode, "");
174-
_registerIfNew(newDeploy, "CGDAIncentive_2", cgdaIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
174+
_registerIfNew(newDeploy, "CGDAIncentive", cgdaIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
175175
}
176176

177177
function _deployPointsIncentive(BoostRegistry registry) internal returns (address pointsIncentive) {
@@ -180,7 +180,7 @@ contract ModuleBaseDeployer is ScriptUtils {
180180
console.log("PointsIncentive: ", pointsIncentive);
181181
deployJson = deployJsonKey.serialize("PointsIncentive", pointsIncentive);
182182
bool newDeploy = _deploy2(initCode, "");
183-
_registerIfNew(newDeploy, "PointsIncentive_2", pointsIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
183+
_registerIfNew(newDeploy, "PointsIncentive", pointsIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE);
184184
}
185185

186186
function _deployAllowListIncentive(BoostRegistry registry) internal returns (address allowListIncentive) {
@@ -190,7 +190,7 @@ contract ModuleBaseDeployer is ScriptUtils {
190190
deployJson = deployJsonKey.serialize("AllowListIncentive", allowListIncentive);
191191
bool newDeploy = _deploy2(initCode, "");
192192
_registerIfNew(
193-
newDeploy, "AllowListIncentive_2", allowListIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE
193+
newDeploy, "AllowListIncentive", allowListIncentive, registry, ABoostRegistry.RegistryType.INCENTIVE
194194
);
195195
}
196196

0 commit comments

Comments
 (0)