-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add modifyLiquidity script and call with ffi to check to test for acc…
…uracy (#702) * import v3-sdk to ffi * run with isolate * checkpoint ffi addLiq * modifyLiquidity delta check * add weird pool setups * failing fuzz * add fuzz ffi for addLiquidity * remove console * Use MIT license for test scripts * bundle typescript into javascript files (#713) * bundle typescript into javascript files * remove unused imports * adjust just file * fix ci * remove console logs * add prettier config and format code * add prettier to linter --------- Co-authored-by: Diana Kocsis <[email protected]> Co-authored-by: gretzke <[email protected]>
- Loading branch information
1 parent
c0adc1c
commit 6e6ce35
Showing
29 changed files
with
118,459 additions
and
1,222 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
FOUNDRY_FUZZ_SEED=0x4444 | ||
|
||
if [[ "$OSTYPE" == "linux-gnu"* ]]; then | ||
export FOUNDRY_SOLC="./bin/solc-static-linux" | ||
elif [[ "$OSTYPE" == "darwin"* ]]; then | ||
export FOUNDRY_SOLC="./bin/solc-mac" | ||
fi | ||
FOUNDRY_FUZZ_SEED=0x4444 |
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
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,5 @@ | ||
## Related Issue | ||
|
||
Which issue does this pull request resolve? | ||
|
||
## Description of changes | ||
## Description of changes |
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
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
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,7 @@ | ||
.prettierrc | ||
foundry.toml | ||
out | ||
lib/ | ||
cache/ | ||
*.sol | ||
dist/ |
Oops, something went wrong.