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

[VEN-1146]: Added vip for comptroller diamond proxy #11

Merged
merged 25 commits into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
ff161d2
Added vip for comptroller diamond proxy
Debugger022 Apr 20, 2023
e3dfba9
Fix: lint fixes
Debugger022 Apr 20, 2023
568a0f8
refactor: changes in the diamond proxy vip.
Debugger022 May 18, 2023
78d3f8f
refactor: changes in the vip framework utils.
Debugger022 May 18, 2023
a899f9f
refactor: added script to create a diamond cut- params for facets
Debugger022 May 18, 2023
b24301f
fix: pr comments
Debugger022 Jun 16, 2023
cfe4633
fix: rebased develop branch and resolved conflicts
Debugger022 Jun 16, 2023
bbb5e1d
fix: lint issues
Debugger022 Jun 16, 2023
6cdc98b
refactor: give access to the setCloseFactor
Debugger022 Aug 4, 2023
5281ec1
fix: updated latest address and tests for diamond comptroller
Debugger022 Sep 12, 2023
ef02e90
Merge branch 'develop' into vip-diamond-comptroller-testnet
Debugger022 Sep 12, 2023
d3644d2
fix: lint issues
Debugger022 Sep 12, 2023
be0cf49
fix: pr comments
Debugger022 Sep 15, 2023
109cfc1
feat: vip for diamond comptroller mainnet
Debugger022 Sep 18, 2023
192dcf6
refactor: wip addresses changes for facets and diamond
Debugger022 Sep 20, 2023
6a97c31
refactor: changed facet and diamond addresses
Debugger022 Sep 20, 2023
b2edd66
refactor: changed variables names
Debugger022 Sep 20, 2023
68b5bd8
feat: added addresses for the facets for diamond comptroller mainnet
Debugger022 Sep 21, 2023
d6c9145
fix: lint issues
Debugger022 Sep 21, 2023
2c2f244
fix: mainnet simulations
Debugger022 Sep 21, 2023
2c719fb
fix: renamed diamond comptroller vip files and folders
Debugger022 Sep 25, 2023
c64f95b
refactor: vip-174 description
Debugger022 Sep 25, 2023
544c549
fix: revert changes for transaction.ts
Debugger022 Sep 25, 2023
2b19173
fix: set the right format in the VIP-174 description field
chechu Sep 25, 2023
cba8076
fix: use EVM instead of Ethereum, use ndash
kkirka Sep 25, 2023
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
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import fs from "fs";
import { HardhatUserConfig, task } from "hardhat/config";

require("dotenv").config();

Check warning on line 7 in hardhat.config.ts

View workflow job for this annotation

GitHub Actions / lint

Require statement not part of import statement
const DEPLOYER_PRIVATE_KEY = process.env.DEPLOYER_PRIVATE_KEY;

task("accounts", "Prints the list of accounts", async (taskArgs, hre) => {
Expand Down Expand Up @@ -83,7 +83,7 @@
blockNumber: 21068448,
},
accounts: {
accountsBalance: "1000000000000000000",
accountsBalance: "100000000000000000000000",
},
live: false,
}
Expand Down
Loading
Loading