@@ -18,20 +18,15 @@ import {
18
18
BoostCore ,
19
19
BoostRegistry ,
20
20
CGDAIncentive ,
21
- ContractAction ,
22
21
type DeployableOptions ,
23
22
ERC20Incentive ,
24
23
ERC20VariableIncentive ,
25
- ERC721MintAction ,
26
- ERC1155Incentive ,
27
24
EventAction ,
28
25
ManagedBudget ,
29
26
PointsIncentive ,
30
27
SignerValidator ,
31
28
SimpleAllowList ,
32
- SimpleBudget ,
33
29
SimpleDenyList ,
34
- VestingBudget ,
35
30
getDeployedContractAddress ,
36
31
} from '@boostxyz/sdk' ;
37
32
import { createConfig , deployContract } from '@wagmi/core' ;
@@ -228,12 +223,12 @@ export const deploy: Command<DeployResult> = async function deploy(opts) {
228
223
) ;
229
224
230
225
const bases = {
231
- ContractAction : class TContractAction extends ContractAction {
232
- public static override base = contractActionBase ;
233
- } ,
234
- ERC721MintAction : class TERC721MintAction extends ERC721MintAction {
235
- public static override base = erc721MintActionBase ;
236
- } ,
226
+ // ContractAction: class TContractAction extends ContractAction {
227
+ // public static override base = contractActionBase;
228
+ // },
229
+ // ERC721MintAction: class TERC721MintAction extends ERC721MintAction {
230
+ // public static override base = erc721MintActionBase;
231
+ // },
237
232
EventAction : class TEventAction extends EventAction {
238
233
public static override base = eventActionBase ;
239
234
} ,
@@ -243,15 +238,15 @@ export const deploy: Command<DeployResult> = async function deploy(opts) {
243
238
SimpleDenyList : class TSimpleDenyList extends SimpleDenyList {
244
239
public static override base = simpleDenyListBase ;
245
240
} ,
246
- SimpleBudget : class TSimpleBudget extends SimpleBudget {
247
- public static override base = simpleBudgetBase ;
248
- } ,
241
+ // SimpleBudget: class TSimpleBudget extends SimpleBudget {
242
+ // public static override base = simpleBudgetBase;
243
+ // },
249
244
ManagedBudget : class TSimpleBudget extends ManagedBudget {
250
245
public static override base = managedBudgetBase ;
251
246
} ,
252
- VestingBudget : class TVestingBudget extends VestingBudget {
253
- public static override base = vestingBudgetBase ;
254
- } ,
247
+ // VestingBudget: class TVestingBudget extends VestingBudget {
248
+ // public static override base = vestingBudgetBase;
249
+ // },
255
250
AllowListIncentive : class TAllowListIncentive extends AllowListIncentive {
256
251
public static override base = allowListIncentiveBase ;
257
252
} ,
@@ -264,9 +259,9 @@ export const deploy: Command<DeployResult> = async function deploy(opts) {
264
259
ERC20VariableIncentive : class TERC20VariableIncentive extends ERC20VariableIncentive {
265
260
public static override base = erc20VariableIncentiveBase ;
266
261
} ,
267
- ERC1155Incentive : class TERC1155Incentive extends ERC1155Incentive {
268
- public static override base = erc1155IncentiveBase ;
269
- } ,
262
+ // ERC1155Incentive: class TERC1155Incentive extends ERC1155Incentive {
263
+ // public static override base = erc1155IncentiveBase;
264
+ // },
270
265
PointsIncentive : class TPointsIncentive extends PointsIncentive {
271
266
public static override base = pointsIncentiveBase ;
272
267
} ,
0 commit comments