├── .babelrc ├── .editorconfig ├── .env.development ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report---.md │ └── feature-request---.md ├── actions │ ├── analyze-comment │ │ └── action.yml │ ├── build │ │ └── action.yml │ ├── cypress │ │ └── action.yml │ ├── fork-result-comment │ │ └── action.yml │ ├── fork-result-label │ │ └── action.yml │ ├── ipfs-pin │ │ └── action.yml │ └── upload-artifacts │ │ └── action.yml ├── dependabot.yml ├── pull_request_template.md ├── release-template.md └── workflows │ ├── build-fork.yml │ ├── build-test-deploy-dev.yml │ ├── build-test-deploy.yml │ ├── crowdin-download.yml │ ├── crowdin-upload.yml │ ├── dependency-review.yml │ ├── i18n-check.yml │ ├── test-deploy-fork.yml │ └── update-prod-staging.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .linguirc ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── commitlint.config.js ├── crowdin.yml ├── custom.d.ts ├── cypress.config.ts ├── cypress ├── README.md ├── configs │ ├── base.cypress.ts │ ├── general.config.ts │ ├── governance-stake.config.ts │ ├── local │ │ └── full.config.ts │ ├── mobile.config.ts │ ├── settings.config.ts │ ├── v2-markets │ │ ├── ethereum-v2-additional.config.ts │ │ ├── ethereum-v2-full.config.ts │ │ └── ethereum-v2-smoke.config.ts │ ├── v3-markets │ │ ├── arbitrum-v3-additional.config.ts │ │ ├── arbitrum-v3-full.config.ts │ │ ├── arbitrum-v3-smoke.config.ts │ │ ├── avalanche-v3-additional.config.ts │ │ ├── avalanche-v3-full.config.ts │ │ ├── avalanche-v3-smoke.config.ts │ │ ├── base-v3-full.config.ts │ │ ├── base-v3-smoke.config.ts │ │ ├── bnb-v3-smoke.config.ts │ │ ├── ethereum-v3-additional.config.ts │ │ ├── ethereum-v3-full.config.ts │ │ ├── ethereum-v3-smoke.config.ts │ │ ├── gnosis-v3-full.config.ts │ │ ├── gnosis-v3-smoke.config.ts │ │ ├── optimism-v3-additional.config.ts │ │ ├── optimism-v3-full.config.ts │ │ ├── optimism-v3-smoke.config.ts │ │ ├── polygon-v3-additional.config.ts │ │ ├── polygon-v3-full.config.ts │ │ └── polygon-v3-smoke.config.ts │ └── widgets.config.ts ├── e2e │ ├── 0-v2-markets │ │ ├── 0-main-v2-market │ │ │ ├── 0-assets │ │ │ │ ├── dai.aave-v2.cy.ts │ │ │ │ ├── eth.aave-v2.cy.ts │ │ │ │ ├── usdc.aave-v2.cy.ts │ │ │ │ └── usdt.aave-v2.cy.ts │ │ │ ├── migration.aave-v2.cy.ts │ │ │ ├── reward.aave-v2.cy.ts │ │ │ ├── swap.aave-v2.cy.ts │ │ │ └── switch.aave-v2.cy.ts │ │ ├── 2-polygon-v2-market │ │ │ ├── 0-assets │ │ │ │ ├── dai.polygon-v2.cy.ts │ │ │ │ ├── matic.polygon-v2.cy.ts │ │ │ │ ├── usdc.polygon-v2.cy.ts │ │ │ │ └── usdt.polygon-v2.cy.ts │ │ │ ├── critical-conditions.polygon-v2.cy.ts │ │ │ ├── migration.polygon-v2.cy.ts │ │ │ └── swap.polygon-v2.cy.ts │ │ └── 3-avalanche-v2-market │ │ │ ├── 0-assets │ │ │ ├── avax.avalanche-v2.cy.ts │ │ │ ├── dai.avalanche-v2.cy.ts │ │ │ ├── usdc.avalanche-v2.cy.ts │ │ │ ├── usdt.avalanche-v2.cy.ts │ │ │ ├── wbtc.avalanche-v2.cy.ts │ │ │ └── weth.avalanche-v2.cy.ts │ │ │ ├── critical-conditions.avalanche-v2.cy.ts │ │ │ ├── migration.avalanche-v2.cy.ts │ │ │ ├── reward.avalanche-v2.cy.ts │ │ │ └── swap.avalanche-v2.cy.ts │ ├── 1-v3-markets │ │ ├── 0-ethereum-v3-market │ │ │ ├── 0-assets │ │ │ │ ├── dai.ethereum-v3.cy.ts │ │ │ │ ├── eth.ethereum-v3.cy.ts │ │ │ │ ├── link.ethereum-v3.cy.ts │ │ │ │ ├── usdc.ethereum-v3.cy.ts │ │ │ │ ├── wbtc.ethereum-v3.cy.ts │ │ │ │ └── wsteth.ethereum-v3.cy.ts │ │ │ ├── critical-conditions.ethereum-v3.cy.ts │ │ │ ├── e-mode.ethereum-v3.cy.ts │ │ │ └── swap.ethereum-v3.cy.ts │ │ ├── 1-arbitrum-v3-market │ │ │ ├── 0-assets │ │ │ │ ├── dai.arbitrum-v3.cy.ts │ │ │ │ ├── eth.arbitrum-v3.cy.ts │ │ │ │ ├── link.arbitrum-v3.cy.ts │ │ │ │ ├── usdc.arbitrum-v3.cy.ts │ │ │ │ ├── usdt.arbitrum-v3.cy.ts │ │ │ │ └── wbtc.arbitrum-v3.cy.ts │ │ │ ├── critical-conditions.arbitrum-v3.cy.ts │ │ │ └── e-mode.arbitrum-v3.cy.ts │ │ ├── 10-metis-v3-market │ │ │ └── general.metis-v3.cy.ts │ │ ├── 11-scroll-v3-market │ │ │ └── general.scroll-v3.cy.ts │ │ ├── 2-avalanche-v3-market │ │ │ ├── 0-assets │ │ │ │ ├── avax.avalanche-v3.cy.ts │ │ │ │ ├── dai.avalanche-v3.cy.ts │ │ │ │ ├── link.avalanche-v3.cy.ts │ │ │ │ ├── usdc.avalanche-v3.cy.ts │ │ │ │ ├── usdt.avalacnhe-v3.cy.ts │ │ │ │ ├── wbtc.avalanche-v3.cy.ts │ │ │ │ └── weth.avalanche-v3.cy.ts │ │ │ ├── critical-conditions.avalanche-v3.cy.ts │ │ │ ├── e-mode.avalanche-v3.cy.ts │ │ │ ├── isolated-mode.avalanche-v3.cy.ts │ │ │ ├── reward.avalanche-v3.cy.ts │ │ │ ├── swap.avalanche-v3.cy.ts │ │ │ └── switch.avalacnhe-v3.cy.ts │ │ ├── 3-polygon-v3-market │ │ │ ├── 0-assets │ │ │ │ ├── dai.polygon-v3.cy.ts │ │ │ │ ├── eurs.polygon-v3.cy.ts │ │ │ │ ├── link.polygon-v3.cy.ts │ │ │ │ ├── matic.polygon-v3.cy.ts │ │ │ │ ├── usdc.polygon-v3.cy.ts │ │ │ │ ├── usdt.polygon-v3.cy.ts │ │ │ │ ├── wbtc.polygon-v3.cy.ts │ │ │ │ └── weth.polygon-v3.cy.ts │ │ │ ├── critical-conditions.polygon-v3.cy.ts │ │ │ ├── e-mode.polygon-v3.cy.ts │ │ │ ├── isolated-and-emode.polygon-v3.cy.ts │ │ │ ├── isolated-mode.polygon-v3.cy.ts │ │ │ ├── swap.polygon-v3.cy.ts │ │ │ └── switch.polygon-v3.cy.ts │ │ ├── 4-optimism-v3-market │ │ │ ├── 0-assets │ │ │ │ ├── dai.optimism-v3.cy.ts │ │ │ │ ├── eth.optimism-v3.cy.ts │ │ │ │ ├── link.optimism-v3.cy.ts │ │ │ │ ├── susd.optimism-v3.cy.ts │ │ │ │ ├── usdc.optimism-v3.cy.ts │ │ │ │ ├── usdt.optimism-v3.cy.ts │ │ │ │ └── wbtc.optimism-v3.cy.ts │ │ │ ├── critical-conditions.optimism-v3.cy.ts │ │ │ └── e-mode.optimism-v3.cy.ts │ │ ├── 6-base-v3-market │ │ │ ├── 0-assets │ │ │ │ ├── usdbc.base-v3.cy.ts │ │ │ │ └── weth.base-v3.cy.ts │ │ │ ├── e-mode.base-v3.cy.ts │ │ │ └── swap.base-v3.cy.ts │ │ ├── 7-gnosis-v3-market │ │ │ ├── 0-assets │ │ │ │ ├── usdc.gnosis-v3.cy.ts │ │ │ │ └── xdai.gnosis-v3.cy.ts │ │ │ └── e-mode.gnosis-v3.cy.ts │ │ └── 8-bnb-v3-market │ │ │ └── 0-assets │ │ │ ├── bnb.bnb-v3.cy.ts │ │ │ └── usdc.bnb-v3.cy.ts │ ├── 2-settings │ │ ├── change-languages.cy.ts │ │ ├── details.page.aave-v2.cy.ts │ │ ├── switch-market.cy.ts │ │ └── switch-tabs.cy.ts │ ├── 3-stake-governance │ │ ├── governance-deligation.cy.ts │ │ └── stake.cy.ts │ └── 5-widgets │ │ └── switch-tool.cy.ts ├── fixtures │ ├── assets.json │ ├── constans.json │ ├── donors.json │ ├── erc20_abi.json │ ├── markets.json │ └── poolConfig.json ├── plugins │ └── index.js ├── support │ ├── actions │ │ ├── dashboard.actions.ts │ │ └── tenderly.actions.ts │ ├── commands.ts │ ├── e2e.ts │ ├── helpers │ │ ├── dashboard.helper.ts │ │ ├── modal.helper.ts │ │ └── token.helper.ts │ ├── steps │ │ ├── common.ts │ │ ├── configuration.steps.ts │ │ ├── governance.steps.ts │ │ ├── main.steps.ts │ │ ├── stake.steps.ts │ │ ├── testnet-helpers.steps.ts │ │ └── verification.steps.ts │ └── tools │ │ ├── bridge.ts │ │ ├── math.util.ts │ │ └── tenderly.ts ├── tsconfig.json └── types │ └── window.d.ts ├── index.d.ts ├── jest.config.js ├── jest.setup.js ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── 404.page.tsx ├── 500.page.tsx ├── _app.page.tsx ├── _document.page.tsx ├── _error.page.tsx ├── api │ ├── SGhoService.ts │ ├── SGhoService.types.ts │ ├── coingecko-categories.ts │ ├── plain-mutations.ts │ ├── prices-proxy.md │ ├── prices-proxy.ts │ ├── rpc-proxy.ts │ ├── server-side-rpc-proxy.md │ ├── sgho-apy.ts │ ├── subgraph-proxy.ts │ └── support-create-ticket.ts ├── bridge.page.tsx ├── dashboard.page.tsx ├── faucet.page.tsx ├── governance │ ├── index.governance.tsx │ ├── ipfs-preview.governance.tsx │ └── v3 │ │ └── proposal │ │ └── index.governance.tsx ├── history.page.tsx ├── index.page.tsx ├── markets.page.tsx ├── reserve-overview.page.tsx ├── safety-module.page.tsx ├── sgho.page.tsx ├── staking.page.tsx └── v3-migration.page.tsx ├── public ├── 404 │ └── 404.svg ├── aave-com-logo-header.svg ├── aave-com-opengraph.png ├── aave-logo-purple.svg ├── aave.svg ├── aaveLogo.svg ├── aave_180.png ├── aave_santa.svg ├── favicon.ico ├── fonts │ └── inter │ │ ├── Inter-Black.woff │ │ ├── Inter-Black.woff2 │ │ ├── Inter-BlackItalic.woff │ │ ├── Inter-BlackItalic.woff2 │ │ ├── Inter-Bold.woff │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-BoldItalic.woff │ │ ├── Inter-BoldItalic.woff2 │ │ ├── Inter-ExtraBold.woff │ │ ├── Inter-ExtraBold.woff2 │ │ ├── Inter-ExtraBoldItalic.woff │ │ ├── Inter-ExtraBoldItalic.woff2 │ │ ├── Inter-ExtraLight.woff │ │ ├── Inter-ExtraLight.woff2 │ │ ├── Inter-ExtraLightItalic.woff │ │ ├── Inter-ExtraLightItalic.woff2 │ │ ├── Inter-Italic.woff │ │ ├── Inter-Italic.woff2 │ │ ├── Inter-Light.woff │ │ ├── Inter-Light.woff2 │ │ ├── Inter-LightItalic.woff │ │ ├── Inter-LightItalic.woff2 │ │ ├── Inter-Medium.woff │ │ ├── Inter-Medium.woff2 │ │ ├── Inter-MediumItalic.woff │ │ ├── Inter-MediumItalic.woff2 │ │ ├── Inter-Regular.woff │ │ ├── Inter-Regular.woff2 │ │ ├── Inter-SemiBold.woff │ │ ├── Inter-SemiBold.woff2 │ │ ├── Inter-SemiBoldItalic.woff │ │ ├── Inter-SemiBoldItalic.woff2 │ │ ├── Inter-Thin.woff │ │ ├── Inter-Thin.woff2 │ │ ├── Inter-ThinItalic.woff │ │ ├── Inter-ThinItalic.woff2 │ │ ├── Inter-italic.var.woff2 │ │ ├── Inter-roman.var.woff2 │ │ ├── Inter.var.woff2 │ │ └── inter.css ├── fork-config-example.png ├── gho-group.svg ├── icons │ ├── bridge │ │ ├── arbitrum.svg │ │ ├── avalanche.svg │ │ ├── optimism.svg │ │ └── polygon.svg │ ├── discord.svg │ ├── flags │ │ ├── cn.svg │ │ ├── el.svg │ │ ├── en.svg │ │ ├── es.svg │ │ ├── fr.svg │ │ ├── it.svg │ │ ├── jp.svg │ │ ├── kr.svg │ │ ├── pr.svg │ │ ├── tr.svg │ │ └── vt.svg │ ├── github.svg │ ├── healthFactor │ │ ├── HAL.svg │ │ └── HALHover.svg │ ├── lens-logo.svg │ ├── lenster.svg │ ├── markets │ │ ├── aptos.svg │ │ ├── etherfi.svg │ │ ├── horizon.svg │ │ ├── lido.svg │ │ └── linea.svg │ ├── networks │ │ ├── arbitrum.svg │ │ ├── avalanche.svg │ │ ├── base.svg │ │ ├── binance.svg │ │ ├── celo.svg │ │ ├── ethereum.svg │ │ ├── gnosis.svg │ │ ├── ink.svg │ │ ├── linea.svg │ │ ├── metis.svg │ │ ├── optimism.svg │ │ ├── plasma.svg │ │ ├── polygon.svg │ │ ├── scroll.svg │ │ ├── soneium.svg │ │ ├── sonic.svg │ │ └── zksync.svg │ ├── onRampServices │ │ └── transak.svg │ ├── other │ │ ├── aci-black.svg │ │ ├── aci-white.svg │ │ ├── ethena.svg │ │ ├── ether.fi.svg │ │ ├── kernel.svg │ │ ├── merkl-black.svg │ │ ├── merkl-white.svg │ │ ├── spark.svg │ │ ├── superfest.svg │ │ ├── velora.svg │ │ └── zksync-ignite.svg │ ├── staking │ │ ├── emission-staking-icon.svg │ │ └── trust-staking-icon.svg │ ├── tokens │ │ ├── 1inch.svg │ │ ├── aave-token-round.svg │ │ ├── aave.svg │ │ ├── ampl.svg │ │ ├── arb.svg │ │ ├── ausd.svg │ │ ├── avax.svg │ │ ├── bal.svg │ │ ├── bat.svg │ │ ├── bnb.svg │ │ ├── bpt.svg │ │ ├── btc.svg │ │ ├── buidl.svg │ │ ├── busd.svg │ │ ├── cake.svg │ │ ├── cbbtc.svg │ │ ├── cbeth.svg │ │ ├── celo.svg │ │ ├── ceur.svg │ │ ├── crv.svg │ │ ├── crvusd.svg │ │ ├── cusd.svg │ │ ├── cvx.svg │ │ ├── dai.svg │ │ ├── default.svg │ │ ├── dpi.svg │ │ ├── ebtc.svg │ │ ├── enj.svg │ │ ├── ens.svg │ │ ├── eth-round.svg │ │ ├── eth.svg │ │ ├── ethfi.svg │ │ ├── ethx.svg │ │ ├── eura.svg │ │ ├── eurc.svg │ │ ├── eure.svg │ │ ├── eurs.svg │ │ ├── eusde.svg │ │ ├── ezeth.svg │ │ ├── fbtc.svg │ │ ├── fdusd.svg │ │ ├── fei.svg │ │ ├── frax.svg │ │ ├── ftm.svg │ │ ├── fxs.svg │ │ ├── gho.svg │ │ ├── ghst.svg │ │ ├── gno.svg │ │ ├── gnosissdai.svg │ │ ├── gusd.svg │ │ ├── jaaa.svg │ │ ├── jeur.svg │ │ ├── jtrsy.svg │ │ ├── kbtc.svg │ │ ├── knc.svg │ │ ├── kncl.svg │ │ ├── lbtc.svg │ │ ├── ldo.svg │ │ ├── lend.svg │ │ ├── link.svg │ │ ├── lusd.svg │ │ ├── mai.svg │ │ ├── mana.svg │ │ ├── maticx.svg │ │ ├── metis.svg │ │ ├── mkr.svg │ │ ├── musd.svg │ │ ├── one.svg │ │ ├── op.svg │ │ ├── oseth.svg │ │ ├── pax.svg │ │ ├── pol.svg │ │ ├── pools │ │ │ ├── bpt.svg │ │ │ ├── guni.svg │ │ │ └── uni.svg │ │ ├── pteusde.svg │ │ ├── ptsusde.svg │ │ ├── ptusde.svg │ │ ├── pyusd.svg │ │ ├── rai.svg │ │ ├── ren.svg │ │ ├── renfil.svg │ │ ├── rep.svg │ │ ├── reth.svg │ │ ├── rez.svg │ │ ├── rlusd.svg │ │ ├── rpl.svg │ │ ├── rseth.svg │ │ ├── s.svg │ │ ├── savax.svg │ │ ├── scr.svg │ │ ├── sd.svg │ │ ├── sdai.svg │ │ ├── seth.svg │ │ ├── sgho.svg │ │ ├── snx.svg │ │ ├── steth.svg │ │ ├── stg.svg │ │ ├── stkaave.svg │ │ ├── stkbpt.svg │ │ ├── stkbptv2.svg │ │ ├── stkgho.svg │ │ ├── stmatic.svg │ │ ├── sts.svg │ │ ├── susd.svg │ │ ├── susde.svg │ │ ├── sushi.svg │ │ ├── syrupusdt.svg │ │ ├── tbtc.svg │ │ ├── teth.svg │ │ ├── tribe.svg │ │ ├── tusd.svg │ │ ├── tydroinkpoints.svg │ │ ├── uni.svg │ │ ├── uscc.svg │ │ ├── usdbc.svg │ │ ├── usdc.svg │ │ ├── usde.svg │ │ ├── usdg.svg │ │ ├── usdp.svg │ │ ├── usds.svg │ │ ├── usdt.svg │ │ ├── usdt0.svg │ │ ├── usdtb.svg │ │ ├── usd₮0.svg │ │ ├── ust.svg │ │ ├── ustb.svg │ │ ├── usyc.svg │ │ ├── vbill.svg │ │ ├── wavax.svg │ │ ├── wbnb.svg │ │ ├── wbtc.svg │ │ ├── weeth.svg │ │ ├── weth.svg │ │ ├── wftm.svg │ │ ├── wone.svg │ │ ├── wpol.svg │ │ ├── wrseth.svg │ │ ├── ws.svg │ │ ├── wsteth.svg │ │ ├── wxdai.svg │ │ ├── wxpl.svg │ │ ├── xaut.svg │ │ ├── xaut0.svg │ │ ├── xdai.svg │ │ ├── xpl.svg │ │ ├── xsushi.svg │ │ ├── yfi.svg │ │ ├── zk.svg │ │ └── zrx.svg │ └── wallets │ │ ├── browserWallet.svg │ │ ├── coinbase.svg │ │ ├── frame.svg │ │ ├── torus.svg │ │ └── walletConnect.svg ├── illustration-green.svg ├── illustration_borrow.png ├── illustration_desktop.png ├── illustration_friendly_ghost.png ├── illustration_token.png ├── lightningBoltGradient.svg ├── manifest.json ├── resting-gho-hat-purple.svg └── sgho-banner.svg ├── src ├── architecture │ ├── FPMath.ts │ ├── FixedPointDecimal.ts │ └── FixedPointNumber.ts ├── components │ ├── AddressBlocked.tsx │ ├── AddressBlockedModal.tsx │ ├── Analytics │ │ └── AnalyticsConsent.tsx │ ├── AssetCategoryMultiselect.tsx │ ├── Avatar.tsx │ ├── BridgeButton.tsx │ ├── ChainAvailabilityText.tsx │ ├── CircleIcon.tsx │ ├── CompactableTypography.tsx │ ├── ConnectWalletPaper.tsx │ ├── ConnectWalletPaperStaking.tsx │ ├── ContentContainer.tsx │ ├── ContentWithTooltip.tsx │ ├── FaucetButton.tsx │ ├── HealthFactorNumber.tsx │ ├── MarketAssetCategoryFilter.tsx │ ├── MarketSwitcher.tsx │ ├── Meta.tsx │ ├── NoSearchResults.tsx │ ├── ReserveOverviewBox.tsx │ ├── ReserveSubheader.tsx │ ├── SearchInput.tsx │ ├── SecondsToString.tsx │ ├── StyledToggleButton.tsx │ ├── StyledToggleButtonGroup.tsx │ ├── TextWithTooltip.tsx │ ├── TitleWithFiltersAndSearchBar.tsx │ ├── TitleWithSearchBar.tsx │ ├── TopInfoPanel │ │ ├── PageTitle.tsx │ │ ├── TopInfoPanel.tsx │ │ └── TopInfoPanelItem.tsx │ ├── TransactionEventHandler.tsx │ ├── UserAuthenticated.tsx │ ├── UserDisplay.tsx │ ├── UserNameText.tsx │ ├── WalletConnection │ │ ├── ConnectWalletButton.tsx │ │ └── ReadOnlyModal.tsx │ ├── Warnings │ │ ├── AMPLWarning.tsx │ │ ├── BorrowDisabledWarning.tsx │ │ ├── CooldownWarning.tsx │ │ ├── OffboardingWarning.tsx │ │ └── StETHCollateralWarning.tsx │ ├── badges │ │ └── ExclamationBadge.tsx │ ├── caps │ │ ├── CapsCircularStatus.tsx │ │ ├── CapsHint.tsx │ │ ├── CapsTooltip.tsx │ │ ├── DebtCeilingStatus.tsx │ │ └── helper.ts │ ├── icons │ │ ├── HeyIcon.tsx │ │ ├── LensIcon.tsx │ │ └── WalletIcon.tsx │ ├── incentives │ │ ├── EthenaIncentivesTooltipContent.tsx │ │ ├── EtherfiIncentivesTooltipContent.tsx │ │ ├── IncentivesButton.tsx │ │ ├── IncentivesCard.tsx │ │ ├── IncentivesTooltipContent.tsx │ │ ├── MeritIncentivesTooltipContent.tsx │ │ ├── MerklIncentivesTooltipContent.tsx │ │ ├── SonicIncentivesTooltipContent.tsx │ │ └── incentives.helper.ts │ ├── infoModalContents │ │ └── InfoContentWrapper.tsx │ ├── infoTooltips │ │ ├── AMPLToolTip.tsx │ │ ├── ApprovalTooltip.tsx │ │ ├── AvailableTooltip.tsx │ │ ├── BorrowCapMaxedTooltip.tsx │ │ ├── BorrowDisabledToolTip.tsx │ │ ├── BorrowPowerTooltip.tsx │ │ ├── CollateralSwitchTooltip.tsx │ │ ├── CollateralTooltip.tsx │ │ ├── DarkTooltip.tsx │ │ ├── DebtCeilingMaxedTooltip.tsx │ │ ├── EModeTooltip.tsx │ │ ├── EstimatedCostsForLimitSwap.tsx │ │ ├── ExecutionFeeTooltip.tsx │ │ ├── FixedAPYTooltip.tsx │ │ ├── FrozenTooltip.tsx │ │ ├── GasTooltip.tsx │ │ ├── GhoRateTooltip.tsx │ │ ├── KernelAirdropTooltip.tsx │ │ ├── LiquidationPenaltyTooltip.tsx │ │ ├── LiquidationThresholdTooltip.tsx │ │ ├── MaxLTVTooltip.tsx │ │ ├── MigrationDisabledTooltip.tsx │ │ ├── NetAPYTooltip.tsx │ │ ├── NetworkCostTooltip.tsx │ │ ├── OffboardingToolTip.tsx │ │ ├── PausedTooltip.tsx │ │ ├── PointsBasedCampaignTooltip.tsx │ │ ├── PriceImpactTooltip.tsx │ │ ├── ReadOnlyModeTooltip.tsx │ │ ├── RenFILToolTip.tsx │ │ ├── ReserveFactorTooltip.tsx │ │ ├── SlippageTooltip.tsx │ │ ├── SpkAirdropTooltip.tsx │ │ ├── StETHCollateralToolTip.tsx │ │ ├── StableAPYTooltip.tsx │ │ ├── SuperFestTooltip.tsx │ │ ├── SupplyCapMaxedTooltip.tsx │ │ ├── SwapFeeTooltip.tsx │ │ ├── TokenContractTooltip.tsx │ │ ├── TotalBorrowAPYTooltip.tsx │ │ ├── TotalSupplyAPYTooltip.tsx │ │ ├── VariableAPYTooltip.tsx │ │ └── WrappedTokenToolTipContent.tsx │ ├── isolationMode │ │ └── IsolatedBadge.tsx │ ├── lists │ │ ├── ListColumn.tsx │ │ ├── ListHeaderTitle.tsx │ │ ├── ListHeaderWrapper.tsx │ │ ├── ListItem.tsx │ │ ├── ListMobileItem.tsx │ │ └── ListWrapper.tsx │ ├── primitives │ │ ├── BasicModal.tsx │ │ ├── CheckBadge.tsx │ │ ├── FormattedNumber.tsx │ │ ├── Link.tsx │ │ ├── NoData.tsx │ │ ├── Row.tsx │ │ ├── TokenIcon.tsx │ │ ├── TypographyGradient.tsx │ │ └── Warning.tsx │ └── transactions │ │ ├── AssetInput.tsx │ │ ├── Borrow │ │ ├── BorrowActions.tsx │ │ ├── BorrowAmountWarning.tsx │ │ ├── BorrowModal.tsx │ │ ├── BorrowModalContent.tsx │ │ └── ParameterChangewarning.tsx │ │ ├── Bridge │ │ ├── BridgeActions.tsx │ │ ├── BridgeAmount.tsx │ │ ├── BridgeConfig.ts │ │ ├── BridgeDestinationInput.tsx │ │ ├── BridgeFeeTokenSelector.tsx │ │ ├── BridgeModal.tsx │ │ ├── BridgeModalContent.tsx │ │ ├── Oracle-abi.json │ │ ├── Router-abi.json │ │ ├── Tokenpool-abi.json │ │ ├── useGetBridgeLimits.tsx │ │ ├── useGetBridgeMessage.tsx │ │ └── useGetFinalityTime.tsx │ │ ├── CancelCowOrder │ │ ├── CancelAdapterOrderActions.tsx │ │ ├── CancelCowOrderActions.tsx │ │ ├── CancelCowOrderModal.tsx │ │ └── CancelCowOrderModalContent.tsx │ │ ├── ClaimRewards │ │ ├── ClaimRewardsActions.tsx │ │ ├── ClaimRewardsModal.tsx │ │ ├── ClaimRewardsModalContent.tsx │ │ ├── RewardsSelect.tsx │ │ └── constants.ts │ │ ├── CollateralChange │ │ ├── CollateralChangeActions.tsx │ │ ├── CollateralChangeModal.tsx │ │ └── CollateralChangeModalContent.tsx │ │ ├── DelegationTxsWrapper.tsx │ │ ├── Emode │ │ ├── EmodeActions.tsx │ │ ├── EmodeModal.tsx │ │ ├── EmodeModalContent.tsx │ │ └── EmodeNaming.ts │ │ ├── Faucet │ │ ├── FaucetActions.tsx │ │ ├── FaucetModal.tsx │ │ └── FaucetModalContent.tsx │ │ ├── FlowCommons │ │ ├── ApprovalMethodToggleButton.tsx │ │ ├── BaseCancelled.tsx │ │ ├── BaseSuccess.tsx │ │ ├── BaseWaiting.tsx │ │ ├── Error.tsx │ │ ├── GasEstimationError.tsx │ │ ├── ModalWrapper.tsx │ │ ├── PermissionView.tsx │ │ ├── PermitNonceInfo.tsx │ │ ├── RightHelperText.tsx │ │ ├── Success.tsx │ │ ├── TxModalDetails.tsx │ │ └── TxModalTitle.tsx │ │ ├── GasStation │ │ ├── GasButton.tsx │ │ ├── GasStation.tsx │ │ └── GasStationProvider.tsx │ │ ├── GovDelegation │ │ ├── DelegationTokenSelector.tsx │ │ ├── DelegationTypeSelector.tsx │ │ ├── GovDelegationActions.tsx │ │ ├── GovDelegationModal.tsx │ │ └── GovDelegationModalContent.tsx │ │ ├── GovRepresentatives │ │ ├── GovRepresentativesActions.tsx │ │ ├── GovRepresentativesModal.tsx │ │ └── GovRepresentativesModalContent.tsx │ │ ├── GovVote │ │ ├── GovVoteActions.tsx │ │ ├── GovVoteModal.tsx │ │ ├── GovVoteModalContent.tsx │ │ └── temporary │ │ │ ├── VotingMachineService.ts │ │ │ └── typechain │ │ │ ├── VotingMachine.ts │ │ │ ├── common.ts │ │ │ └── factory │ │ │ └── VotingMachine__factory.ts │ │ ├── MigrateV3 │ │ ├── MigrateV3Actions.tsx │ │ ├── MigrateV3Modal.tsx │ │ ├── MigrateV3ModalAssetsList.tsx │ │ └── MigrateV3ModalContent.tsx │ │ ├── NetworkSelect.tsx │ │ ├── Repay │ │ ├── RepayActions.tsx │ │ ├── RepayModal.tsx │ │ ├── RepayModalContent.tsx │ │ └── RepayTypeSelector.tsx │ │ ├── SavingsGho │ │ ├── SavingsGhoDepositActions.tsx │ │ ├── SavingsGhoDepositModal.tsx │ │ ├── SavingsGhoModalDepositContent.tsx │ │ ├── SavingsGhoWithdrawActions.tsx │ │ ├── SavingsGhoWithdrawModal.tsx │ │ └── SavingsGhoWithdrawModalContent.tsx │ │ ├── Stake │ │ ├── StakeActions.tsx │ │ ├── StakeModal.tsx │ │ └── StakeModalContent.tsx │ │ ├── StakeCooldown │ │ ├── StakeCooldownActions.tsx │ │ ├── StakeCooldownModal.tsx │ │ └── StakeCooldownModalContent.tsx │ │ ├── StakeRewardClaim │ │ ├── StakeRewardClaimActions.tsx │ │ ├── StakeRewardClaimModal.tsx │ │ └── StakeRewardClaimModalContent.tsx │ │ ├── StakeRewardClaimRestake │ │ ├── StakeRewardClaimRestakeActions.tsx │ │ ├── StakeRewardClaimRestakeModal.tsx │ │ └── StakeRewardClaimRestakeModalContent.tsx │ │ ├── StakingMigrate │ │ ├── StakingMigrateActions.tsx │ │ ├── StakingMigrateModal.tsx │ │ └── StakingMigrateModalContent.tsx │ │ ├── Supply │ │ ├── SupplyActions.tsx │ │ ├── SupplyModal.tsx │ │ ├── SupplyModalContent.tsx │ │ └── SupplyWrappedTokenActions.tsx │ │ ├── Swap │ │ ├── README.md │ │ ├── actions │ │ │ ├── ActionsBlocked.tsx │ │ │ ├── ActionsSkeleton.tsx │ │ │ ├── CollateralSwap │ │ │ │ ├── CollateralSwapActions.tsx │ │ │ │ ├── CollateralSwapActionsViaCoWAdapters.tsx │ │ │ │ └── CollateralSwapActionsViaParaswapAdapters.tsx │ │ │ ├── DebtSwap │ │ │ │ ├── DebtSwapActions.tsx │ │ │ │ ├── DebtSwapActionsViaCoW.tsx │ │ │ │ └── DebtSwapActionsViaParaswap.tsx │ │ │ ├── RepayWithCollateral │ │ │ │ ├── RepayWithCollateralActions.tsx │ │ │ │ ├── RepayWithCollateralActionsViaCoW.tsx │ │ │ │ └── RepayWithCollateralActionsViaParaswap.tsx │ │ │ ├── SwapActions │ │ │ │ ├── SwapActionsViaCoW.tsx │ │ │ │ ├── SwapActionsViaParaswap.tsx │ │ │ │ └── index.tsx │ │ │ ├── WithdrawAndSwap │ │ │ │ ├── WithdrawAndSwapActions.tsx │ │ │ │ ├── WithdrawAndSwapActionsViaCoW.tsx │ │ │ │ └── WithdrawAndSwapActionsViaParaswap.tsx │ │ │ ├── approval │ │ │ │ └── useSwapTokenApproval.ts │ │ │ └── index.ts │ │ ├── analytics │ │ │ ├── constants.ts │ │ │ ├── state.helpers.ts │ │ │ └── useTrackAnalytics.ts │ │ ├── constants │ │ │ ├── cow.constants.ts │ │ │ ├── limitOrders.constants.ts │ │ │ ├── paraswap.constants.ts │ │ │ └── shared.constants.ts │ │ ├── details │ │ │ ├── CollateralSwapDetails.tsx │ │ │ ├── CowCostsDetails.tsx │ │ │ ├── DebtSwapDetails.tsx │ │ │ ├── DetailsSkeleton.tsx │ │ │ ├── ParaswapCostsDetails.tsx │ │ │ ├── RepayWithCollateralDetails.tsx │ │ │ ├── SwapDetails.tsx │ │ │ ├── WithdrawAndSwapDetails.tsx │ │ │ └── index.ts │ │ ├── docs │ │ │ ├── .gitkeep │ │ │ └── swap-modal-architecture.png │ │ ├── errors │ │ │ ├── SwapErrors.tsx │ │ │ ├── cow │ │ │ │ └── quote.helpers.ts │ │ │ ├── paraswap │ │ │ │ └── quote.helpers.ts │ │ │ └── shared │ │ │ │ ├── BalanceLowerThanInput.tsx │ │ │ │ ├── FlashLoanDisabledBlockingError.tsx │ │ │ │ ├── FlashLoanDisabledBlockingGuard.tsx │ │ │ │ ├── GasEstimationError.tsx │ │ │ │ ├── GenericError.tsx │ │ │ │ ├── InsufficientBalanceGuard.tsx │ │ │ │ ├── InsufficientBorrowPowerBlockingError.tsx │ │ │ │ ├── InsufficientBorrowPowerBlockingGuard.tsx │ │ │ │ ├── InsufficientLiquidityBlockingError.tsx │ │ │ │ ├── InsufficientLiquidityBlockingGuard.tsx │ │ │ │ ├── ProviderError.tsx │ │ │ │ ├── SupplyCapBlockingError.tsx │ │ │ │ ├── SupplyCapBlockingGuard.tsx │ │ │ │ ├── UserDenied.tsx │ │ │ │ ├── ZeroLTVBlockingError.tsx │ │ │ │ ├── ZeroLTVBlockingGuard.tsx │ │ │ │ └── console.helpers.ts │ │ ├── helpers │ │ │ ├── cow │ │ │ │ ├── adapters.helpers.ts │ │ │ │ ├── env.helpers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── orders.helpers.ts │ │ │ │ └── rates.helpers.ts │ │ │ ├── gasEstimation.helpers.ts │ │ │ ├── paraswap │ │ │ │ ├── flashloan.helpers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── misc.helpers.ts │ │ │ │ ├── order.helpers.ts │ │ │ │ └── rates.helpers.ts │ │ │ └── shared │ │ │ │ ├── assetCorrelation.helpers.ts │ │ │ │ ├── index.ts │ │ │ │ ├── invalidation.helpers.ts │ │ │ │ ├── misc.helpers.ts │ │ │ │ ├── provider.helpers.ts │ │ │ │ └── slippage.helpers.ts │ │ ├── hooks │ │ │ ├── useFlowSelector.ts │ │ │ ├── useMaxNativeAmount.ts │ │ │ ├── useProtocolReserves.ts │ │ │ ├── useSlippageSelector.ts │ │ │ ├── useSwapGasEstimation.ts │ │ │ ├── useSwapOrderAmounts.ts │ │ │ ├── useSwapQuote.ts │ │ │ └── useUserContext.ts │ │ ├── inputs │ │ │ ├── LimitOrderInputs.tsx │ │ │ ├── MarketOrderInputs.tsx │ │ │ ├── SwapInputs.tsx │ │ │ ├── primitives │ │ │ │ └── SwapAssetInput.tsx │ │ │ └── shared │ │ │ │ ├── ExpirySelector.tsx │ │ │ │ ├── NetworkSelector.tsx │ │ │ │ ├── PriceInput.tsx │ │ │ │ ├── QuoteProgressRing.tsx │ │ │ │ ├── SwitchRates.tsx │ │ │ │ └── SwitchSlippageSelector.tsx │ │ ├── modals │ │ │ ├── CollateralSwapModal.tsx │ │ │ ├── DebtSwapModal.tsx │ │ │ ├── SwapModal.tsx │ │ │ ├── request │ │ │ │ ├── BaseSwapModalContent.tsx │ │ │ │ ├── CollateralSwapModalContent.tsx │ │ │ │ ├── DebtSwapModalContent.tsx │ │ │ │ ├── NoEligibleAssetsToSwap.tsx │ │ │ │ ├── RepayWithCollateralModalContent.tsx │ │ │ │ ├── SwapModalContent.tsx │ │ │ │ └── WithdrawAndSwapModalContent.tsx │ │ │ └── result │ │ │ │ ├── CowOrderToast.tsx │ │ │ │ └── SwapResultView.tsx │ │ ├── shared │ │ │ ├── OrderTypeSelector.tsx │ │ │ └── SwapModalTitle.tsx │ │ ├── types │ │ │ ├── index.ts │ │ │ ├── params.types.ts │ │ │ ├── quote.types.ts │ │ │ ├── shared.types.ts │ │ │ ├── state.types.ts │ │ │ └── tokens.types.ts │ │ └── warnings │ │ │ ├── SwapNetworkWarning.tsx │ │ │ ├── SwapPostInputWarnings.tsx │ │ │ ├── SwapPreInputWarnings.tsx │ │ │ ├── constants.ts │ │ │ ├── helpers.ts │ │ │ ├── postInputs │ │ │ ├── CowAdapterApprovalInfo.tsx │ │ │ ├── CustomTokenWarning.tsx │ │ │ ├── GasEstimationWarning.tsx │ │ │ ├── HighCostsLimitOrderWarning.tsx │ │ │ ├── HighPriceImpactWarning.tsx │ │ │ ├── LimitOrderAmountWarning.tsx │ │ │ ├── LiquidationCriticalWarning.tsx │ │ │ ├── LowHealthFactorWarning.tsx │ │ │ ├── SafetyModuleSwapWarning.tsx │ │ │ ├── SlippageWarning.tsx │ │ │ ├── USDTResetWarning.tsx │ │ │ └── index.ts │ │ │ └── preInputs │ │ │ ├── CowOpenOrdersWarning.tsx │ │ │ ├── NativeLimitOrderInfo.tsx │ │ │ └── index.ts │ │ ├── TxActionsWrapper.tsx │ │ ├── UnStake │ │ ├── UnStakeActions.tsx │ │ ├── UnStakeModal.tsx │ │ └── UnStakeModalContent.tsx │ │ ├── Warnings │ │ ├── AAVEWarning.tsx │ │ ├── BorrowCapWarning.tsx │ │ ├── ChangeNetworkWarning.tsx │ │ ├── CowLowerThanMarketWarning.tsx │ │ ├── DebtCeilingWarning.tsx │ │ ├── IsolationModeWarning.tsx │ │ ├── MarketWarning.tsx │ │ ├── ParaswapErrorDisplay.tsx │ │ ├── SNXWarning.tsx │ │ ├── SupplyCapWarning.tsx │ │ └── USDTResetWarning.tsx │ │ ├── Withdraw │ │ ├── WithdrawActions.tsx │ │ ├── WithdrawAndUnwrapActions.tsx │ │ ├── WithdrawError.tsx │ │ ├── WithdrawModal.tsx │ │ ├── WithdrawModalContent.tsx │ │ ├── WithdrawTypeSelector.tsx │ │ └── utils.ts │ │ └── utils.ts ├── createEmotionCache.ts ├── helpers │ ├── provider.ts │ ├── text-center-ellipsis.ts │ ├── timeHelper.tsx │ ├── toggle-local-storage-click.ts │ ├── types.ts │ ├── useGovernanceDelegate.tsx │ ├── useParaSwapTransactionHandler.tsx │ └── useTransactionHandler.tsx ├── hooks │ ├── app-data-provider │ │ ├── useAppDataProvider.tsx │ │ ├── useMarketsData.ts │ │ └── useWalletBalances.tsx │ ├── bridge │ │ └── useBridgeWalletBalance.tsx │ ├── commonTypes.ts │ ├── generic │ │ └── useTokensBalance.ts │ ├── governance │ │ ├── useDelegateeData.ts │ │ ├── useGovernanceTokens.ts │ │ ├── useGovernanceTokensAndPowers.ts │ │ ├── usePayloadsData.ts │ │ ├── usePowers.ts │ │ ├── useProposal.ts │ │ ├── useProposalVotes.ts │ │ ├── useProposals.ts │ │ ├── useProposalsSearch.ts │ │ ├── useRepresentatives.ts │ │ ├── useTokensPower.ts │ │ └── useVotingPowerAt.ts │ ├── migration │ │ ├── useMigrationExceptionsSupplyBalance.ts │ │ ├── usePoolReserve.ts │ │ ├── useUserMigrationReserves.ts │ │ ├── useUserSummaryAfterMigration.ts │ │ └── useUserSummaryForMigration.ts │ ├── paraswap │ │ ├── common.ts │ │ ├── useCollateralRepaySwap.tsx │ │ ├── useCollateralSwap.tsx │ │ ├── useDebtSwitch.tsx │ │ └── useParaswapRates.ts │ ├── pool │ │ ├── selectors.ts │ │ ├── useExtendedUserSummaryAndIncentives.ts │ │ ├── usePoolEModes.ts │ │ ├── usePoolFormattedReserves.ts │ │ ├── usePoolOracles.ts │ │ ├── usePoolReserves.ts │ │ ├── usePoolReservesIncentives.ts │ │ ├── usePoolTokensBalance.ts │ │ ├── useUserPoolReserves.ts │ │ ├── useUserPoolReservesIncentives.ts │ │ ├── useUserSummaryAndIncentives.ts │ │ ├── useUserYield.ts │ │ └── utils.ts │ ├── stake │ │ ├── apyCalculator.ts │ │ ├── common.ts │ │ ├── useGeneralStakeUiData.ts │ │ ├── useUmbrellaSummary.ts │ │ └── useUserStakeUiData.ts │ ├── token-wrapper │ │ └── useTokenWrapper.ts │ ├── useAddressAllowed.tsx │ ├── useApprovalTx.tsx │ ├── useApprovedAmount.tsx │ ├── useAssetCaps.tsx │ ├── useAssetCapsSDK.tsx │ ├── useBridgeTransactionHistory.tsx │ ├── useBridgeTransactionStatus.tsx │ ├── useCoinGeckoCategories.ts │ ├── useCryptoBuyAvailable.tsx │ ├── useCurrentTimestamp.tsx │ ├── useEnhancedUserYield.ts │ ├── useEthenaIncentives.ts │ ├── useEtherfiIncentives.ts │ ├── useGasStation.tsx │ ├── useGetConnectedWalletType.ts │ ├── useGetGasPrices.tsx │ ├── useIsContractAddress.ts │ ├── useIsWrongNetwork.tsx │ ├── useMeritIncentives.ts │ ├── useMerklIncentives.ts │ ├── useMerklPointsIncentives.ts │ ├── useModal.tsx │ ├── usePermissions.tsx │ ├── usePolling.tsx │ ├── usePreviousState.ts │ ├── useReserveActionState.tsx │ ├── useSGhoApyHistory.ts │ ├── useSonicIncentives.tsx │ ├── useStakeTokenAPR.ts │ ├── useSwapOrdersTracking.tsx │ ├── useTransactionHistory.tsx │ ├── useUserMeritIncentives.ts │ ├── useWrappedTokens.tsx │ └── useZeroLTVBlockingWithdraw.tsx ├── layouts │ ├── AppFooter.tsx │ ├── AppGlobalStyles.tsx │ ├── AppHeader.tsx │ ├── MainLayout.tsx │ ├── MobileMenu.tsx │ ├── MoreMenu.tsx │ ├── SettingsMenu.tsx │ ├── SupportModal.tsx │ ├── TopBarNotify.tsx │ └── components │ │ ├── DarkModeSwitcher.tsx │ │ ├── DrawerWrapper.tsx │ │ ├── LanguageSwitcher.tsx │ │ ├── MobileCloseButton.tsx │ │ ├── NavItems.tsx │ │ ├── StakingMenu.tsx │ │ └── TestNetModeSwitcher.tsx ├── libs │ ├── LanguageProvider.tsx │ ├── abis │ │ └── erc20_abi.json │ ├── hooks │ │ ├── use-get-ens.tsx │ │ └── useWeb3Context.tsx │ └── web3-data-provider │ │ ├── Web3Provider.tsx │ │ └── adapters │ │ └── EthersAdapter.ts ├── locales │ ├── de │ │ └── messages.po │ ├── el │ │ ├── messages.js │ │ └── messages.po │ ├── en │ │ ├── messages.js │ │ └── messages.po │ ├── es │ │ ├── messages.js │ │ └── messages.po │ ├── fr │ │ ├── messages.js │ │ └── messages.po │ ├── ru │ │ └── messages.po │ └── zh │ │ └── messages.po ├── modules │ ├── bridge │ │ ├── BridgeTopPanel.tsx │ │ ├── BridgeTransactionListItem.tsx │ │ ├── BridgeWrapper.tsx │ │ ├── OffRamp.json │ │ ├── OnRamp.json │ │ └── TransactionListItemLoader.tsx │ ├── dashboard │ │ ├── DashboardContentNoData.tsx │ │ ├── DashboardContentWrapper.tsx │ │ ├── DashboardEModeButton.tsx │ │ ├── DashboardListTopPanel.tsx │ │ ├── DashboardTopPanel.tsx │ │ ├── LiquidationRiskParametresModal │ │ │ ├── LiquidationRiskParametresModal.tsx │ │ │ └── components │ │ │ │ ├── HFContent.tsx │ │ │ │ ├── InfoWrapper.tsx │ │ │ │ └── LTVContent.tsx │ │ └── lists │ │ │ ├── BorrowAssetsList │ │ │ ├── BorrowAssetsList.tsx │ │ │ ├── BorrowAssetsListItem.tsx │ │ │ ├── BorrowAssetsListMobileItem.tsx │ │ │ └── types.ts │ │ │ ├── BorrowedPositionsList │ │ │ ├── BorrowedPositionsList.tsx │ │ │ └── BorrowedPositionsListItem.tsx │ │ │ ├── ListAPRColumn.tsx │ │ │ ├── ListBottomText.tsx │ │ │ ├── ListButtonsColumn.tsx │ │ │ ├── ListHeader.tsx │ │ │ ├── ListItemCanBeCollateral.tsx │ │ │ ├── ListItemIsolationBadge.tsx │ │ │ ├── ListItemLoader.tsx │ │ │ ├── ListItemUsedAsCollateral.tsx │ │ │ ├── ListItemWrapper.tsx │ │ │ ├── ListLoader.tsx │ │ │ ├── ListMobileItemWrapper.tsx │ │ │ ├── ListTopInfoItem.tsx │ │ │ ├── ListValueColumn.tsx │ │ │ ├── ListValueRow.tsx │ │ │ ├── MobileListItemLoader.tsx │ │ │ ├── SlippageList.tsx │ │ │ ├── SuppliedPositionsList │ │ │ ├── SuppliedPositionsList.tsx │ │ │ ├── SuppliedPositionsListItem.tsx │ │ │ └── SuppliedPositionsListMobileItem.tsx │ │ │ ├── SupplyAssetsList │ │ │ ├── SupplyAssetsList.tsx │ │ │ ├── SupplyAssetsListItem.tsx │ │ │ ├── SupplyAssetsListMobileItem.tsx │ │ │ ├── WalletEmptyInfo.tsx │ │ │ └── types.ts │ │ │ └── constants.ts │ ├── faucet │ │ ├── FaucetAssetsList.tsx │ │ ├── FaucetItemLoader.tsx │ │ ├── FaucetMobileItemLoader.tsx │ │ └── FaucetTopPanel.tsx │ ├── governance │ │ ├── DelegatedInfoPanel.tsx │ │ ├── FormattedProposalTime.tsx │ │ ├── GovernanceTopPanel.tsx │ │ ├── ProposalListHeader.tsx │ │ ├── ProposalV3ListItem.tsx │ │ ├── ProposalsV3List.tsx │ │ ├── RepresentativesInfoPanel.tsx │ │ ├── StateBadge.tsx │ │ ├── UserGovernanceInfo.tsx │ │ ├── VoteBar.tsx │ │ ├── VotingPowerInfoPanel.tsx │ │ ├── helpers.ts │ │ ├── proposal │ │ │ ├── ProposalLifecycle.tsx │ │ │ ├── ProposalOverview.tsx │ │ │ ├── ProposalTopPanel.tsx │ │ │ ├── VoteInfo.tsx │ │ │ ├── VotersList.tsx │ │ │ ├── VotersListContainer.tsx │ │ │ ├── VotersListItem.tsx │ │ │ ├── VotersListModal.tsx │ │ │ └── VotingResults.tsx │ │ └── utils │ │ │ ├── formatProposal.ts │ │ │ └── getProposalMetadata.ts │ ├── history │ │ ├── HistoryFilterMenu.tsx │ │ ├── HistoryItemLoader.tsx │ │ ├── HistoryMobileItemLoader.tsx │ │ ├── HistoryTopPanel.tsx │ │ ├── HistoryWrapper.tsx │ │ ├── HistoryWrapperMobile.tsx │ │ ├── PriceUnavailable.tsx │ │ ├── TransactionMobileRowItem.tsx │ │ ├── TransactionRowItem.tsx │ │ ├── actions │ │ │ └── ActionDetails.tsx │ │ ├── helpers.ts │ │ └── types.ts │ ├── markets │ │ ├── Gho │ │ │ └── GhoBanner.tsx │ │ ├── MarketAssetsList.tsx │ │ ├── MarketAssetsListContainer.tsx │ │ ├── MarketAssetsListItem.tsx │ │ ├── MarketAssetsListItemLoader.tsx │ │ ├── MarketAssetsListMobileItem.tsx │ │ ├── MarketAssetsListMobileItemLoader.tsx │ │ ├── MarketsTopPanel.tsx │ │ └── utils │ │ │ └── assetCategories.ts │ ├── migration │ │ ├── HFChange.tsx │ │ ├── MigrationBottomPanel.tsx │ │ ├── MigrationList.tsx │ │ ├── MigrationListBorrowItem.tsx │ │ ├── MigrationListItem.tsx │ │ ├── MigrationListItemLoader.tsx │ │ ├── MigrationListItemToggler.tsx │ │ ├── MigrationListMobileItem.tsx │ │ ├── MigrationLists.tsx │ │ ├── MigrationMarketCard.tsx │ │ ├── MigrationMobileList.tsx │ │ ├── MigrationSelectionBox.tsx │ │ ├── MigrationTopPanel.tsx │ │ └── StETHMigrationWarning.tsx │ ├── reserve-overview │ │ ├── AddTokenDropdown.tsx │ │ ├── BorrowInfo.tsx │ │ ├── Gho │ │ │ ├── GhoReserveConfiguration.tsx │ │ │ ├── GhoReserveTopDetails.tsx │ │ │ └── SavingsGho.tsx │ │ ├── ReserveActions.tsx │ │ ├── ReserveConfiguration.tsx │ │ ├── ReserveConfigurationWrapper.tsx │ │ ├── ReserveEModePanel.tsx │ │ ├── ReserveFactorOverview.tsx │ │ ├── ReservePanels.tsx │ │ ├── ReserveTopDetails.tsx │ │ ├── ReserveTopDetailsWrapper.tsx │ │ ├── SupplyInfo.tsx │ │ ├── TimeRangeSelector.tsx │ │ ├── TokenLinkDropdown.tsx │ │ └── graphs │ │ │ ├── ApyGraph.tsx │ │ │ ├── ApyGraphContainer.tsx │ │ │ ├── GraphLegend.tsx │ │ │ ├── GraphTimeRangeSelector.tsx │ │ │ ├── InterestRateModelGraph.tsx │ │ │ ├── InterestRateModelGraphContainer.tsx │ │ │ ├── MeritApyGraph.tsx │ │ │ ├── MeritApyGraphContainer.tsx │ │ │ └── MeritApyGraphExample.tsx │ ├── sGho │ │ ├── SGhoApyChart.tsx │ │ ├── SGhoDepositPanel.tsx │ │ ├── SGhoHeader.tsx │ │ └── SavingsGhoCard.tsx │ ├── staking │ │ ├── BuyWithFiat.tsx │ │ ├── BuyWithFiatModal.tsx │ │ ├── GetABPToken.tsx │ │ ├── GetABPTokenModal.tsx │ │ ├── GetGhoToken.tsx │ │ ├── GhoStakingPanel.tsx │ │ ├── SavingsGhoProgram.tsx │ │ ├── StakeActionBox.tsx │ │ ├── StakingHeader.tsx │ │ ├── StakingPanel.tsx │ │ ├── StakingPanelNoWallet.tsx │ │ └── StakingPanelSkeleton.tsx │ └── umbrella │ │ ├── AmountSharesItem.tsx │ │ ├── AmountStakedUnderlyingItem.tsx │ │ ├── AvailableToClaimItem.tsx │ │ ├── AvailableToStakeItem.tsx │ │ ├── NoStakeAssets.tsx │ │ ├── StakeAssets │ │ ├── StakeAssetName.tsx │ │ ├── UmbrellaAssetsList.tsx │ │ ├── UmbrellaAssetsListContainer.tsx │ │ ├── UmbrellaAssetsListItemLoader.tsx │ │ ├── UmbrellaAssetsListMobileItem.tsx │ │ ├── UmbrellaAssetsListMobileItemLoader.tsx │ │ └── UmbrellaStakeAssetsListItem.tsx │ │ ├── StakeCooldownActions.tsx │ │ ├── StakeCooldownModal.tsx │ │ ├── StakeCooldownModalContent.tsx │ │ ├── StakingApyItem.tsx │ │ ├── UmbrellaActions.tsx │ │ ├── UmbrellaAssetsDefault.tsx │ │ ├── UmbrellaClaimActions.tsx │ │ ├── UmbrellaClaimModal.tsx │ │ ├── UmbrellaClaimModalContent.tsx │ │ ├── UmbrellaHeader.tsx │ │ ├── UmbrellaMarketSwitcher.tsx │ │ ├── UmbrellaModal.tsx │ │ ├── UmbrellaModalContent.tsx │ │ ├── UnstakeModal.tsx │ │ ├── UnstakeModalActions.tsx │ │ ├── UnstakeModalContent.tsx │ │ ├── helpers │ │ ├── AmountAvailableItem.tsx │ │ ├── ApyTooltip.tsx │ │ ├── Helpers.tsx │ │ ├── MultiIcon.tsx │ │ ├── SharesTooltip.tsx │ │ ├── StakedUnderlyingTooltip.tsx │ │ └── StakingDropdown.tsx │ │ └── hooks │ │ ├── usePreviewRedeem.ts │ │ ├── usePreviewStake.ts │ │ └── useStakeData.ts ├── services │ ├── ApprovedAmountService.ts │ ├── CoWProtocolPricesService.ts │ ├── DelegationTokenService.ts │ ├── Erc20Service.ts │ ├── FamilyPricesService.ts │ ├── GovernanceService.ts │ ├── GovernanceV3Service.ts │ ├── MigrationService.ts │ ├── StkAbptMigrationService.ts │ ├── TokenWrapperService.ts │ ├── UIIncentivesService.ts │ ├── UIPoolService.ts │ ├── UiStakeDataService.ts │ ├── UmbrellaStakeDataService.ts │ ├── VotingMachineService.ts │ └── WalletBalanceService.ts ├── store │ ├── analyticsSlice.ts │ ├── favoriteMarketsSlice.ts │ ├── governanceSlice.ts │ ├── layoutSlice.ts │ ├── poolSelectors.ts │ ├── poolSlice.ts │ ├── protocolDataSlice.ts │ ├── root.ts │ ├── stakeSlice.ts │ ├── transactionsSelectors.ts │ ├── transactionsSlice.ts │ ├── utils │ │ ├── domain-fetchers │ │ │ ├── ens.ts │ │ │ └── index.ts │ │ └── queryParams.ts │ ├── v3MigrationSelectors.ts │ ├── v3MigrationSlice.ts │ ├── walletDomains.ts │ └── walletSlice.ts ├── styles │ └── variables.css ├── ui-config │ ├── SharedDependenciesProvider.tsx │ ├── TokenList.ts │ ├── errorMapping.tsx │ ├── governanceConfig.ts │ ├── marketsConfig.tsx │ ├── menu-items │ │ └── index.tsx │ ├── networksConfig.ts │ ├── onRampServicesConfig.tsx │ ├── permitConfig.ts │ ├── queries.ts │ ├── reservePatches.ts │ ├── stakeConfig.ts │ └── wagmiConfig.ts ├── uiConfig.ts └── utils │ ├── ServerJsonRpcProvider.ts │ ├── __tests__ │ ├── RotationProvider.test.ts │ ├── ghoUtilities.spec.ts │ └── marketsAndNetworkConfig.spec.ts │ ├── dashboardSortUtils.ts │ ├── eMode.ts │ ├── events.ts │ ├── getMaxAmountAvailableToBorrow.ts │ ├── getMaxAmountAvailableToSupply.ts │ ├── ghoUtilities.tsx │ ├── hfUtils.ts │ ├── marketsAndNetworksConfig.ts │ ├── rotationProvider.ts │ ├── subgraphRequest.ts │ ├── swapAdapterHistory.ts │ ├── tFetch.ts │ ├── theme.tsx │ ├── usdtHelpers.ts │ └── utils.ts ├── svgo.config.js ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.env.development -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # generated files 2 | src/locales/*.js linguist-vendored 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report---.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/ISSUE_TEMPLATE/bug-report---.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request---.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/ISSUE_TEMPLATE/feature-request---.md -------------------------------------------------------------------------------- /.github/actions/analyze-comment/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/actions/analyze-comment/action.yml -------------------------------------------------------------------------------- /.github/actions/build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/actions/build/action.yml -------------------------------------------------------------------------------- /.github/actions/cypress/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/actions/cypress/action.yml -------------------------------------------------------------------------------- /.github/actions/fork-result-comment/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/actions/fork-result-comment/action.yml -------------------------------------------------------------------------------- /.github/actions/fork-result-label/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/actions/fork-result-label/action.yml -------------------------------------------------------------------------------- /.github/actions/ipfs-pin/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/actions/ipfs-pin/action.yml -------------------------------------------------------------------------------- /.github/actions/upload-artifacts/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/actions/upload-artifacts/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/release-template.md -------------------------------------------------------------------------------- /.github/workflows/build-fork.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/workflows/build-fork.yml -------------------------------------------------------------------------------- /.github/workflows/build-test-deploy-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/workflows/build-test-deploy-dev.yml -------------------------------------------------------------------------------- /.github/workflows/build-test-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/workflows/build-test-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin-download.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/workflows/crowdin-download.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/workflows/crowdin-upload.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/i18n-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/workflows/i18n-check.yml -------------------------------------------------------------------------------- /.github/workflows/test-deploy-fork.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/workflows/test-deploy-fork.yml -------------------------------------------------------------------------------- /.github/workflows/update-prod-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.github/workflows/update-prod-staging.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.linguirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.linguirc -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | All Rights Reserved © Aave Labs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/crowdin.yml -------------------------------------------------------------------------------- /custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/custom.d.ts -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/README.md -------------------------------------------------------------------------------- /cypress/configs/base.cypress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/configs/base.cypress.ts -------------------------------------------------------------------------------- /cypress/configs/general.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/configs/general.config.ts -------------------------------------------------------------------------------- /cypress/configs/governance-stake.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/configs/governance-stake.config.ts -------------------------------------------------------------------------------- /cypress/configs/local/full.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/configs/local/full.config.ts -------------------------------------------------------------------------------- /cypress/configs/mobile.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/configs/mobile.config.ts -------------------------------------------------------------------------------- /cypress/configs/settings.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/configs/settings.config.ts -------------------------------------------------------------------------------- /cypress/configs/v2-markets/ethereum-v2-full.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/configs/v2-markets/ethereum-v2-full.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/base-v3-full.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/configs/v3-markets/base-v3-full.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/base-v3-smoke.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/configs/v3-markets/base-v3-smoke.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/bnb-v3-smoke.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/configs/v3-markets/bnb-v3-smoke.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/gnosis-v3-full.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/configs/v3-markets/gnosis-v3-full.config.ts -------------------------------------------------------------------------------- /cypress/configs/widgets.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/configs/widgets.config.ts -------------------------------------------------------------------------------- /cypress/e2e/2-settings/change-languages.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/e2e/2-settings/change-languages.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/2-settings/details.page.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/e2e/2-settings/details.page.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/2-settings/switch-market.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/e2e/2-settings/switch-market.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/2-settings/switch-tabs.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/e2e/2-settings/switch-tabs.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/3-stake-governance/stake.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/e2e/3-stake-governance/stake.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/5-widgets/switch-tool.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/e2e/5-widgets/switch-tool.cy.ts -------------------------------------------------------------------------------- /cypress/fixtures/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/fixtures/assets.json -------------------------------------------------------------------------------- /cypress/fixtures/constans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/fixtures/constans.json -------------------------------------------------------------------------------- /cypress/fixtures/donors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/fixtures/donors.json -------------------------------------------------------------------------------- /cypress/fixtures/erc20_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/fixtures/erc20_abi.json -------------------------------------------------------------------------------- /cypress/fixtures/markets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/fixtures/markets.json -------------------------------------------------------------------------------- /cypress/fixtures/poolConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/fixtures/poolConfig.json -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/actions/dashboard.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/actions/dashboard.actions.ts -------------------------------------------------------------------------------- /cypress/support/actions/tenderly.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/actions/tenderly.actions.ts -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- 1 | import './commands'; 2 | -------------------------------------------------------------------------------- /cypress/support/helpers/dashboard.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/helpers/dashboard.helper.ts -------------------------------------------------------------------------------- /cypress/support/helpers/modal.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/helpers/modal.helper.ts -------------------------------------------------------------------------------- /cypress/support/helpers/token.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/helpers/token.helper.ts -------------------------------------------------------------------------------- /cypress/support/steps/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/steps/common.ts -------------------------------------------------------------------------------- /cypress/support/steps/configuration.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/steps/configuration.steps.ts -------------------------------------------------------------------------------- /cypress/support/steps/governance.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/steps/governance.steps.ts -------------------------------------------------------------------------------- /cypress/support/steps/main.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/steps/main.steps.ts -------------------------------------------------------------------------------- /cypress/support/steps/stake.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/steps/stake.steps.ts -------------------------------------------------------------------------------- /cypress/support/steps/testnet-helpers.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/steps/testnet-helpers.steps.ts -------------------------------------------------------------------------------- /cypress/support/steps/verification.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/steps/verification.steps.ts -------------------------------------------------------------------------------- /cypress/support/tools/bridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/tools/bridge.ts -------------------------------------------------------------------------------- /cypress/support/tools/math.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/tools/math.util.ts -------------------------------------------------------------------------------- /cypress/support/tools/tenderly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/support/tools/tenderly.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /cypress/types/window.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/cypress/types/window.d.ts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'eth-provider'; 2 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/jest.setup.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/404.page.tsx -------------------------------------------------------------------------------- /pages/500.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/500.page.tsx -------------------------------------------------------------------------------- /pages/_app.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/_app.page.tsx -------------------------------------------------------------------------------- /pages/_document.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/_document.page.tsx -------------------------------------------------------------------------------- /pages/_error.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/_error.page.tsx -------------------------------------------------------------------------------- /pages/api/SGhoService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/api/SGhoService.ts -------------------------------------------------------------------------------- /pages/api/SGhoService.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/api/SGhoService.types.ts -------------------------------------------------------------------------------- /pages/api/coingecko-categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/api/coingecko-categories.ts -------------------------------------------------------------------------------- /pages/api/plain-mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/api/plain-mutations.ts -------------------------------------------------------------------------------- /pages/api/prices-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/api/prices-proxy.md -------------------------------------------------------------------------------- /pages/api/prices-proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/api/prices-proxy.ts -------------------------------------------------------------------------------- /pages/api/rpc-proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/api/rpc-proxy.ts -------------------------------------------------------------------------------- /pages/api/server-side-rpc-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/api/server-side-rpc-proxy.md -------------------------------------------------------------------------------- /pages/api/sgho-apy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/api/sgho-apy.ts -------------------------------------------------------------------------------- /pages/api/subgraph-proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/api/subgraph-proxy.ts -------------------------------------------------------------------------------- /pages/api/support-create-ticket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/api/support-create-ticket.ts -------------------------------------------------------------------------------- /pages/bridge.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/bridge.page.tsx -------------------------------------------------------------------------------- /pages/dashboard.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/dashboard.page.tsx -------------------------------------------------------------------------------- /pages/faucet.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/faucet.page.tsx -------------------------------------------------------------------------------- /pages/governance/index.governance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/governance/index.governance.tsx -------------------------------------------------------------------------------- /pages/governance/ipfs-preview.governance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/governance/ipfs-preview.governance.tsx -------------------------------------------------------------------------------- /pages/governance/v3/proposal/index.governance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/governance/v3/proposal/index.governance.tsx -------------------------------------------------------------------------------- /pages/history.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/history.page.tsx -------------------------------------------------------------------------------- /pages/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/index.page.tsx -------------------------------------------------------------------------------- /pages/markets.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/markets.page.tsx -------------------------------------------------------------------------------- /pages/reserve-overview.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/reserve-overview.page.tsx -------------------------------------------------------------------------------- /pages/safety-module.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/safety-module.page.tsx -------------------------------------------------------------------------------- /pages/sgho.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/sgho.page.tsx -------------------------------------------------------------------------------- /pages/staking.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/staking.page.tsx -------------------------------------------------------------------------------- /pages/v3-migration.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/pages/v3-migration.page.tsx -------------------------------------------------------------------------------- /public/404/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/404/404.svg -------------------------------------------------------------------------------- /public/aave-com-logo-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/aave-com-logo-header.svg -------------------------------------------------------------------------------- /public/aave-com-opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/aave-com-opengraph.png -------------------------------------------------------------------------------- /public/aave-logo-purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/aave-logo-purple.svg -------------------------------------------------------------------------------- /public/aave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/aave.svg -------------------------------------------------------------------------------- /public/aaveLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/aaveLogo.svg -------------------------------------------------------------------------------- /public/aave_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/aave_180.png -------------------------------------------------------------------------------- /public/aave_santa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/aave_santa.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-Black.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-Bold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-Italic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-Italic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-Light.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-Light.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-LightItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-Medium.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-Regular.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-SemiBold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-Thin.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-Thin.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/Inter.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/inter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fonts/inter/inter.css -------------------------------------------------------------------------------- /public/fork-config-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/fork-config-example.png -------------------------------------------------------------------------------- /public/gho-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/gho-group.svg -------------------------------------------------------------------------------- /public/icons/bridge/arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/bridge/arbitrum.svg -------------------------------------------------------------------------------- /public/icons/bridge/avalanche.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/bridge/avalanche.svg -------------------------------------------------------------------------------- /public/icons/bridge/optimism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/bridge/optimism.svg -------------------------------------------------------------------------------- /public/icons/bridge/polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/bridge/polygon.svg -------------------------------------------------------------------------------- /public/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/discord.svg -------------------------------------------------------------------------------- /public/icons/flags/cn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/flags/cn.svg -------------------------------------------------------------------------------- /public/icons/flags/el.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/flags/el.svg -------------------------------------------------------------------------------- /public/icons/flags/en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/flags/en.svg -------------------------------------------------------------------------------- /public/icons/flags/es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/flags/es.svg -------------------------------------------------------------------------------- /public/icons/flags/fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/flags/fr.svg -------------------------------------------------------------------------------- /public/icons/flags/it.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/flags/it.svg -------------------------------------------------------------------------------- /public/icons/flags/jp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/flags/jp.svg -------------------------------------------------------------------------------- /public/icons/flags/kr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/flags/kr.svg -------------------------------------------------------------------------------- /public/icons/flags/pr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/flags/pr.svg -------------------------------------------------------------------------------- /public/icons/flags/tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/flags/tr.svg -------------------------------------------------------------------------------- /public/icons/flags/vt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/flags/vt.svg -------------------------------------------------------------------------------- /public/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/github.svg -------------------------------------------------------------------------------- /public/icons/healthFactor/HAL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/healthFactor/HAL.svg -------------------------------------------------------------------------------- /public/icons/healthFactor/HALHover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/healthFactor/HALHover.svg -------------------------------------------------------------------------------- /public/icons/lens-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/lens-logo.svg -------------------------------------------------------------------------------- /public/icons/lenster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/lenster.svg -------------------------------------------------------------------------------- /public/icons/markets/aptos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/markets/aptos.svg -------------------------------------------------------------------------------- /public/icons/markets/etherfi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/markets/etherfi.svg -------------------------------------------------------------------------------- /public/icons/markets/horizon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/markets/horizon.svg -------------------------------------------------------------------------------- /public/icons/markets/lido.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/markets/lido.svg -------------------------------------------------------------------------------- /public/icons/markets/linea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/markets/linea.svg -------------------------------------------------------------------------------- /public/icons/networks/arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/arbitrum.svg -------------------------------------------------------------------------------- /public/icons/networks/avalanche.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/avalanche.svg -------------------------------------------------------------------------------- /public/icons/networks/base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/base.svg -------------------------------------------------------------------------------- /public/icons/networks/binance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/binance.svg -------------------------------------------------------------------------------- /public/icons/networks/celo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/celo.svg -------------------------------------------------------------------------------- /public/icons/networks/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/ethereum.svg -------------------------------------------------------------------------------- /public/icons/networks/gnosis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/gnosis.svg -------------------------------------------------------------------------------- /public/icons/networks/ink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/ink.svg -------------------------------------------------------------------------------- /public/icons/networks/linea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/linea.svg -------------------------------------------------------------------------------- /public/icons/networks/metis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/metis.svg -------------------------------------------------------------------------------- /public/icons/networks/optimism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/optimism.svg -------------------------------------------------------------------------------- /public/icons/networks/plasma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/plasma.svg -------------------------------------------------------------------------------- /public/icons/networks/polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/polygon.svg -------------------------------------------------------------------------------- /public/icons/networks/scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/scroll.svg -------------------------------------------------------------------------------- /public/icons/networks/soneium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/soneium.svg -------------------------------------------------------------------------------- /public/icons/networks/sonic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/sonic.svg -------------------------------------------------------------------------------- /public/icons/networks/zksync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/networks/zksync.svg -------------------------------------------------------------------------------- /public/icons/onRampServices/transak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/onRampServices/transak.svg -------------------------------------------------------------------------------- /public/icons/other/aci-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/other/aci-black.svg -------------------------------------------------------------------------------- /public/icons/other/aci-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/other/aci-white.svg -------------------------------------------------------------------------------- /public/icons/other/ethena.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/other/ethena.svg -------------------------------------------------------------------------------- /public/icons/other/ether.fi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/other/ether.fi.svg -------------------------------------------------------------------------------- /public/icons/other/kernel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/other/kernel.svg -------------------------------------------------------------------------------- /public/icons/other/merkl-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/other/merkl-black.svg -------------------------------------------------------------------------------- /public/icons/other/merkl-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/other/merkl-white.svg -------------------------------------------------------------------------------- /public/icons/other/spark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/other/spark.svg -------------------------------------------------------------------------------- /public/icons/other/superfest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/other/superfest.svg -------------------------------------------------------------------------------- /public/icons/other/velora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/other/velora.svg -------------------------------------------------------------------------------- /public/icons/other/zksync-ignite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/other/zksync-ignite.svg -------------------------------------------------------------------------------- /public/icons/staking/emission-staking-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/staking/emission-staking-icon.svg -------------------------------------------------------------------------------- /public/icons/staking/trust-staking-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/staking/trust-staking-icon.svg -------------------------------------------------------------------------------- /public/icons/tokens/1inch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/1inch.svg -------------------------------------------------------------------------------- /public/icons/tokens/aave-token-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/aave-token-round.svg -------------------------------------------------------------------------------- /public/icons/tokens/aave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/aave.svg -------------------------------------------------------------------------------- /public/icons/tokens/ampl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ampl.svg -------------------------------------------------------------------------------- /public/icons/tokens/arb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/arb.svg -------------------------------------------------------------------------------- /public/icons/tokens/ausd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ausd.svg -------------------------------------------------------------------------------- /public/icons/tokens/avax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/avax.svg -------------------------------------------------------------------------------- /public/icons/tokens/bal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/bal.svg -------------------------------------------------------------------------------- /public/icons/tokens/bat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/bat.svg -------------------------------------------------------------------------------- /public/icons/tokens/bnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/bnb.svg -------------------------------------------------------------------------------- /public/icons/tokens/bpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/bpt.svg -------------------------------------------------------------------------------- /public/icons/tokens/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/btc.svg -------------------------------------------------------------------------------- /public/icons/tokens/buidl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/buidl.svg -------------------------------------------------------------------------------- /public/icons/tokens/busd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/busd.svg -------------------------------------------------------------------------------- /public/icons/tokens/cake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/cake.svg -------------------------------------------------------------------------------- /public/icons/tokens/cbbtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/cbbtc.svg -------------------------------------------------------------------------------- /public/icons/tokens/cbeth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/cbeth.svg -------------------------------------------------------------------------------- /public/icons/tokens/celo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/celo.svg -------------------------------------------------------------------------------- /public/icons/tokens/ceur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ceur.svg -------------------------------------------------------------------------------- /public/icons/tokens/crv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/crv.svg -------------------------------------------------------------------------------- /public/icons/tokens/crvusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/crvusd.svg -------------------------------------------------------------------------------- /public/icons/tokens/cusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/cusd.svg -------------------------------------------------------------------------------- /public/icons/tokens/cvx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/cvx.svg -------------------------------------------------------------------------------- /public/icons/tokens/dai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/dai.svg -------------------------------------------------------------------------------- /public/icons/tokens/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/default.svg -------------------------------------------------------------------------------- /public/icons/tokens/dpi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/dpi.svg -------------------------------------------------------------------------------- /public/icons/tokens/ebtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ebtc.svg -------------------------------------------------------------------------------- /public/icons/tokens/enj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/enj.svg -------------------------------------------------------------------------------- /public/icons/tokens/ens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ens.svg -------------------------------------------------------------------------------- /public/icons/tokens/eth-round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/eth-round.svg -------------------------------------------------------------------------------- /public/icons/tokens/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/eth.svg -------------------------------------------------------------------------------- /public/icons/tokens/ethfi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ethfi.svg -------------------------------------------------------------------------------- /public/icons/tokens/ethx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ethx.svg -------------------------------------------------------------------------------- /public/icons/tokens/eura.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/eura.svg -------------------------------------------------------------------------------- /public/icons/tokens/eurc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/eurc.svg -------------------------------------------------------------------------------- /public/icons/tokens/eure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/eure.svg -------------------------------------------------------------------------------- /public/icons/tokens/eurs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/eurs.svg -------------------------------------------------------------------------------- /public/icons/tokens/eusde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/eusde.svg -------------------------------------------------------------------------------- /public/icons/tokens/ezeth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ezeth.svg -------------------------------------------------------------------------------- /public/icons/tokens/fbtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/fbtc.svg -------------------------------------------------------------------------------- /public/icons/tokens/fdusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/fdusd.svg -------------------------------------------------------------------------------- /public/icons/tokens/fei.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/fei.svg -------------------------------------------------------------------------------- /public/icons/tokens/frax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/frax.svg -------------------------------------------------------------------------------- /public/icons/tokens/ftm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ftm.svg -------------------------------------------------------------------------------- /public/icons/tokens/fxs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/fxs.svg -------------------------------------------------------------------------------- /public/icons/tokens/gho.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/gho.svg -------------------------------------------------------------------------------- /public/icons/tokens/ghst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ghst.svg -------------------------------------------------------------------------------- /public/icons/tokens/gno.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/gno.svg -------------------------------------------------------------------------------- /public/icons/tokens/gnosissdai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/gnosissdai.svg -------------------------------------------------------------------------------- /public/icons/tokens/gusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/gusd.svg -------------------------------------------------------------------------------- /public/icons/tokens/jaaa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/jaaa.svg -------------------------------------------------------------------------------- /public/icons/tokens/jeur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/jeur.svg -------------------------------------------------------------------------------- /public/icons/tokens/jtrsy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/jtrsy.svg -------------------------------------------------------------------------------- /public/icons/tokens/kbtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/kbtc.svg -------------------------------------------------------------------------------- /public/icons/tokens/knc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/knc.svg -------------------------------------------------------------------------------- /public/icons/tokens/kncl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/kncl.svg -------------------------------------------------------------------------------- /public/icons/tokens/lbtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/lbtc.svg -------------------------------------------------------------------------------- /public/icons/tokens/ldo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ldo.svg -------------------------------------------------------------------------------- /public/icons/tokens/lend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/lend.svg -------------------------------------------------------------------------------- /public/icons/tokens/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/link.svg -------------------------------------------------------------------------------- /public/icons/tokens/lusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/lusd.svg -------------------------------------------------------------------------------- /public/icons/tokens/mai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/mai.svg -------------------------------------------------------------------------------- /public/icons/tokens/mana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/mana.svg -------------------------------------------------------------------------------- /public/icons/tokens/maticx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/maticx.svg -------------------------------------------------------------------------------- /public/icons/tokens/metis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/metis.svg -------------------------------------------------------------------------------- /public/icons/tokens/mkr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/mkr.svg -------------------------------------------------------------------------------- /public/icons/tokens/musd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/musd.svg -------------------------------------------------------------------------------- /public/icons/tokens/one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/one.svg -------------------------------------------------------------------------------- /public/icons/tokens/op.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/op.svg -------------------------------------------------------------------------------- /public/icons/tokens/oseth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/oseth.svg -------------------------------------------------------------------------------- /public/icons/tokens/pax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/pax.svg -------------------------------------------------------------------------------- /public/icons/tokens/pol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/pol.svg -------------------------------------------------------------------------------- /public/icons/tokens/pools/bpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/pools/bpt.svg -------------------------------------------------------------------------------- /public/icons/tokens/pools/guni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/pools/guni.svg -------------------------------------------------------------------------------- /public/icons/tokens/pools/uni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/pools/uni.svg -------------------------------------------------------------------------------- /public/icons/tokens/pteusde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/pteusde.svg -------------------------------------------------------------------------------- /public/icons/tokens/ptsusde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ptsusde.svg -------------------------------------------------------------------------------- /public/icons/tokens/ptusde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ptusde.svg -------------------------------------------------------------------------------- /public/icons/tokens/pyusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/pyusd.svg -------------------------------------------------------------------------------- /public/icons/tokens/rai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/rai.svg -------------------------------------------------------------------------------- /public/icons/tokens/ren.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ren.svg -------------------------------------------------------------------------------- /public/icons/tokens/renfil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/renfil.svg -------------------------------------------------------------------------------- /public/icons/tokens/rep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/rep.svg -------------------------------------------------------------------------------- /public/icons/tokens/reth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/reth.svg -------------------------------------------------------------------------------- /public/icons/tokens/rez.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/rez.svg -------------------------------------------------------------------------------- /public/icons/tokens/rlusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/rlusd.svg -------------------------------------------------------------------------------- /public/icons/tokens/rpl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/rpl.svg -------------------------------------------------------------------------------- /public/icons/tokens/rseth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/rseth.svg -------------------------------------------------------------------------------- /public/icons/tokens/s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/s.svg -------------------------------------------------------------------------------- /public/icons/tokens/savax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/savax.svg -------------------------------------------------------------------------------- /public/icons/tokens/scr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/scr.svg -------------------------------------------------------------------------------- /public/icons/tokens/sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/sd.svg -------------------------------------------------------------------------------- /public/icons/tokens/sdai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/sdai.svg -------------------------------------------------------------------------------- /public/icons/tokens/seth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/seth.svg -------------------------------------------------------------------------------- /public/icons/tokens/sgho.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/sgho.svg -------------------------------------------------------------------------------- /public/icons/tokens/snx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/snx.svg -------------------------------------------------------------------------------- /public/icons/tokens/steth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/steth.svg -------------------------------------------------------------------------------- /public/icons/tokens/stg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/stg.svg -------------------------------------------------------------------------------- /public/icons/tokens/stkaave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/stkaave.svg -------------------------------------------------------------------------------- /public/icons/tokens/stkbpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/stkbpt.svg -------------------------------------------------------------------------------- /public/icons/tokens/stkbptv2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/stkbptv2.svg -------------------------------------------------------------------------------- /public/icons/tokens/stkgho.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/stkgho.svg -------------------------------------------------------------------------------- /public/icons/tokens/stmatic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/stmatic.svg -------------------------------------------------------------------------------- /public/icons/tokens/sts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/sts.svg -------------------------------------------------------------------------------- /public/icons/tokens/susd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/susd.svg -------------------------------------------------------------------------------- /public/icons/tokens/susde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/susde.svg -------------------------------------------------------------------------------- /public/icons/tokens/sushi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/sushi.svg -------------------------------------------------------------------------------- /public/icons/tokens/syrupusdt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/syrupusdt.svg -------------------------------------------------------------------------------- /public/icons/tokens/tbtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/tbtc.svg -------------------------------------------------------------------------------- /public/icons/tokens/teth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/teth.svg -------------------------------------------------------------------------------- /public/icons/tokens/tribe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/tribe.svg -------------------------------------------------------------------------------- /public/icons/tokens/tusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/tusd.svg -------------------------------------------------------------------------------- /public/icons/tokens/tydroinkpoints.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/tydroinkpoints.svg -------------------------------------------------------------------------------- /public/icons/tokens/uni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/uni.svg -------------------------------------------------------------------------------- /public/icons/tokens/uscc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/uscc.svg -------------------------------------------------------------------------------- /public/icons/tokens/usdbc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/usdbc.svg -------------------------------------------------------------------------------- /public/icons/tokens/usdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/usdc.svg -------------------------------------------------------------------------------- /public/icons/tokens/usde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/usde.svg -------------------------------------------------------------------------------- /public/icons/tokens/usdg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/usdg.svg -------------------------------------------------------------------------------- /public/icons/tokens/usdp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/usdp.svg -------------------------------------------------------------------------------- /public/icons/tokens/usds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/usds.svg -------------------------------------------------------------------------------- /public/icons/tokens/usdt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/usdt.svg -------------------------------------------------------------------------------- /public/icons/tokens/usdt0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/usdt0.svg -------------------------------------------------------------------------------- /public/icons/tokens/usdtb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/usdtb.svg -------------------------------------------------------------------------------- /public/icons/tokens/usd₮0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/usd₮0.svg -------------------------------------------------------------------------------- /public/icons/tokens/ust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ust.svg -------------------------------------------------------------------------------- /public/icons/tokens/ustb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ustb.svg -------------------------------------------------------------------------------- /public/icons/tokens/usyc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/usyc.svg -------------------------------------------------------------------------------- /public/icons/tokens/vbill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/vbill.svg -------------------------------------------------------------------------------- /public/icons/tokens/wavax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/wavax.svg -------------------------------------------------------------------------------- /public/icons/tokens/wbnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/wbnb.svg -------------------------------------------------------------------------------- /public/icons/tokens/wbtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/wbtc.svg -------------------------------------------------------------------------------- /public/icons/tokens/weeth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/weeth.svg -------------------------------------------------------------------------------- /public/icons/tokens/weth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/weth.svg -------------------------------------------------------------------------------- /public/icons/tokens/wftm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/wftm.svg -------------------------------------------------------------------------------- /public/icons/tokens/wone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/wone.svg -------------------------------------------------------------------------------- /public/icons/tokens/wpol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/wpol.svg -------------------------------------------------------------------------------- /public/icons/tokens/wrseth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/wrseth.svg -------------------------------------------------------------------------------- /public/icons/tokens/ws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/ws.svg -------------------------------------------------------------------------------- /public/icons/tokens/wsteth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/wsteth.svg -------------------------------------------------------------------------------- /public/icons/tokens/wxdai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/wxdai.svg -------------------------------------------------------------------------------- /public/icons/tokens/wxpl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/wxpl.svg -------------------------------------------------------------------------------- /public/icons/tokens/xaut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/xaut.svg -------------------------------------------------------------------------------- /public/icons/tokens/xaut0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/xaut0.svg -------------------------------------------------------------------------------- /public/icons/tokens/xdai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/xdai.svg -------------------------------------------------------------------------------- /public/icons/tokens/xpl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/xpl.svg -------------------------------------------------------------------------------- /public/icons/tokens/xsushi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/xsushi.svg -------------------------------------------------------------------------------- /public/icons/tokens/yfi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/yfi.svg -------------------------------------------------------------------------------- /public/icons/tokens/zk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/zk.svg -------------------------------------------------------------------------------- /public/icons/tokens/zrx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/tokens/zrx.svg -------------------------------------------------------------------------------- /public/icons/wallets/browserWallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/wallets/browserWallet.svg -------------------------------------------------------------------------------- /public/icons/wallets/coinbase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/wallets/coinbase.svg -------------------------------------------------------------------------------- /public/icons/wallets/frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/wallets/frame.svg -------------------------------------------------------------------------------- /public/icons/wallets/torus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/wallets/torus.svg -------------------------------------------------------------------------------- /public/icons/wallets/walletConnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/icons/wallets/walletConnect.svg -------------------------------------------------------------------------------- /public/illustration-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/illustration-green.svg -------------------------------------------------------------------------------- /public/illustration_borrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/illustration_borrow.png -------------------------------------------------------------------------------- /public/illustration_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/illustration_desktop.png -------------------------------------------------------------------------------- /public/illustration_friendly_ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/illustration_friendly_ghost.png -------------------------------------------------------------------------------- /public/illustration_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/illustration_token.png -------------------------------------------------------------------------------- /public/lightningBoltGradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/lightningBoltGradient.svg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/resting-gho-hat-purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/resting-gho-hat-purple.svg -------------------------------------------------------------------------------- /public/sgho-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/public/sgho-banner.svg -------------------------------------------------------------------------------- /src/architecture/FPMath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/architecture/FPMath.ts -------------------------------------------------------------------------------- /src/architecture/FixedPointDecimal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/architecture/FixedPointDecimal.ts -------------------------------------------------------------------------------- /src/architecture/FixedPointNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/architecture/FixedPointNumber.ts -------------------------------------------------------------------------------- /src/components/AddressBlocked.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/AddressBlocked.tsx -------------------------------------------------------------------------------- /src/components/AddressBlockedModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/AddressBlockedModal.tsx -------------------------------------------------------------------------------- /src/components/Analytics/AnalyticsConsent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/Analytics/AnalyticsConsent.tsx -------------------------------------------------------------------------------- /src/components/AssetCategoryMultiselect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/AssetCategoryMultiselect.tsx -------------------------------------------------------------------------------- /src/components/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/Avatar.tsx -------------------------------------------------------------------------------- /src/components/BridgeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/BridgeButton.tsx -------------------------------------------------------------------------------- /src/components/ChainAvailabilityText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/ChainAvailabilityText.tsx -------------------------------------------------------------------------------- /src/components/CircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/CircleIcon.tsx -------------------------------------------------------------------------------- /src/components/CompactableTypography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/CompactableTypography.tsx -------------------------------------------------------------------------------- /src/components/ConnectWalletPaper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/ConnectWalletPaper.tsx -------------------------------------------------------------------------------- /src/components/ConnectWalletPaperStaking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/ConnectWalletPaperStaking.tsx -------------------------------------------------------------------------------- /src/components/ContentContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/ContentContainer.tsx -------------------------------------------------------------------------------- /src/components/ContentWithTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/ContentWithTooltip.tsx -------------------------------------------------------------------------------- /src/components/FaucetButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/FaucetButton.tsx -------------------------------------------------------------------------------- /src/components/HealthFactorNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/HealthFactorNumber.tsx -------------------------------------------------------------------------------- /src/components/MarketAssetCategoryFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/MarketAssetCategoryFilter.tsx -------------------------------------------------------------------------------- /src/components/MarketSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/MarketSwitcher.tsx -------------------------------------------------------------------------------- /src/components/Meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/Meta.tsx -------------------------------------------------------------------------------- /src/components/NoSearchResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/NoSearchResults.tsx -------------------------------------------------------------------------------- /src/components/ReserveOverviewBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/ReserveOverviewBox.tsx -------------------------------------------------------------------------------- /src/components/ReserveSubheader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/ReserveSubheader.tsx -------------------------------------------------------------------------------- /src/components/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/SearchInput.tsx -------------------------------------------------------------------------------- /src/components/SecondsToString.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/SecondsToString.tsx -------------------------------------------------------------------------------- /src/components/StyledToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/StyledToggleButton.tsx -------------------------------------------------------------------------------- /src/components/StyledToggleButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/StyledToggleButtonGroup.tsx -------------------------------------------------------------------------------- /src/components/TextWithTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/TextWithTooltip.tsx -------------------------------------------------------------------------------- /src/components/TitleWithFiltersAndSearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/TitleWithFiltersAndSearchBar.tsx -------------------------------------------------------------------------------- /src/components/TitleWithSearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/TitleWithSearchBar.tsx -------------------------------------------------------------------------------- /src/components/TopInfoPanel/PageTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/TopInfoPanel/PageTitle.tsx -------------------------------------------------------------------------------- /src/components/TopInfoPanel/TopInfoPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/TopInfoPanel/TopInfoPanel.tsx -------------------------------------------------------------------------------- /src/components/TopInfoPanel/TopInfoPanelItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/TopInfoPanel/TopInfoPanelItem.tsx -------------------------------------------------------------------------------- /src/components/TransactionEventHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/TransactionEventHandler.tsx -------------------------------------------------------------------------------- /src/components/UserAuthenticated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/UserAuthenticated.tsx -------------------------------------------------------------------------------- /src/components/UserDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/UserDisplay.tsx -------------------------------------------------------------------------------- /src/components/UserNameText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/UserNameText.tsx -------------------------------------------------------------------------------- /src/components/WalletConnection/ReadOnlyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/WalletConnection/ReadOnlyModal.tsx -------------------------------------------------------------------------------- /src/components/Warnings/AMPLWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/Warnings/AMPLWarning.tsx -------------------------------------------------------------------------------- /src/components/Warnings/BorrowDisabledWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/Warnings/BorrowDisabledWarning.tsx -------------------------------------------------------------------------------- /src/components/Warnings/CooldownWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/Warnings/CooldownWarning.tsx -------------------------------------------------------------------------------- /src/components/Warnings/OffboardingWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/Warnings/OffboardingWarning.tsx -------------------------------------------------------------------------------- /src/components/Warnings/StETHCollateralWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/Warnings/StETHCollateralWarning.tsx -------------------------------------------------------------------------------- /src/components/badges/ExclamationBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/badges/ExclamationBadge.tsx -------------------------------------------------------------------------------- /src/components/caps/CapsCircularStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/caps/CapsCircularStatus.tsx -------------------------------------------------------------------------------- /src/components/caps/CapsHint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/caps/CapsHint.tsx -------------------------------------------------------------------------------- /src/components/caps/CapsTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/caps/CapsTooltip.tsx -------------------------------------------------------------------------------- /src/components/caps/DebtCeilingStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/caps/DebtCeilingStatus.tsx -------------------------------------------------------------------------------- /src/components/caps/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/caps/helper.ts -------------------------------------------------------------------------------- /src/components/icons/HeyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/icons/HeyIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/LensIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/icons/LensIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/WalletIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/icons/WalletIcon.tsx -------------------------------------------------------------------------------- /src/components/incentives/IncentivesButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/incentives/IncentivesButton.tsx -------------------------------------------------------------------------------- /src/components/incentives/IncentivesCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/incentives/IncentivesCard.tsx -------------------------------------------------------------------------------- /src/components/incentives/incentives.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/incentives/incentives.helper.ts -------------------------------------------------------------------------------- /src/components/infoTooltips/AMPLToolTip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/AMPLToolTip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/ApprovalTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/ApprovalTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/AvailableTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/AvailableTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/BorrowPowerTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/BorrowPowerTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/CollateralTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/CollateralTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/DarkTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/DarkTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/EModeTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/EModeTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/ExecutionFeeTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/ExecutionFeeTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/FixedAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/FixedAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/FrozenTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/FrozenTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/GasTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/GasTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/GhoRateTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/GhoRateTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/MaxLTVTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/MaxLTVTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/NetAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/NetAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/NetworkCostTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/NetworkCostTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/OffboardingToolTip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/OffboardingToolTip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/PausedTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/PausedTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/PriceImpactTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/PriceImpactTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/ReadOnlyModeTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/ReadOnlyModeTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/RenFILToolTip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/RenFILToolTip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/SlippageTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/SlippageTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/SpkAirdropTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/SpkAirdropTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/StableAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/StableAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/SuperFestTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/SuperFestTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/SwapFeeTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/SwapFeeTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/VariableAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/infoTooltips/VariableAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/isolationMode/IsolatedBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/isolationMode/IsolatedBadge.tsx -------------------------------------------------------------------------------- /src/components/lists/ListColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/lists/ListColumn.tsx -------------------------------------------------------------------------------- /src/components/lists/ListHeaderTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/lists/ListHeaderTitle.tsx -------------------------------------------------------------------------------- /src/components/lists/ListHeaderWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/lists/ListHeaderWrapper.tsx -------------------------------------------------------------------------------- /src/components/lists/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/lists/ListItem.tsx -------------------------------------------------------------------------------- /src/components/lists/ListMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/lists/ListMobileItem.tsx -------------------------------------------------------------------------------- /src/components/lists/ListWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/lists/ListWrapper.tsx -------------------------------------------------------------------------------- /src/components/primitives/BasicModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/primitives/BasicModal.tsx -------------------------------------------------------------------------------- /src/components/primitives/CheckBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/primitives/CheckBadge.tsx -------------------------------------------------------------------------------- /src/components/primitives/FormattedNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/primitives/FormattedNumber.tsx -------------------------------------------------------------------------------- /src/components/primitives/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/primitives/Link.tsx -------------------------------------------------------------------------------- /src/components/primitives/NoData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/primitives/NoData.tsx -------------------------------------------------------------------------------- /src/components/primitives/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/primitives/Row.tsx -------------------------------------------------------------------------------- /src/components/primitives/TokenIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/primitives/TokenIcon.tsx -------------------------------------------------------------------------------- /src/components/primitives/TypographyGradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/primitives/TypographyGradient.tsx -------------------------------------------------------------------------------- /src/components/primitives/Warning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/primitives/Warning.tsx -------------------------------------------------------------------------------- /src/components/transactions/AssetInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/AssetInput.tsx -------------------------------------------------------------------------------- /src/components/transactions/Borrow/BorrowModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Borrow/BorrowModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Bridge/BridgeAmount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Bridge/BridgeAmount.tsx -------------------------------------------------------------------------------- /src/components/transactions/Bridge/BridgeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Bridge/BridgeConfig.ts -------------------------------------------------------------------------------- /src/components/transactions/Bridge/BridgeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Bridge/BridgeModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Bridge/Oracle-abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Bridge/Oracle-abi.json -------------------------------------------------------------------------------- /src/components/transactions/Bridge/Router-abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Bridge/Router-abi.json -------------------------------------------------------------------------------- /src/components/transactions/Emode/EmodeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Emode/EmodeActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Emode/EmodeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Emode/EmodeModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Emode/EmodeNaming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Emode/EmodeNaming.ts -------------------------------------------------------------------------------- /src/components/transactions/Faucet/FaucetModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Faucet/FaucetModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/FlowCommons/Error.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/Success.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/FlowCommons/Success.tsx -------------------------------------------------------------------------------- /src/components/transactions/NetworkSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/NetworkSelect.tsx -------------------------------------------------------------------------------- /src/components/transactions/Repay/RepayActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Repay/RepayActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Repay/RepayModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Repay/RepayModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Stake/StakeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Stake/StakeActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Stake/StakeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Stake/StakeModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Supply/SupplyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Supply/SupplyModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Swap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Swap/README.md -------------------------------------------------------------------------------- /src/components/transactions/Swap/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Swap/actions/index.ts -------------------------------------------------------------------------------- /src/components/transactions/Swap/details/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Swap/details/index.ts -------------------------------------------------------------------------------- /src/components/transactions/Swap/docs/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Swap/docs/.gitkeep -------------------------------------------------------------------------------- /src/components/transactions/Swap/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Swap/types/index.ts -------------------------------------------------------------------------------- /src/components/transactions/Swap/warnings/preInputs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CowOpenOrdersWarning'; 2 | -------------------------------------------------------------------------------- /src/components/transactions/TxActionsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/TxActionsWrapper.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/SNXWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Warnings/SNXWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Withdraw/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/Withdraw/utils.ts -------------------------------------------------------------------------------- /src/components/transactions/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/components/transactions/utils.ts -------------------------------------------------------------------------------- /src/createEmotionCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/createEmotionCache.ts -------------------------------------------------------------------------------- /src/helpers/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/helpers/provider.ts -------------------------------------------------------------------------------- /src/helpers/text-center-ellipsis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/helpers/text-center-ellipsis.ts -------------------------------------------------------------------------------- /src/helpers/timeHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/helpers/timeHelper.tsx -------------------------------------------------------------------------------- /src/helpers/toggle-local-storage-click.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/helpers/toggle-local-storage-click.ts -------------------------------------------------------------------------------- /src/helpers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/helpers/types.ts -------------------------------------------------------------------------------- /src/helpers/useGovernanceDelegate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/helpers/useGovernanceDelegate.tsx -------------------------------------------------------------------------------- /src/helpers/useParaSwapTransactionHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/helpers/useParaSwapTransactionHandler.tsx -------------------------------------------------------------------------------- /src/helpers/useTransactionHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/helpers/useTransactionHandler.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/useAppDataProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/app-data-provider/useAppDataProvider.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/useMarketsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/app-data-provider/useMarketsData.ts -------------------------------------------------------------------------------- /src/hooks/app-data-provider/useWalletBalances.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/app-data-provider/useWalletBalances.tsx -------------------------------------------------------------------------------- /src/hooks/bridge/useBridgeWalletBalance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/bridge/useBridgeWalletBalance.tsx -------------------------------------------------------------------------------- /src/hooks/commonTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/commonTypes.ts -------------------------------------------------------------------------------- /src/hooks/generic/useTokensBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/generic/useTokensBalance.ts -------------------------------------------------------------------------------- /src/hooks/governance/useDelegateeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/governance/useDelegateeData.ts -------------------------------------------------------------------------------- /src/hooks/governance/useGovernanceTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/governance/useGovernanceTokens.ts -------------------------------------------------------------------------------- /src/hooks/governance/usePayloadsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/governance/usePayloadsData.ts -------------------------------------------------------------------------------- /src/hooks/governance/usePowers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/governance/usePowers.ts -------------------------------------------------------------------------------- /src/hooks/governance/useProposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/governance/useProposal.ts -------------------------------------------------------------------------------- /src/hooks/governance/useProposalVotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/governance/useProposalVotes.ts -------------------------------------------------------------------------------- /src/hooks/governance/useProposals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/governance/useProposals.ts -------------------------------------------------------------------------------- /src/hooks/governance/useProposalsSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/governance/useProposalsSearch.ts -------------------------------------------------------------------------------- /src/hooks/governance/useRepresentatives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/governance/useRepresentatives.ts -------------------------------------------------------------------------------- /src/hooks/governance/useTokensPower.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/governance/useTokensPower.ts -------------------------------------------------------------------------------- /src/hooks/governance/useVotingPowerAt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/governance/useVotingPowerAt.ts -------------------------------------------------------------------------------- /src/hooks/migration/usePoolReserve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/migration/usePoolReserve.ts -------------------------------------------------------------------------------- /src/hooks/migration/useUserMigrationReserves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/migration/useUserMigrationReserves.ts -------------------------------------------------------------------------------- /src/hooks/migration/useUserSummaryAfterMigration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/migration/useUserSummaryAfterMigration.ts -------------------------------------------------------------------------------- /src/hooks/migration/useUserSummaryForMigration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/migration/useUserSummaryForMigration.ts -------------------------------------------------------------------------------- /src/hooks/paraswap/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/paraswap/common.ts -------------------------------------------------------------------------------- /src/hooks/paraswap/useCollateralRepaySwap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/paraswap/useCollateralRepaySwap.tsx -------------------------------------------------------------------------------- /src/hooks/paraswap/useCollateralSwap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/paraswap/useCollateralSwap.tsx -------------------------------------------------------------------------------- /src/hooks/paraswap/useDebtSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/paraswap/useDebtSwitch.tsx -------------------------------------------------------------------------------- /src/hooks/paraswap/useParaswapRates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/paraswap/useParaswapRates.ts -------------------------------------------------------------------------------- /src/hooks/pool/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/pool/selectors.ts -------------------------------------------------------------------------------- /src/hooks/pool/usePoolEModes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/pool/usePoolEModes.ts -------------------------------------------------------------------------------- /src/hooks/pool/usePoolFormattedReserves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/pool/usePoolFormattedReserves.ts -------------------------------------------------------------------------------- /src/hooks/pool/usePoolOracles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/pool/usePoolOracles.ts -------------------------------------------------------------------------------- /src/hooks/pool/usePoolReserves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/pool/usePoolReserves.ts -------------------------------------------------------------------------------- /src/hooks/pool/usePoolReservesIncentives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/pool/usePoolReservesIncentives.ts -------------------------------------------------------------------------------- /src/hooks/pool/usePoolTokensBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/pool/usePoolTokensBalance.ts -------------------------------------------------------------------------------- /src/hooks/pool/useUserPoolReserves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/pool/useUserPoolReserves.ts -------------------------------------------------------------------------------- /src/hooks/pool/useUserPoolReservesIncentives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/pool/useUserPoolReservesIncentives.ts -------------------------------------------------------------------------------- /src/hooks/pool/useUserSummaryAndIncentives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/pool/useUserSummaryAndIncentives.ts -------------------------------------------------------------------------------- /src/hooks/pool/useUserYield.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/pool/useUserYield.ts -------------------------------------------------------------------------------- /src/hooks/pool/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/pool/utils.ts -------------------------------------------------------------------------------- /src/hooks/stake/apyCalculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/stake/apyCalculator.ts -------------------------------------------------------------------------------- /src/hooks/stake/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/stake/common.ts -------------------------------------------------------------------------------- /src/hooks/stake/useGeneralStakeUiData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/stake/useGeneralStakeUiData.ts -------------------------------------------------------------------------------- /src/hooks/stake/useUmbrellaSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/stake/useUmbrellaSummary.ts -------------------------------------------------------------------------------- /src/hooks/stake/useUserStakeUiData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/stake/useUserStakeUiData.ts -------------------------------------------------------------------------------- /src/hooks/token-wrapper/useTokenWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/token-wrapper/useTokenWrapper.ts -------------------------------------------------------------------------------- /src/hooks/useAddressAllowed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useAddressAllowed.tsx -------------------------------------------------------------------------------- /src/hooks/useApprovalTx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useApprovalTx.tsx -------------------------------------------------------------------------------- /src/hooks/useApprovedAmount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useApprovedAmount.tsx -------------------------------------------------------------------------------- /src/hooks/useAssetCaps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useAssetCaps.tsx -------------------------------------------------------------------------------- /src/hooks/useAssetCapsSDK.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useAssetCapsSDK.tsx -------------------------------------------------------------------------------- /src/hooks/useBridgeTransactionHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useBridgeTransactionHistory.tsx -------------------------------------------------------------------------------- /src/hooks/useBridgeTransactionStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useBridgeTransactionStatus.tsx -------------------------------------------------------------------------------- /src/hooks/useCoinGeckoCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useCoinGeckoCategories.ts -------------------------------------------------------------------------------- /src/hooks/useCryptoBuyAvailable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useCryptoBuyAvailable.tsx -------------------------------------------------------------------------------- /src/hooks/useCurrentTimestamp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useCurrentTimestamp.tsx -------------------------------------------------------------------------------- /src/hooks/useEnhancedUserYield.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useEnhancedUserYield.ts -------------------------------------------------------------------------------- /src/hooks/useEthenaIncentives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useEthenaIncentives.ts -------------------------------------------------------------------------------- /src/hooks/useEtherfiIncentives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useEtherfiIncentives.ts -------------------------------------------------------------------------------- /src/hooks/useGasStation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useGasStation.tsx -------------------------------------------------------------------------------- /src/hooks/useGetConnectedWalletType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useGetConnectedWalletType.ts -------------------------------------------------------------------------------- /src/hooks/useGetGasPrices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useGetGasPrices.tsx -------------------------------------------------------------------------------- /src/hooks/useIsContractAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useIsContractAddress.ts -------------------------------------------------------------------------------- /src/hooks/useIsWrongNetwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useIsWrongNetwork.tsx -------------------------------------------------------------------------------- /src/hooks/useMeritIncentives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useMeritIncentives.ts -------------------------------------------------------------------------------- /src/hooks/useMerklIncentives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useMerklIncentives.ts -------------------------------------------------------------------------------- /src/hooks/useMerklPointsIncentives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useMerklPointsIncentives.ts -------------------------------------------------------------------------------- /src/hooks/useModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useModal.tsx -------------------------------------------------------------------------------- /src/hooks/usePermissions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/usePermissions.tsx -------------------------------------------------------------------------------- /src/hooks/usePolling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/usePolling.tsx -------------------------------------------------------------------------------- /src/hooks/usePreviousState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/usePreviousState.ts -------------------------------------------------------------------------------- /src/hooks/useReserveActionState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useReserveActionState.tsx -------------------------------------------------------------------------------- /src/hooks/useSGhoApyHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useSGhoApyHistory.ts -------------------------------------------------------------------------------- /src/hooks/useSonicIncentives.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useSonicIncentives.tsx -------------------------------------------------------------------------------- /src/hooks/useStakeTokenAPR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useStakeTokenAPR.ts -------------------------------------------------------------------------------- /src/hooks/useSwapOrdersTracking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useSwapOrdersTracking.tsx -------------------------------------------------------------------------------- /src/hooks/useTransactionHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useTransactionHistory.tsx -------------------------------------------------------------------------------- /src/hooks/useUserMeritIncentives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useUserMeritIncentives.ts -------------------------------------------------------------------------------- /src/hooks/useWrappedTokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useWrappedTokens.tsx -------------------------------------------------------------------------------- /src/hooks/useZeroLTVBlockingWithdraw.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/hooks/useZeroLTVBlockingWithdraw.tsx -------------------------------------------------------------------------------- /src/layouts/AppFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/AppFooter.tsx -------------------------------------------------------------------------------- /src/layouts/AppGlobalStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/AppGlobalStyles.tsx -------------------------------------------------------------------------------- /src/layouts/AppHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/AppHeader.tsx -------------------------------------------------------------------------------- /src/layouts/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/MainLayout.tsx -------------------------------------------------------------------------------- /src/layouts/MobileMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/MobileMenu.tsx -------------------------------------------------------------------------------- /src/layouts/MoreMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/MoreMenu.tsx -------------------------------------------------------------------------------- /src/layouts/SettingsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/SettingsMenu.tsx -------------------------------------------------------------------------------- /src/layouts/SupportModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/SupportModal.tsx -------------------------------------------------------------------------------- /src/layouts/TopBarNotify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/TopBarNotify.tsx -------------------------------------------------------------------------------- /src/layouts/components/DarkModeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/components/DarkModeSwitcher.tsx -------------------------------------------------------------------------------- /src/layouts/components/DrawerWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/components/DrawerWrapper.tsx -------------------------------------------------------------------------------- /src/layouts/components/LanguageSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/components/LanguageSwitcher.tsx -------------------------------------------------------------------------------- /src/layouts/components/MobileCloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/components/MobileCloseButton.tsx -------------------------------------------------------------------------------- /src/layouts/components/NavItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/components/NavItems.tsx -------------------------------------------------------------------------------- /src/layouts/components/StakingMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/components/StakingMenu.tsx -------------------------------------------------------------------------------- /src/layouts/components/TestNetModeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/layouts/components/TestNetModeSwitcher.tsx -------------------------------------------------------------------------------- /src/libs/LanguageProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/libs/LanguageProvider.tsx -------------------------------------------------------------------------------- /src/libs/abis/erc20_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/libs/abis/erc20_abi.json -------------------------------------------------------------------------------- /src/libs/hooks/use-get-ens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/libs/hooks/use-get-ens.tsx -------------------------------------------------------------------------------- /src/libs/hooks/useWeb3Context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/libs/hooks/useWeb3Context.tsx -------------------------------------------------------------------------------- /src/libs/web3-data-provider/Web3Provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/libs/web3-data-provider/Web3Provider.tsx -------------------------------------------------------------------------------- /src/locales/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/locales/de/messages.po -------------------------------------------------------------------------------- /src/locales/el/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/locales/el/messages.js -------------------------------------------------------------------------------- /src/locales/el/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/locales/el/messages.po -------------------------------------------------------------------------------- /src/locales/en/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/locales/en/messages.js -------------------------------------------------------------------------------- /src/locales/en/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/locales/en/messages.po -------------------------------------------------------------------------------- /src/locales/es/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/locales/es/messages.js -------------------------------------------------------------------------------- /src/locales/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/locales/es/messages.po -------------------------------------------------------------------------------- /src/locales/fr/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/locales/fr/messages.js -------------------------------------------------------------------------------- /src/locales/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/locales/fr/messages.po -------------------------------------------------------------------------------- /src/locales/ru/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/locales/ru/messages.po -------------------------------------------------------------------------------- /src/locales/zh/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/locales/zh/messages.po -------------------------------------------------------------------------------- /src/modules/bridge/BridgeTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/bridge/BridgeTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/bridge/BridgeTransactionListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/bridge/BridgeTransactionListItem.tsx -------------------------------------------------------------------------------- /src/modules/bridge/BridgeWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/bridge/BridgeWrapper.tsx -------------------------------------------------------------------------------- /src/modules/bridge/OffRamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/bridge/OffRamp.json -------------------------------------------------------------------------------- /src/modules/bridge/OnRamp.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/bridge/TransactionListItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/bridge/TransactionListItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardContentNoData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/DashboardContentNoData.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/DashboardContentWrapper.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardEModeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/DashboardEModeButton.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardListTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/DashboardListTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/DashboardTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListAPRColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/lists/ListAPRColumn.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListBottomText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/lists/ListBottomText.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListButtonsColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/lists/ListButtonsColumn.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/lists/ListHeader.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/lists/ListItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListItemWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/lists/ListItemWrapper.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/lists/ListLoader.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListTopInfoItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/lists/ListTopInfoItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListValueColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/lists/ListValueColumn.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListValueRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/lists/ListValueRow.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SlippageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/lists/SlippageList.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/dashboard/lists/constants.ts -------------------------------------------------------------------------------- /src/modules/faucet/FaucetAssetsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/faucet/FaucetAssetsList.tsx -------------------------------------------------------------------------------- /src/modules/faucet/FaucetItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/faucet/FaucetItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/faucet/FaucetMobileItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/faucet/FaucetMobileItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/faucet/FaucetTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/faucet/FaucetTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/governance/DelegatedInfoPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/DelegatedInfoPanel.tsx -------------------------------------------------------------------------------- /src/modules/governance/FormattedProposalTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/FormattedProposalTime.tsx -------------------------------------------------------------------------------- /src/modules/governance/GovernanceTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/GovernanceTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/governance/ProposalListHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/ProposalListHeader.tsx -------------------------------------------------------------------------------- /src/modules/governance/ProposalV3ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/ProposalV3ListItem.tsx -------------------------------------------------------------------------------- /src/modules/governance/ProposalsV3List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/ProposalsV3List.tsx -------------------------------------------------------------------------------- /src/modules/governance/RepresentativesInfoPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/RepresentativesInfoPanel.tsx -------------------------------------------------------------------------------- /src/modules/governance/StateBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/StateBadge.tsx -------------------------------------------------------------------------------- /src/modules/governance/UserGovernanceInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/UserGovernanceInfo.tsx -------------------------------------------------------------------------------- /src/modules/governance/VoteBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/VoteBar.tsx -------------------------------------------------------------------------------- /src/modules/governance/VotingPowerInfoPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/VotingPowerInfoPanel.tsx -------------------------------------------------------------------------------- /src/modules/governance/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/helpers.ts -------------------------------------------------------------------------------- /src/modules/governance/proposal/VoteInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/proposal/VoteInfo.tsx -------------------------------------------------------------------------------- /src/modules/governance/proposal/VotersList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/proposal/VotersList.tsx -------------------------------------------------------------------------------- /src/modules/governance/proposal/VotersListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/proposal/VotersListItem.tsx -------------------------------------------------------------------------------- /src/modules/governance/proposal/VotersListModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/proposal/VotersListModal.tsx -------------------------------------------------------------------------------- /src/modules/governance/proposal/VotingResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/proposal/VotingResults.tsx -------------------------------------------------------------------------------- /src/modules/governance/utils/formatProposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/utils/formatProposal.ts -------------------------------------------------------------------------------- /src/modules/governance/utils/getProposalMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/governance/utils/getProposalMetadata.ts -------------------------------------------------------------------------------- /src/modules/history/HistoryFilterMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/history/HistoryFilterMenu.tsx -------------------------------------------------------------------------------- /src/modules/history/HistoryItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/history/HistoryItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/history/HistoryMobileItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/history/HistoryMobileItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/history/HistoryTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/history/HistoryTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/history/HistoryWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/history/HistoryWrapper.tsx -------------------------------------------------------------------------------- /src/modules/history/HistoryWrapperMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/history/HistoryWrapperMobile.tsx -------------------------------------------------------------------------------- /src/modules/history/PriceUnavailable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/history/PriceUnavailable.tsx -------------------------------------------------------------------------------- /src/modules/history/TransactionMobileRowItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/history/TransactionMobileRowItem.tsx -------------------------------------------------------------------------------- /src/modules/history/TransactionRowItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/history/TransactionRowItem.tsx -------------------------------------------------------------------------------- /src/modules/history/actions/ActionDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/history/actions/ActionDetails.tsx -------------------------------------------------------------------------------- /src/modules/history/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/history/helpers.ts -------------------------------------------------------------------------------- /src/modules/history/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/history/types.ts -------------------------------------------------------------------------------- /src/modules/markets/Gho/GhoBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/markets/Gho/GhoBanner.tsx -------------------------------------------------------------------------------- /src/modules/markets/MarketAssetsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/markets/MarketAssetsList.tsx -------------------------------------------------------------------------------- /src/modules/markets/MarketAssetsListContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/markets/MarketAssetsListContainer.tsx -------------------------------------------------------------------------------- /src/modules/markets/MarketAssetsListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/markets/MarketAssetsListItem.tsx -------------------------------------------------------------------------------- /src/modules/markets/MarketAssetsListItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/markets/MarketAssetsListItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/markets/MarketAssetsListMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/markets/MarketAssetsListMobileItem.tsx -------------------------------------------------------------------------------- /src/modules/markets/MarketsTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/markets/MarketsTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/markets/utils/assetCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/markets/utils/assetCategories.ts -------------------------------------------------------------------------------- /src/modules/migration/HFChange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/migration/HFChange.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationBottomPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/migration/MigrationBottomPanel.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/migration/MigrationList.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationListBorrowItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/migration/MigrationListBorrowItem.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/migration/MigrationListItem.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationListItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/migration/MigrationListItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationListItemToggler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/migration/MigrationListItemToggler.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationListMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/migration/MigrationListMobileItem.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationLists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/migration/MigrationLists.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationMarketCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/migration/MigrationMarketCard.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationMobileList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/migration/MigrationMobileList.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationSelectionBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/migration/MigrationSelectionBox.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/migration/MigrationTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/migration/StETHMigrationWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/migration/StETHMigrationWarning.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/AddTokenDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/reserve-overview/AddTokenDropdown.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/BorrowInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/reserve-overview/BorrowInfo.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/Gho/SavingsGho.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/reserve-overview/Gho/SavingsGho.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/ReserveActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/reserve-overview/ReserveActions.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/ReserveEModePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/reserve-overview/ReserveEModePanel.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/ReservePanels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/reserve-overview/ReservePanels.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/ReserveTopDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/reserve-overview/ReserveTopDetails.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/SupplyInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/reserve-overview/SupplyInfo.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/TimeRangeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/reserve-overview/TimeRangeSelector.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/TokenLinkDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/reserve-overview/TokenLinkDropdown.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/graphs/ApyGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/reserve-overview/graphs/ApyGraph.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/graphs/GraphLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/reserve-overview/graphs/GraphLegend.tsx -------------------------------------------------------------------------------- /src/modules/sGho/SGhoApyChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/sGho/SGhoApyChart.tsx -------------------------------------------------------------------------------- /src/modules/sGho/SGhoDepositPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/sGho/SGhoDepositPanel.tsx -------------------------------------------------------------------------------- /src/modules/sGho/SGhoHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/sGho/SGhoHeader.tsx -------------------------------------------------------------------------------- /src/modules/sGho/SavingsGhoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/sGho/SavingsGhoCard.tsx -------------------------------------------------------------------------------- /src/modules/staking/BuyWithFiat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/staking/BuyWithFiat.tsx -------------------------------------------------------------------------------- /src/modules/staking/BuyWithFiatModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/staking/BuyWithFiatModal.tsx -------------------------------------------------------------------------------- /src/modules/staking/GetABPToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/staking/GetABPToken.tsx -------------------------------------------------------------------------------- /src/modules/staking/GetABPTokenModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/staking/GetABPTokenModal.tsx -------------------------------------------------------------------------------- /src/modules/staking/GetGhoToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/staking/GetGhoToken.tsx -------------------------------------------------------------------------------- /src/modules/staking/GhoStakingPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/staking/GhoStakingPanel.tsx -------------------------------------------------------------------------------- /src/modules/staking/SavingsGhoProgram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/staking/SavingsGhoProgram.tsx -------------------------------------------------------------------------------- /src/modules/staking/StakeActionBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/staking/StakeActionBox.tsx -------------------------------------------------------------------------------- /src/modules/staking/StakingHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/staking/StakingHeader.tsx -------------------------------------------------------------------------------- /src/modules/staking/StakingPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/staking/StakingPanel.tsx -------------------------------------------------------------------------------- /src/modules/staking/StakingPanelNoWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/staking/StakingPanelNoWallet.tsx -------------------------------------------------------------------------------- /src/modules/staking/StakingPanelSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/staking/StakingPanelSkeleton.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/AmountSharesItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/AmountSharesItem.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/AmountStakedUnderlyingItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/AmountStakedUnderlyingItem.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/AvailableToClaimItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/AvailableToClaimItem.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/AvailableToStakeItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/AvailableToStakeItem.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/NoStakeAssets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/NoStakeAssets.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/StakeAssets/StakeAssetName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/StakeAssets/StakeAssetName.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/StakeCooldownActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/StakeCooldownActions.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/StakeCooldownModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/StakeCooldownModal.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/StakeCooldownModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/StakeCooldownModalContent.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/StakingApyItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/StakingApyItem.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/UmbrellaActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/UmbrellaActions.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/UmbrellaAssetsDefault.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/UmbrellaAssetsDefault.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/UmbrellaClaimActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/UmbrellaClaimActions.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/UmbrellaClaimModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/UmbrellaClaimModal.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/UmbrellaClaimModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/UmbrellaClaimModalContent.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/UmbrellaHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/UmbrellaHeader.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/UmbrellaMarketSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/UmbrellaMarketSwitcher.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/UmbrellaModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/UmbrellaModal.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/UmbrellaModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/UmbrellaModalContent.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/UnstakeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/UnstakeModal.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/UnstakeModalActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/UnstakeModalActions.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/UnstakeModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/UnstakeModalContent.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/helpers/ApyTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/helpers/ApyTooltip.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/helpers/Helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/helpers/Helpers.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/helpers/MultiIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/helpers/MultiIcon.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/helpers/SharesTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/helpers/SharesTooltip.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/helpers/StakingDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/helpers/StakingDropdown.tsx -------------------------------------------------------------------------------- /src/modules/umbrella/hooks/usePreviewRedeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/hooks/usePreviewRedeem.ts -------------------------------------------------------------------------------- /src/modules/umbrella/hooks/usePreviewStake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/hooks/usePreviewStake.ts -------------------------------------------------------------------------------- /src/modules/umbrella/hooks/useStakeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/modules/umbrella/hooks/useStakeData.ts -------------------------------------------------------------------------------- /src/services/ApprovedAmountService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/ApprovedAmountService.ts -------------------------------------------------------------------------------- /src/services/CoWProtocolPricesService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/CoWProtocolPricesService.ts -------------------------------------------------------------------------------- /src/services/DelegationTokenService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/DelegationTokenService.ts -------------------------------------------------------------------------------- /src/services/Erc20Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/Erc20Service.ts -------------------------------------------------------------------------------- /src/services/FamilyPricesService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/FamilyPricesService.ts -------------------------------------------------------------------------------- /src/services/GovernanceService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/GovernanceService.ts -------------------------------------------------------------------------------- /src/services/GovernanceV3Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/GovernanceV3Service.ts -------------------------------------------------------------------------------- /src/services/MigrationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/MigrationService.ts -------------------------------------------------------------------------------- /src/services/StkAbptMigrationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/StkAbptMigrationService.ts -------------------------------------------------------------------------------- /src/services/TokenWrapperService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/TokenWrapperService.ts -------------------------------------------------------------------------------- /src/services/UIIncentivesService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/UIIncentivesService.ts -------------------------------------------------------------------------------- /src/services/UIPoolService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/UIPoolService.ts -------------------------------------------------------------------------------- /src/services/UiStakeDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/UiStakeDataService.ts -------------------------------------------------------------------------------- /src/services/UmbrellaStakeDataService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/UmbrellaStakeDataService.ts -------------------------------------------------------------------------------- /src/services/VotingMachineService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/VotingMachineService.ts -------------------------------------------------------------------------------- /src/services/WalletBalanceService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/services/WalletBalanceService.ts -------------------------------------------------------------------------------- /src/store/analyticsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/analyticsSlice.ts -------------------------------------------------------------------------------- /src/store/favoriteMarketsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/favoriteMarketsSlice.ts -------------------------------------------------------------------------------- /src/store/governanceSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/governanceSlice.ts -------------------------------------------------------------------------------- /src/store/layoutSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/layoutSlice.ts -------------------------------------------------------------------------------- /src/store/poolSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/poolSelectors.ts -------------------------------------------------------------------------------- /src/store/poolSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/poolSlice.ts -------------------------------------------------------------------------------- /src/store/protocolDataSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/protocolDataSlice.ts -------------------------------------------------------------------------------- /src/store/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/root.ts -------------------------------------------------------------------------------- /src/store/stakeSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/stakeSlice.ts -------------------------------------------------------------------------------- /src/store/transactionsSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/transactionsSelectors.ts -------------------------------------------------------------------------------- /src/store/transactionsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/transactionsSlice.ts -------------------------------------------------------------------------------- /src/store/utils/domain-fetchers/ens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/utils/domain-fetchers/ens.ts -------------------------------------------------------------------------------- /src/store/utils/domain-fetchers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/utils/domain-fetchers/index.ts -------------------------------------------------------------------------------- /src/store/utils/queryParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/utils/queryParams.ts -------------------------------------------------------------------------------- /src/store/v3MigrationSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/v3MigrationSelectors.ts -------------------------------------------------------------------------------- /src/store/v3MigrationSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/v3MigrationSlice.ts -------------------------------------------------------------------------------- /src/store/walletDomains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/walletDomains.ts -------------------------------------------------------------------------------- /src/store/walletSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/store/walletSlice.ts -------------------------------------------------------------------------------- /src/styles/variables.css: -------------------------------------------------------------------------------- 1 | body { 2 | --wcm-z-index: 1300; 3 | } 4 | -------------------------------------------------------------------------------- /src/ui-config/SharedDependenciesProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/ui-config/SharedDependenciesProvider.tsx -------------------------------------------------------------------------------- /src/ui-config/TokenList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/ui-config/TokenList.ts -------------------------------------------------------------------------------- /src/ui-config/errorMapping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/ui-config/errorMapping.tsx -------------------------------------------------------------------------------- /src/ui-config/governanceConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/ui-config/governanceConfig.ts -------------------------------------------------------------------------------- /src/ui-config/marketsConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/ui-config/marketsConfig.tsx -------------------------------------------------------------------------------- /src/ui-config/menu-items/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/ui-config/menu-items/index.tsx -------------------------------------------------------------------------------- /src/ui-config/networksConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/ui-config/networksConfig.ts -------------------------------------------------------------------------------- /src/ui-config/onRampServicesConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/ui-config/onRampServicesConfig.tsx -------------------------------------------------------------------------------- /src/ui-config/permitConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/ui-config/permitConfig.ts -------------------------------------------------------------------------------- /src/ui-config/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/ui-config/queries.ts -------------------------------------------------------------------------------- /src/ui-config/reservePatches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/ui-config/reservePatches.ts -------------------------------------------------------------------------------- /src/ui-config/stakeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/ui-config/stakeConfig.ts -------------------------------------------------------------------------------- /src/ui-config/wagmiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/ui-config/wagmiConfig.ts -------------------------------------------------------------------------------- /src/uiConfig.ts: -------------------------------------------------------------------------------- 1 | export const uiConfig = { 2 | appLogo: '/aave-com-logo-header.svg', 3 | }; 4 | -------------------------------------------------------------------------------- /src/utils/ServerJsonRpcProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/ServerJsonRpcProvider.ts -------------------------------------------------------------------------------- /src/utils/__tests__/RotationProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/__tests__/RotationProvider.test.ts -------------------------------------------------------------------------------- /src/utils/__tests__/ghoUtilities.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/__tests__/ghoUtilities.spec.ts -------------------------------------------------------------------------------- /src/utils/__tests__/marketsAndNetworkConfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/__tests__/marketsAndNetworkConfig.spec.ts -------------------------------------------------------------------------------- /src/utils/dashboardSortUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/dashboardSortUtils.ts -------------------------------------------------------------------------------- /src/utils/eMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/eMode.ts -------------------------------------------------------------------------------- /src/utils/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/events.ts -------------------------------------------------------------------------------- /src/utils/getMaxAmountAvailableToBorrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/getMaxAmountAvailableToBorrow.ts -------------------------------------------------------------------------------- /src/utils/getMaxAmountAvailableToSupply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/getMaxAmountAvailableToSupply.ts -------------------------------------------------------------------------------- /src/utils/ghoUtilities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/ghoUtilities.tsx -------------------------------------------------------------------------------- /src/utils/hfUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/hfUtils.ts -------------------------------------------------------------------------------- /src/utils/marketsAndNetworksConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/marketsAndNetworksConfig.ts -------------------------------------------------------------------------------- /src/utils/rotationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/rotationProvider.ts -------------------------------------------------------------------------------- /src/utils/subgraphRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/subgraphRequest.ts -------------------------------------------------------------------------------- /src/utils/swapAdapterHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/swapAdapterHistory.ts -------------------------------------------------------------------------------- /src/utils/tFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/tFetch.ts -------------------------------------------------------------------------------- /src/utils/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/theme.tsx -------------------------------------------------------------------------------- /src/utils/usdtHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/usdtHelpers.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /svgo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/svgo.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aave/interface/HEAD/yarn.lock --------------------------------------------------------------------------------