Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Easy rf update #672

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading