Skip to content

Commit

Permalink
Feature/616 (#825)
Browse files Browse the repository at this point in the history
* refactor(deploy): get CreditClockFacet selectors dynamically
  • Loading branch information
rndquu committed Oct 24, 2023
1 parent af8370b commit 7c3a0bb
Show file tree
Hide file tree
Showing 8 changed files with 151 additions and 743 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/coverage-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
ref: development

- name: Setup Foundry
uses: onbjerg/foundry-toolchain@v1
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly-5be158ba6dc7c798a6f032026fe60fc01686b33b

Expand Down Expand Up @@ -70,6 +70,10 @@ jobs:
- name: Checkout code in PR branch
uses: actions/checkout@v3

- name: Update Forge Dependencies
working-directory: packages/contracts
run: forge update lib/forge-std

- name: Get PR branch coverage
id: coverage-pr
run: |
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
[submodule "packages/contracts/lib/forge-std"]
path = packages/contracts/lib/forge-std
url = https://github.com/foundry-rs/forge-std
branch = chore/v1.5.6
branch = chore/reorder-vm # v1.6.1
[submodule "packages/contracts/lib/abdk-libraries-solidity"]
path = packages/contracts/lib/abdk-libraries-solidity
url = https://github.com/abdk-consulting/abdk-libraries-solidity
Expand Down
1 change: 1 addition & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"coef",
"collateralized",
"commitlint",
"concat",
"connectkit",
"Consts",
"Cpath",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
pragma solidity 0.8.19;

import "../../../../src/dollar/libraries/Constants.sol";
import {DiamondTestHelper} from "../../../../test/helpers/DiamondTestHelper.sol";
import "forge-std/Script.sol";

contract Constants is Script {
contract Constants is DiamondTestHelper, Script {
address constant curve3PoolToken =
0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490;
address constant basePool = 0xbEbc44782C7dB0a1A60Cb6fe97d0b483032FF1C7;
Expand Down
Loading

1 comment on commit 7c3a0bb

@ubiquibot
Copy link

@ubiquibot ubiquibot bot commented on 7c3a0bb Oct 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.