-
Notifications
You must be signed in to change notification settings - Fork 0
Simplifications #1
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
Merged
Changes from 9 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
da78aa2
Stop burning on redeem, allow partial withdraw, whitelist gated NFAT …
fe8ef66
Make fund permissionless & remove redundant view func
951aa32
Update CI
2bbec11
Remove totalDeposits
169f145
Remove notStopped from ops other than claim
b197309
Make stop roleAuth
9f2d19b
Pass (from, to) to whitelist
e279a1e
Minor fixes
160e735
Remove unnecessary transfer requires
b433021
Add funder address to Fund event
be93d1d
Use IdentityNetwork nomenclature
2de018c
Remove {principal, depositor, mintedAt}
2341b70
Minor nits
363e5ec
Merge Redeemer with Facillity
b2fc78d
Rename susds to gem
820309f
Add README
695c5a9
Add deploy scripts + nits
b4a4484
Add tests
e5a7879
Add dss-test
3f47478
Improve README
e374517
Remove role system
e5ca921
Check membership in redeem
9f0d699
Rename claim -> issue
e57ed7f
Clarify README
8071273
Inherit ERC721 from OZ
b7139ff
Pick tokenId offchain
7b77d9c
Allow mint with no deposit claimed
539ac81
Add rescue functions
c587941
Strip natspec and unnecessary comments
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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,38 +1,33 @@ | ||
| name: CI | ||
| name: test | ||
|
|
||
| permissions: {} | ||
|
|
||
| on: | ||
| push: | ||
| pull_request: | ||
| workflow_dispatch: | ||
|
|
||
| env: | ||
| FOUNDRY_PROFILE: ci | ||
| on: [push, pull_request] | ||
|
|
||
| jobs: | ||
| check: | ||
| strategy: | ||
| fail-fast: true | ||
|
|
||
| name: Foundry project | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - uses: actions/checkout@v3 | ||
| with: | ||
| persist-credentials: false | ||
| submodules: recursive | ||
|
|
||
| - name: Install Foundry | ||
| uses: foundry-rs/foundry-toolchain@v1 | ||
|
|
||
| - name: Show Forge version | ||
| run: forge --version | ||
|
|
||
| - name: Run Forge fmt | ||
| run: forge fmt --check | ||
| with: | ||
| version: stable | ||
|
|
||
| - name: Run Forge build | ||
| run: forge build --sizes | ||
| run: | | ||
| forge --version | ||
| forge build --sizes | ||
| id: build | ||
|
|
||
| - name: Run Forge tests | ||
| run: forge test -vvv | ||
| run: | | ||
| forge test -vvv | ||
| id: test | ||
| env: | ||
| ETH_RPC_URL: ${{ secrets.ETH_RPC_URL }} |
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.