-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com-facuspagnuolo:mimic-fi/v3-core in…
…to tasks/implement_new_timelock_modes
- Loading branch information
Showing
38 changed files
with
2,387 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Prover | ||
name: Prover Authorizer | ||
|
||
env: | ||
CI: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Prover Relayer | ||
|
||
env: | ||
CI: true | ||
|
||
on: | ||
pull_request: | ||
branches: "*" | ||
paths: | ||
- packages/relayer/** | ||
|
||
jobs: | ||
prove: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Prove | ||
uses: ./.github/actions/certora | ||
with: | ||
workspace: '@mimic-fi/v3-relayer' | ||
certora-key: ${{ secrets.CERTORA_KEY }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Prover Smart Vault | ||
|
||
env: | ||
CI: true | ||
|
||
on: | ||
pull_request: | ||
branches: "*" | ||
paths: | ||
- packages/smart-vault/** | ||
|
||
jobs: | ||
prove: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Prove | ||
uses: ./.github/actions/certora | ||
with: | ||
workspace: '@mimic-fi/v3-smart-vault' | ||
certora-key: ${{ secrets.CERTORA_KEY }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
pragma solidity ^0.8.0; | ||
|
||
contract Helpers { | ||
function authParams(address p1, address p2, bytes4 p3) external pure returns (uint256[] memory r) { | ||
r = new uint256[](3); | ||
r[0] = uint256(uint160(p1)); | ||
r[1] = uint256(uint160(p2)); | ||
r[2] = uint256(uint32(p3)); | ||
} | ||
} |
Oops, something went wrong.