-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: adjust prettier * chore: Deps * refactor: Hide network selector * chore: Bump @yearn-finance/web-lib * feat: Add new column * feat(MultiSelectDropdown): Start implementing the multi select dropdown * fix: Combobox logic to handle unselecting an option * feat: Add Select All option * feat: Add chain icons * fix: Options container style * feat: Set width of chain icon * Ofix: Vite vulnerability * fix: JSX elements cannot have multiple attributes with the same name * refactor: Use chain icons from web-lib * refactor: Use chain icon * feat: Support yDaemon url without chain * feat: Get all vaults from multiple chains * refactor: Remove safeChainID * feat: Remove safeChainID, use selected chains * fix: dep * fix: dep * fix: dep * feat: add prettier * feat: add husky * feat: add husky * fix: line length * fix: single attribute per line * feat: push vscode config * fix: color * fix: color + hover effect * feat: refactor * fix: prices * fix: all selected * fix: issues with selectors * fix: animation and zod * fix: deposited includes all chains * fix: earned * wip: apy * fix: On Optimism it shows New on the list but 0 inside * WIP * fix: uri * fix: boost * rebase * feat: bump lib * feat: APR setup * fix: missing icon * fix: invalid name * fix: endpoint * fix: rebase * fix: dependencies * fix: zod retired * feat: working on APY * feat: rebase * fix: invalid schema * fix: ordering * fix: update dependencies * fix: minor UI adjustments * feat: by default all selected chains * fix: can unselect stuff * fix: can unselect stuff * fix: truncate * fix: maybe fix invalid balance display * fix: no zap possible & ui freeze * fix: responsiveness issue * fix: overflow * fix: filters * fix: blockchain order * fix: underline * fix: lint * fix: split all * fix: display historical when no forward * feat: remove safeChainID usage * fix: more chain fixes * fix: some elements * fix: add missing chains * fix: forknet balances * fix: forknet balances * fix: search all * fix: use forknet * wip: debt ratio checks * feat: some useAsyncEffect * fix: useless multiple re-render * fix: hide tooltip when 0 apr * fix: invalid hooks * feat: use search query for vault list * fix: missing arg and rename func * fix: use staking rewards too * fix: 0.00 tooltip * fix: remove chain check on boosted vaults * feat: use query args * fix: search * fix: remove log * fix: order * fix: order and APR display * fix: add condition to hide when staking rewards is 0 or boost is 0 * fix: hide balancer category * fix: upd yarnlock * fix: lint * fix: merge conflicts * fix: allowance * fix: enabling display of compact values * fix: set to 2 decimals * fix: replicate changes from main * fix: error message when searching no result * feat: use smol for chain image * fix: balance non-active * fix: rebase * fix: double return --------- Co-authored-by: Majorfi <[email protected]> Co-authored-by: Karelian Pie <[email protected]>
- Loading branch information
1 parent
98f9f1c
commit 61dcd7b
Showing
257 changed files
with
20,999 additions
and
8,071 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,14 +1,17 @@ | ||
--- | ||
name: Feature Request Proposal | ||
about: Ask for a new feature for this website | ||
title: 'FRP: ' | ||
title: 'FRP: ' | ||
--- | ||
|
||
### What is your proposal 🚀 | ||
|
||
**A clear and concise description of what you are asking for.** | ||
|
||
### What does this solve ? 🛠 | ||
|
||
**A clear and concise description about why this is a nice to have.** | ||
|
||
### More 🔎 | ||
*N/A* | ||
|
||
_N/A_ |
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 |
---|---|---|
|
@@ -15,7 +15,6 @@ pnpm-debug.log* | |
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
|
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,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx lint-staged |
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,4 @@ | ||
{ | ||
"*.ts|*.tsx": ["yarn prettier-format", "eslint"], | ||
"*.scss|*.css": "yarn prettier-format" | ||
} |
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 @@ | ||
{ | ||
"singleQuote": true, | ||
"semi": true, | ||
"useTabs": true, | ||
"tabWidth": 4, | ||
"trailingComma": "none", | ||
"bracketSpacing": false, | ||
"arrowParens": "avoid", | ||
"bracketSameLine": true, | ||
"singleAttributePerLine": true, | ||
"printWidth": 120 | ||
} |
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,37 @@ | ||
{ | ||
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"], | ||
"files.trimTrailingWhitespace": true, | ||
"search.exclude": { | ||
"**/node_modules": true | ||
}, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true, | ||
"editor.wordWrap": "off", | ||
"editor.autoIndent": "keep", | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll": true | ||
}, | ||
"editor.quickSuggestions": { | ||
"strings": true | ||
}, | ||
"css.validate": false, | ||
"less.validate": false, | ||
"scss.validate": false, | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[postcss]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.
61dcd7b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
yearnfi – ./
vote.yearn.finance
ydraft.vercel.app
yearn.fi
beta.yearn.farm
ybribe.com
www.yearn.fi
www.y.finance
yearn.finance
www.ybribe.com
y.finance
yearnfi.yearn.farm
yearnfi-git-main.yearn.farm