Skip to content

Commit

Permalink
deploy strategy (#672)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKurt authored Jan 20, 2025
1 parent 8ba3f39 commit ee6dbbd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"id": "0x060ffd6c79f918819a622248c6823443412aedea610cc19c89d28dadcdef7fba",
"name": "EasyRetroFundingStrategy",
"version": "v1.0",
"address": "0x26B583bF90adAFBf5973B03728ba9a3120D8747D",
"address": "0xc3840647beB1f2026D2Ab1d6056DC6b953eEf212",
"deployerAddress": "0x8C180840fcBb90CE8464B4eCd12ab0f840c6647C"
}
}
25 changes: 12 additions & 13 deletions scripts/strategies/deployEasyRetroFunding.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ export const deployEasyRetroFunding = async () => {

const strategyParams = strategyConfig[chainId]["easy-retro-funding"];

const address = await deployStrategies(
strategyParams.name,
strategyParams.version,
true
);
// const address = await deployStrategies(
// strategyParams.name,
// strategyParams.version,
// true
// );

console.log("==> address", address);
// console.log("==> address", address);

// const validator = await new Validator(
// strategyParams.name,
Expand All @@ -25,13 +25,12 @@ export const deployEasyRetroFunding = async () => {

// await validator.validate("PERMIT2", [], commonConfig[chainId].permit2Address);

// await deployStrategyDirectly(
// strategyParams.name,
// strategyParams.version,
// [commonConfig[chainId].permit2Address],
// true,
// );

await deployStrategyDirectly(
strategyParams.name,
strategyParams.version,
[],
true,
);
};

// Check if this script is the main module (being run directly)
Expand Down

0 comments on commit ee6dbbd

Please sign in to comment.