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

Feat/cross currency fcash #60

Merged
merged 27 commits into from
Nov 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
88e5171
fix: fix abis
jeffywu Aug 26, 2023
3b5361e
feat: initial changes
jeffywu Aug 26, 2023
87e93a1
build: compiling
jeffywu Sep 30, 2023
97e9bf4
forge install: openzeppelin-contracts
jeffywu Sep 30, 2023
aab4c9e
forge install: openzeppelin-contracts-upgradeable
jeffywu Sep 30, 2023
f984a96
fix: adding dependencies
jeffywu Sep 30, 2023
14366d3
build: remove javascript
jeffywu Sep 30, 2023
02c8585
fix: updates to cross currency vault
jeffywu Sep 30, 2023
249ccd6
feat: adding cross chain vault draft
jeffywu Sep 30, 2023
39e8f73
adding notes to cross chain vault
jeffywu Oct 2, 2023
94bda30
test: base acceptance compiling
jeffywu Oct 4, 2023
ca570fc
fix: first test passing
jeffywu Oct 4, 2023
9d19402
fix: initializing vault
jeffywu Oct 4, 2023
2375502
fix: setting token permissions
jeffywu Oct 4, 2023
4a75c63
fix: enter vault working
jeffywu Oct 4, 2023
56d282e
fix: adding exit vault tests
jeffywu Oct 4, 2023
58a2dec
fix: enter and exit generic
jeffywu Oct 4, 2023
43ce693
test: settle vault
jeffywu Oct 4, 2023
a73984e
test: vault authentication
jeffywu Oct 4, 2023
80b932b
test: donation tests
jeffywu Oct 4, 2023
e19f285
test: making fcash more generic
jeffywu Oct 4, 2023
16e7436
test: adding slippage tests
jeffywu Oct 5, 2023
b792f1d
test: fuzzing amounts
jeffywu Oct 5, 2023
60ce572
fix: adding eth lend tests
jeffywu Oct 5, 2023
4ee5ea8
test: trading module tests
jeffywu Oct 5, 2023
98948e7
fix: trading tests
jeffywu Oct 5, 2023
b2a8e56
fix: removing unused code
jeffywu Oct 5, 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
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ __pycache__
.hypothesis/
build/
reports/
node_modules/
cache/
venv
artifacts
artifacts
out/
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[submodule "lib/forge-std"]
path = lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "lib/openzeppelin-contracts"]
path = lib/openzeppelin-contracts
url = https://github.com/openzeppelin/openzeppelin-contracts
[submodule "lib/openzeppelin-contracts-upgradeable"]
path = lib/openzeppelin-contracts-upgradeable
url = https://github.com/openzeppelin/openzeppelin-contracts-upgradeable
Loading