├── .env.example ├── .eslintrc.json ├── .github └── workflows │ └── validate.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.tsx ├── components │ ├── app │ │ ├── Alerts │ │ │ └── index.tsx │ │ ├── Charts │ │ │ ├── BarChart │ │ │ │ └── index.tsx │ │ │ └── SpiderWeb │ │ │ │ └── index.tsx │ │ ├── GenericList │ │ │ ├── EnhancedTableHead.tsx │ │ │ ├── EnhancedTableToolbar.tsx │ │ │ ├── HeadCell.tsx │ │ │ ├── ItemRow.tsx │ │ │ ├── Order.tsx │ │ │ ├── index.tsx │ │ │ ├── useStyles.tsx │ │ │ └── utils.tsx │ │ ├── HealthCheckReport │ │ │ └── index.tsx │ │ ├── Home │ │ │ └── index.tsx │ │ ├── KeepCRVReport │ │ │ └── index.tsx │ │ ├── NavBar │ │ │ ├── SyncStatus.tsx │ │ │ ├── index.tsx │ │ │ └── yearnwatch.png │ │ ├── Query │ │ │ └── index.tsx │ │ ├── Risk │ │ │ └── index.tsx │ │ ├── SingleStrategy │ │ │ ├── AccordionReport.tsx │ │ │ ├── BreadCrumbs.tsx │ │ │ ├── CardContent.tsx │ │ │ ├── GenLender.tsx │ │ │ ├── StrategyDetail.tsx │ │ │ ├── StrategyHealthCheck.tsx │ │ │ ├── StrategyReports.tsx │ │ │ ├── StrategyTokens.tsx │ │ │ ├── TokenCard.tsx │ │ │ └── index.tsx │ │ ├── SingleVault │ │ │ ├── SingleVaultCard.tsx │ │ │ ├── VaultDescription.tsx │ │ │ └── index.tsx │ │ ├── StrategiesList │ │ │ └── index.tsx │ │ ├── StrategyProtocolList │ │ │ └── index.tsx │ │ ├── VaultItemList │ │ │ └── index.tsx │ │ └── index.tsx │ ├── common │ │ ├── Alerts │ │ │ └── index.tsx │ │ ├── AuditScoreTooltip │ │ │ └── index.tsx │ │ ├── CodeReviewTooltip │ │ │ └── index.tsx │ │ ├── ComplexityTooltip │ │ │ └── index.tsx │ │ ├── DebToolTip │ │ │ └── index.tsx │ │ ├── EtherScanLink │ │ │ └── index.tsx │ │ ├── GroupQuery │ │ │ └── index.tsx │ │ ├── HealthCheckIcon │ │ │ └── index.tsx │ │ ├── HtmlTooltip │ │ │ └── index.tsx │ │ ├── ItemDescription │ │ │ └── index.tsx │ │ ├── Labels │ │ │ └── index.ts │ │ ├── LongevityTooltip │ │ │ └── index.tsx │ │ ├── NetworkSelect │ │ │ └── index.tsx │ │ ├── ProgressBar │ │ │ └── index.tsx │ │ ├── ProgressSpinnerBar │ │ │ └── ProgressSpinnerBar.tsx │ │ ├── ProtocolSafetyTooltip │ │ │ └── index.tsx │ │ ├── ProtocolsList │ │ │ └── index.tsx │ │ ├── ReactHelmet │ │ │ └── index.tsx │ │ ├── ResultsLabel │ │ │ └── index.tsx │ │ ├── RiskChart │ │ │ └── index.tsx │ │ ├── ScoreRowCollapse │ │ │ └── index.tsx │ │ ├── SearchInput │ │ │ └── index.tsx │ │ ├── SearchProtocolInput │ │ │ └── index.tsx │ │ ├── Semaphore │ │ │ └── index.tsx │ │ ├── TVLImpactTooltip │ │ │ └── index.tsx │ │ ├── Table │ │ │ └── index.tsx │ │ ├── TeamKnowledgeTooltip │ │ │ └── index.tsx │ │ ├── TestTooltip │ │ │ └── index.tsx │ │ ├── TokenPrice │ │ │ └── index.tsx │ │ ├── VaultsList │ │ │ └── index.tsx │ │ ├── WarningLabel │ │ │ └── index.tsx │ │ └── headers │ │ │ └── scoresHeaderDefinition.tsx │ └── theme │ │ ├── Themes.js │ │ ├── globalStyles.js │ │ └── useDarkMode.js ├── contexts │ └── StrategyReportContext.tsx ├── factories │ ├── strategy.factory.ts │ └── token.factory.ts ├── hooks │ ├── index.tsx │ ├── use-healthcheck-strategies.tsx │ ├── use-strategies-keep-crv.tsx │ ├── use-strategies-missing-risk.tsx │ ├── use-strategy-gen-lender.tsx │ ├── use-strategy-metadata.tsx │ ├── use-strategy.tsx │ ├── use-sync-status.tsx │ └── use-vault.tsx ├── icons │ ├── chevron-down.svg │ └── networks │ │ ├── ethereum.svg │ │ └── fantom.svg ├── images │ ├── background_image_yearn_watch_dark.jpeg │ ├── background_image_yearn_watch_light.svg │ ├── chevron_down_dark.svg │ ├── chevron_down_light.svg │ ├── eth_logo_dark.svg │ ├── eth_logo_light.svg │ ├── ftm_logo_dark.svg │ ├── ftm_logo_light.svg │ ├── loadingBackground.svg │ ├── logo_yearn_watch_dark.svg │ ├── logo_yearn_watch_light.svg │ └── yearn_background_light_no_mitch.svg ├── index.tsx ├── logo.svg ├── react-app-env.d.ts ├── services │ └── VaultService │ │ ├── arbitrum.ts │ │ ├── ethereum.ts │ │ ├── fantom.ts │ │ ├── index.ts │ │ └── utils.ts ├── setupTests.ts ├── types │ ├── DefaultParamTypes.ts │ ├── address-config.ts │ ├── config.ts │ ├── grouping.ts │ ├── index.ts │ ├── multicall.ts │ ├── network-config.ts │ ├── network.ts │ ├── protocol-tvl.ts │ ├── query-param.ts │ ├── strategy-queue-index.ts │ ├── strategy-tvl.ts │ ├── strategy.ts │ ├── token.ts │ └── vault.ts └── utils │ ├── __tests__ │ ├── commonUtils.test.ts │ ├── env.test.ts │ └── strategiesHelper.test.ts │ ├── alerts.ts │ ├── apisRequest.ts │ ├── checks.ts │ ├── commonUtils.ts │ ├── config │ ├── arbitrum.ts │ ├── ethereum.ts │ ├── fantom.ts │ ├── index.ts │ └── risks.json │ ├── contracts │ ├── ABI │ │ ├── Oracle.json │ │ ├── StrategiesHelper.json │ │ ├── Strategy.json │ │ ├── Token.json │ │ ├── Vault.json │ │ ├── VaultAPI_030.json │ │ ├── VaultAPI_032.json │ │ └── index.ts │ ├── addresses.ts │ └── instances.ts │ ├── dateUtils.ts │ ├── debug.ts │ ├── env.ts │ ├── error.ts │ ├── ethers.ts │ ├── index.ts │ ├── math.ts │ ├── multicall.ts │ ├── network.ts │ ├── oracle.ts │ ├── reports.ts │ ├── request.ts │ ├── risk-framework.ts │ ├── risk.ts │ ├── strategies.ts │ ├── strategiesHelper.ts │ ├── strategyParams.ts │ ├── vaultMappings.ts │ └── vaults.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/app/Alerts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/Alerts/index.tsx -------------------------------------------------------------------------------- /src/components/app/Charts/BarChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/Charts/BarChart/index.tsx -------------------------------------------------------------------------------- /src/components/app/Charts/SpiderWeb/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/Charts/SpiderWeb/index.tsx -------------------------------------------------------------------------------- /src/components/app/GenericList/EnhancedTableHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/GenericList/EnhancedTableHead.tsx -------------------------------------------------------------------------------- /src/components/app/GenericList/EnhancedTableToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/GenericList/EnhancedTableToolbar.tsx -------------------------------------------------------------------------------- /src/components/app/GenericList/HeadCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/GenericList/HeadCell.tsx -------------------------------------------------------------------------------- /src/components/app/GenericList/ItemRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/GenericList/ItemRow.tsx -------------------------------------------------------------------------------- /src/components/app/GenericList/Order.tsx: -------------------------------------------------------------------------------- 1 | export type Order = 'asc' | 'desc'; 2 | -------------------------------------------------------------------------------- /src/components/app/GenericList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/GenericList/index.tsx -------------------------------------------------------------------------------- /src/components/app/GenericList/useStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/GenericList/useStyles.tsx -------------------------------------------------------------------------------- /src/components/app/GenericList/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/GenericList/utils.tsx -------------------------------------------------------------------------------- /src/components/app/HealthCheckReport/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/HealthCheckReport/index.tsx -------------------------------------------------------------------------------- /src/components/app/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/Home/index.tsx -------------------------------------------------------------------------------- /src/components/app/KeepCRVReport/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/KeepCRVReport/index.tsx -------------------------------------------------------------------------------- /src/components/app/NavBar/SyncStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/NavBar/SyncStatus.tsx -------------------------------------------------------------------------------- /src/components/app/NavBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/NavBar/index.tsx -------------------------------------------------------------------------------- /src/components/app/NavBar/yearnwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/NavBar/yearnwatch.png -------------------------------------------------------------------------------- /src/components/app/Query/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/Query/index.tsx -------------------------------------------------------------------------------- /src/components/app/Risk/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/Risk/index.tsx -------------------------------------------------------------------------------- /src/components/app/SingleStrategy/AccordionReport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/SingleStrategy/AccordionReport.tsx -------------------------------------------------------------------------------- /src/components/app/SingleStrategy/BreadCrumbs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/SingleStrategy/BreadCrumbs.tsx -------------------------------------------------------------------------------- /src/components/app/SingleStrategy/CardContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/SingleStrategy/CardContent.tsx -------------------------------------------------------------------------------- /src/components/app/SingleStrategy/GenLender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/SingleStrategy/GenLender.tsx -------------------------------------------------------------------------------- /src/components/app/SingleStrategy/StrategyDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/SingleStrategy/StrategyDetail.tsx -------------------------------------------------------------------------------- /src/components/app/SingleStrategy/StrategyHealthCheck.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/SingleStrategy/StrategyHealthCheck.tsx -------------------------------------------------------------------------------- /src/components/app/SingleStrategy/StrategyReports.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/SingleStrategy/StrategyReports.tsx -------------------------------------------------------------------------------- /src/components/app/SingleStrategy/StrategyTokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/SingleStrategy/StrategyTokens.tsx -------------------------------------------------------------------------------- /src/components/app/SingleStrategy/TokenCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/SingleStrategy/TokenCard.tsx -------------------------------------------------------------------------------- /src/components/app/SingleStrategy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/SingleStrategy/index.tsx -------------------------------------------------------------------------------- /src/components/app/SingleVault/SingleVaultCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/SingleVault/SingleVaultCard.tsx -------------------------------------------------------------------------------- /src/components/app/SingleVault/VaultDescription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/SingleVault/VaultDescription.tsx -------------------------------------------------------------------------------- /src/components/app/SingleVault/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/SingleVault/index.tsx -------------------------------------------------------------------------------- /src/components/app/StrategiesList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/StrategiesList/index.tsx -------------------------------------------------------------------------------- /src/components/app/StrategyProtocolList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/StrategyProtocolList/index.tsx -------------------------------------------------------------------------------- /src/components/app/VaultItemList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/VaultItemList/index.tsx -------------------------------------------------------------------------------- /src/components/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/app/index.tsx -------------------------------------------------------------------------------- /src/components/common/Alerts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/Alerts/index.tsx -------------------------------------------------------------------------------- /src/components/common/AuditScoreTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/AuditScoreTooltip/index.tsx -------------------------------------------------------------------------------- /src/components/common/CodeReviewTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/CodeReviewTooltip/index.tsx -------------------------------------------------------------------------------- /src/components/common/ComplexityTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/ComplexityTooltip/index.tsx -------------------------------------------------------------------------------- /src/components/common/DebToolTip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/DebToolTip/index.tsx -------------------------------------------------------------------------------- /src/components/common/EtherScanLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/EtherScanLink/index.tsx -------------------------------------------------------------------------------- /src/components/common/GroupQuery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/GroupQuery/index.tsx -------------------------------------------------------------------------------- /src/components/common/HealthCheckIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/HealthCheckIcon/index.tsx -------------------------------------------------------------------------------- /src/components/common/HtmlTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/HtmlTooltip/index.tsx -------------------------------------------------------------------------------- /src/components/common/ItemDescription/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/ItemDescription/index.tsx -------------------------------------------------------------------------------- /src/components/common/Labels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/Labels/index.ts -------------------------------------------------------------------------------- /src/components/common/LongevityTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/LongevityTooltip/index.tsx -------------------------------------------------------------------------------- /src/components/common/NetworkSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/NetworkSelect/index.tsx -------------------------------------------------------------------------------- /src/components/common/ProgressBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/ProgressBar/index.tsx -------------------------------------------------------------------------------- /src/components/common/ProgressSpinnerBar/ProgressSpinnerBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/ProgressSpinnerBar/ProgressSpinnerBar.tsx -------------------------------------------------------------------------------- /src/components/common/ProtocolSafetyTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/ProtocolSafetyTooltip/index.tsx -------------------------------------------------------------------------------- /src/components/common/ProtocolsList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/ProtocolsList/index.tsx -------------------------------------------------------------------------------- /src/components/common/ReactHelmet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/ReactHelmet/index.tsx -------------------------------------------------------------------------------- /src/components/common/ResultsLabel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/ResultsLabel/index.tsx -------------------------------------------------------------------------------- /src/components/common/RiskChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/RiskChart/index.tsx -------------------------------------------------------------------------------- /src/components/common/ScoreRowCollapse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/ScoreRowCollapse/index.tsx -------------------------------------------------------------------------------- /src/components/common/SearchInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/SearchInput/index.tsx -------------------------------------------------------------------------------- /src/components/common/SearchProtocolInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/SearchProtocolInput/index.tsx -------------------------------------------------------------------------------- /src/components/common/Semaphore/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/Semaphore/index.tsx -------------------------------------------------------------------------------- /src/components/common/TVLImpactTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/TVLImpactTooltip/index.tsx -------------------------------------------------------------------------------- /src/components/common/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/Table/index.tsx -------------------------------------------------------------------------------- /src/components/common/TeamKnowledgeTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/TeamKnowledgeTooltip/index.tsx -------------------------------------------------------------------------------- /src/components/common/TestTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/TestTooltip/index.tsx -------------------------------------------------------------------------------- /src/components/common/TokenPrice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/TokenPrice/index.tsx -------------------------------------------------------------------------------- /src/components/common/VaultsList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/VaultsList/index.tsx -------------------------------------------------------------------------------- /src/components/common/WarningLabel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/WarningLabel/index.tsx -------------------------------------------------------------------------------- /src/components/common/headers/scoresHeaderDefinition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/common/headers/scoresHeaderDefinition.tsx -------------------------------------------------------------------------------- /src/components/theme/Themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/theme/Themes.js -------------------------------------------------------------------------------- /src/components/theme/globalStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/theme/globalStyles.js -------------------------------------------------------------------------------- /src/components/theme/useDarkMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/components/theme/useDarkMode.js -------------------------------------------------------------------------------- /src/contexts/StrategyReportContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/contexts/StrategyReportContext.tsx -------------------------------------------------------------------------------- /src/factories/strategy.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/factories/strategy.factory.ts -------------------------------------------------------------------------------- /src/factories/token.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/factories/token.factory.ts -------------------------------------------------------------------------------- /src/hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/hooks/index.tsx -------------------------------------------------------------------------------- /src/hooks/use-healthcheck-strategies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/hooks/use-healthcheck-strategies.tsx -------------------------------------------------------------------------------- /src/hooks/use-strategies-keep-crv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/hooks/use-strategies-keep-crv.tsx -------------------------------------------------------------------------------- /src/hooks/use-strategies-missing-risk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/hooks/use-strategies-missing-risk.tsx -------------------------------------------------------------------------------- /src/hooks/use-strategy-gen-lender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/hooks/use-strategy-gen-lender.tsx -------------------------------------------------------------------------------- /src/hooks/use-strategy-metadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/hooks/use-strategy-metadata.tsx -------------------------------------------------------------------------------- /src/hooks/use-strategy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/hooks/use-strategy.tsx -------------------------------------------------------------------------------- /src/hooks/use-sync-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/hooks/use-sync-status.tsx -------------------------------------------------------------------------------- /src/hooks/use-vault.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/hooks/use-vault.tsx -------------------------------------------------------------------------------- /src/icons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/icons/chevron-down.svg -------------------------------------------------------------------------------- /src/icons/networks/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/icons/networks/ethereum.svg -------------------------------------------------------------------------------- /src/icons/networks/fantom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/icons/networks/fantom.svg -------------------------------------------------------------------------------- /src/images/background_image_yearn_watch_dark.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/images/background_image_yearn_watch_dark.jpeg -------------------------------------------------------------------------------- /src/images/background_image_yearn_watch_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/images/background_image_yearn_watch_light.svg -------------------------------------------------------------------------------- /src/images/chevron_down_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/images/chevron_down_dark.svg -------------------------------------------------------------------------------- /src/images/chevron_down_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/images/chevron_down_light.svg -------------------------------------------------------------------------------- /src/images/eth_logo_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/images/eth_logo_dark.svg -------------------------------------------------------------------------------- /src/images/eth_logo_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/images/eth_logo_light.svg -------------------------------------------------------------------------------- /src/images/ftm_logo_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/images/ftm_logo_dark.svg -------------------------------------------------------------------------------- /src/images/ftm_logo_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/images/ftm_logo_light.svg -------------------------------------------------------------------------------- /src/images/loadingBackground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/images/loadingBackground.svg -------------------------------------------------------------------------------- /src/images/logo_yearn_watch_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/images/logo_yearn_watch_dark.svg -------------------------------------------------------------------------------- /src/images/logo_yearn_watch_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/images/logo_yearn_watch_light.svg -------------------------------------------------------------------------------- /src/images/yearn_background_light_no_mitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/images/yearn_background_light_no_mitch.svg -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/react-app-env.d.ts -------------------------------------------------------------------------------- /src/services/VaultService/arbitrum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/services/VaultService/arbitrum.ts -------------------------------------------------------------------------------- /src/services/VaultService/ethereum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/services/VaultService/ethereum.ts -------------------------------------------------------------------------------- /src/services/VaultService/fantom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/services/VaultService/fantom.ts -------------------------------------------------------------------------------- /src/services/VaultService/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/services/VaultService/index.ts -------------------------------------------------------------------------------- /src/services/VaultService/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/services/VaultService/utils.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/types/DefaultParamTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/DefaultParamTypes.ts -------------------------------------------------------------------------------- /src/types/address-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/address-config.ts -------------------------------------------------------------------------------- /src/types/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/config.ts -------------------------------------------------------------------------------- /src/types/grouping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/grouping.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/multicall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/multicall.ts -------------------------------------------------------------------------------- /src/types/network-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/network-config.ts -------------------------------------------------------------------------------- /src/types/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/network.ts -------------------------------------------------------------------------------- /src/types/protocol-tvl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/protocol-tvl.ts -------------------------------------------------------------------------------- /src/types/query-param.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/query-param.ts -------------------------------------------------------------------------------- /src/types/strategy-queue-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/strategy-queue-index.ts -------------------------------------------------------------------------------- /src/types/strategy-tvl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/strategy-tvl.ts -------------------------------------------------------------------------------- /src/types/strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/strategy.ts -------------------------------------------------------------------------------- /src/types/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/token.ts -------------------------------------------------------------------------------- /src/types/vault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/types/vault.ts -------------------------------------------------------------------------------- /src/utils/__tests__/commonUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/__tests__/commonUtils.test.ts -------------------------------------------------------------------------------- /src/utils/__tests__/env.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/__tests__/env.test.ts -------------------------------------------------------------------------------- /src/utils/__tests__/strategiesHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/__tests__/strategiesHelper.test.ts -------------------------------------------------------------------------------- /src/utils/alerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/alerts.ts -------------------------------------------------------------------------------- /src/utils/apisRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/apisRequest.ts -------------------------------------------------------------------------------- /src/utils/checks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/checks.ts -------------------------------------------------------------------------------- /src/utils/commonUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/commonUtils.ts -------------------------------------------------------------------------------- /src/utils/config/arbitrum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/config/arbitrum.ts -------------------------------------------------------------------------------- /src/utils/config/ethereum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/config/ethereum.ts -------------------------------------------------------------------------------- /src/utils/config/fantom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/config/fantom.ts -------------------------------------------------------------------------------- /src/utils/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/config/index.ts -------------------------------------------------------------------------------- /src/utils/config/risks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/config/risks.json -------------------------------------------------------------------------------- /src/utils/contracts/ABI/Oracle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/contracts/ABI/Oracle.json -------------------------------------------------------------------------------- /src/utils/contracts/ABI/StrategiesHelper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/contracts/ABI/StrategiesHelper.json -------------------------------------------------------------------------------- /src/utils/contracts/ABI/Strategy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/contracts/ABI/Strategy.json -------------------------------------------------------------------------------- /src/utils/contracts/ABI/Token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/contracts/ABI/Token.json -------------------------------------------------------------------------------- /src/utils/contracts/ABI/Vault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/contracts/ABI/Vault.json -------------------------------------------------------------------------------- /src/utils/contracts/ABI/VaultAPI_030.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/contracts/ABI/VaultAPI_030.json -------------------------------------------------------------------------------- /src/utils/contracts/ABI/VaultAPI_032.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/contracts/ABI/VaultAPI_032.json -------------------------------------------------------------------------------- /src/utils/contracts/ABI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/contracts/ABI/index.ts -------------------------------------------------------------------------------- /src/utils/contracts/addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/contracts/addresses.ts -------------------------------------------------------------------------------- /src/utils/contracts/instances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/contracts/instances.ts -------------------------------------------------------------------------------- /src/utils/dateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/dateUtils.ts -------------------------------------------------------------------------------- /src/utils/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/debug.ts -------------------------------------------------------------------------------- /src/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/env.ts -------------------------------------------------------------------------------- /src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/error.ts -------------------------------------------------------------------------------- /src/utils/ethers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/ethers.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/math.ts -------------------------------------------------------------------------------- /src/utils/multicall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/multicall.ts -------------------------------------------------------------------------------- /src/utils/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/network.ts -------------------------------------------------------------------------------- /src/utils/oracle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/oracle.ts -------------------------------------------------------------------------------- /src/utils/reports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/reports.ts -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /src/utils/risk-framework.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/risk-framework.ts -------------------------------------------------------------------------------- /src/utils/risk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/risk.ts -------------------------------------------------------------------------------- /src/utils/strategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/strategies.ts -------------------------------------------------------------------------------- /src/utils/strategiesHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/strategiesHelper.ts -------------------------------------------------------------------------------- /src/utils/strategyParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/strategyParams.ts -------------------------------------------------------------------------------- /src/utils/vaultMappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/vaultMappings.ts -------------------------------------------------------------------------------- /src/utils/vaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/src/utils/vaults.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/yearn-watch-legacy/HEAD/yarn.lock --------------------------------------------------------------------------------