-
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.
feat: add flashmint leveraged aerodrome (#113)
* update tokenlists * add tests for issuance modules * add leveraged aerodrome address + abi * add contract functions * lint * update import sorting * add builder * fix typo * add export * add leveraged aerodrome quote provider * add test for minting w/ erc20s * remove log * add remaining quote provider tests * integrate leveraged aerodrome quote provider * add integration tests * remove obsolete check for iceth * add tests for usdc. update slippage for redeem to eth * enable base tests * update signers for bast tests * update signer for eth3x * remove obsolete argument * skip eth3x tests * up slippage * add aerodrome as an exchange
- Loading branch information
1 parent
e72d686
commit 0d88991
Showing
37 changed files
with
2,016 additions
and
117 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
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,46 +1,49 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", | ||
"vcs": { | ||
"enabled": false, | ||
"clientKind": "git", | ||
"useIgnoreFile": false | ||
}, | ||
"files": { | ||
"include": ["src/**"], | ||
"ignoreUnknown": false, | ||
"ignore": ["node_modules", "cache", "coverage", "dist", "build"] | ||
}, | ||
"formatter": { | ||
"enabled": true, | ||
"indentStyle": "space" | ||
}, | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true, | ||
"complexity": { | ||
"noForEach": "warn" | ||
}, | ||
"style": { | ||
"noNonNullAssertion": "off", | ||
"noUselessElse": "off" | ||
}, | ||
"suspicious": { | ||
"noExplicitAny": "off", | ||
"noFocusedTests": "off" | ||
} | ||
} | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"indentStyle": "space", | ||
"indentWidth": 2, | ||
"quoteProperties": "preserve", | ||
"quoteStyle": "single", | ||
"semicolons": "asNeeded" | ||
} | ||
} | ||
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", | ||
"vcs": { | ||
"enabled": false, | ||
"clientKind": "git", | ||
"useIgnoreFile": false | ||
}, | ||
"files": { | ||
"include": ["src/**"], | ||
"ignoreUnknown": false, | ||
"ignore": ["node_modules", "cache", "coverage", "dist", "build"] | ||
}, | ||
"formatter": { | ||
"enabled": true, | ||
"indentStyle": "space" | ||
}, | ||
"organizeImports": { | ||
"enabled": true | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true, | ||
"complexity": { | ||
"noForEach": "warn" | ||
}, | ||
"correctness": { | ||
"noUnusedImports": "error" | ||
}, | ||
"style": { | ||
"noNonNullAssertion": "off", | ||
"noUselessElse": "off" | ||
}, | ||
"suspicious": { | ||
"noExplicitAny": "off", | ||
"noFocusedTests": "off" | ||
} | ||
} | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"indentStyle": "space", | ||
"indentWidth": 2, | ||
"quoteProperties": "preserve", | ||
"quoteStyle": "single", | ||
"semicolons": "asNeeded" | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.