Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Redeploy CharityApplications contract #220

Merged
merged 2 commits into from
Jul 21, 2023
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
4 changes: 2 additions & 2 deletions contract-address.json
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,8 @@
},
"multiSig": {
"charityApplications": {
"implementation": "0xe657852734f2c5215a5e8A69EF564eAfAFfb81bC",
"proxy": "0x3769916a8c97FFf1C48DE49b03181578576aFdF1"
"implementation": "0xE2Af564F27EE4a6721f1650f9FAa975a11Fdc50F",
"proxy": "0x4cb1E5cc57a5cEb38C0087300cFdDDE3a08B3694"
},
"apTeam": {
"implementation": "0xC944590c3fe90e97129ac5AF077DCFB229f3A909",
Expand Down
2 changes: 1 addition & 1 deletion tasks/deploy/deployAccountsDiamond.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ task("AccountsDiamond", "It will deploy accounts diamond contracts")
{accountsContract: deployData.diamond.address},
hre
);
await hre.run("manage:CharityApplication:updateConfig", {
await hre.run("manage:CharityApplications:updateConfig", {
accountsDiamond: deployData.diamond.address,
yes: true,
});
Expand Down
2 changes: 1 addition & 1 deletion tasks/upgrade/upgradeContractsUsingAccountStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ task(
return logger.out("Confirmation denied.", logger.Level.Warn);
}

await hre.run("upgrade:CharityApplication", {skipVerify: taskArgs.skipVerify, yes: true});
await hre.run("upgrade:CharityApplications", {skipVerify: taskArgs.skipVerify, yes: true});
await hre.run("upgrade:facets", {
facets: ["all"],
skipVerify: taskArgs.skipVerify,
Expand Down