├── .babelrc ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .linguirc ├── .nvmrc ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── codegen.yml ├── crowdin.yml ├── custom.d.ts ├── cypress.json ├── cypress ├── README.md ├── configs │ ├── base.cypress.json │ ├── v2-markets │ │ ├── amm-v2-full.config.json │ │ ├── amm-v2-smoke.config.json │ │ ├── avalanche-v2-full.config.json │ │ ├── avalanche-v2-smoke.config.json │ │ ├── ethereum-v2-full.config.json │ │ ├── ethereum-v2-smoke.config.json │ │ ├── polygon-v2-full.config.json │ │ └── polygon-v2-smoke.config.json │ └── v3-markets │ │ ├── arbitrum-v3-full.config.json │ │ ├── arbitrum-v3-smoke.config.json │ │ ├── avalanche-v3-full.config.json │ │ ├── avalanche-v3-smoke.config.json │ │ ├── fantom-v3-full.config.json │ │ ├── fantom-v3-smoke.config.json │ │ ├── polygon-v3-full.config.json │ │ └── polygon-v3-smoke.config.json ├── fixtures │ ├── assets.json │ ├── constans.json │ ├── erc20_abi.json │ └── poolConfig.json ├── integration │ ├── 0-v2-markets │ │ ├── 0-main-v2-market │ │ │ ├── 0-assets │ │ │ │ ├── bat.aave-v2.spec.ts │ │ │ │ ├── dai.aave-v2.spec.ts │ │ │ │ ├── eth.aave-v2.spec.ts │ │ │ │ ├── mana.aave-v2.spec.ts │ │ │ │ ├── mkr.aave-v2.spec.ts │ │ │ │ ├── ren.aave-v2.spec.ts │ │ │ │ ├── tusd.aave-v2.spec.ts │ │ │ │ ├── usdc.aave-v2.spec.ts │ │ │ │ └── usdt.aave-v2.spec.ts │ │ │ ├── reward.aave-v2.spec.ts │ │ │ └── swap.aave-v2.spec.ts │ │ ├── 1-amm-v2-market │ │ │ └── 0-assets │ │ │ │ ├── dai.amm-v2.spec.ts │ │ │ │ ├── eth.amm-v2.spec.ts │ │ │ │ ├── usdc.amm-v2.spec.ts │ │ │ │ ├── usdt.amm-v2.spec.ts │ │ │ │ └── wbtc.amm-v2.spec.ts │ │ ├── 2-polygon-v2-market │ │ │ ├── 0-assets │ │ │ │ ├── bal.polygon-v2.spec.ts │ │ │ │ ├── crv.polygon-v2.spec.ts │ │ │ │ ├── dai.polygon-v2.spec.ts │ │ │ │ ├── dpi.polygon-v2.spec.ts │ │ │ │ ├── ghst.polygon-v2.spec.ts │ │ │ │ ├── link.polygon-v2.spec.ts │ │ │ │ ├── matic.polygon-v2.spec.ts │ │ │ │ ├── sushi.polygon-v2.spec.ts │ │ │ │ ├── usdc.polygon-v2.spec.ts │ │ │ │ ├── usdt.polygon-v2.spec.ts │ │ │ │ ├── wbtc.polygon-v2.spec.ts │ │ │ │ └── weth.polygon-v2.spec.ts │ │ │ └── swap.polygon-v2.spec.ts │ │ └── 3-avalanche-v2-market │ │ │ ├── 0-assets │ │ │ ├── avax.avalanche-v2.spec.ts │ │ │ ├── dai.avalanche-v2.spec.ts │ │ │ ├── usdc.avalanche-v2.spec.ts │ │ │ ├── usdt.avalanche-v2.spec.ts │ │ │ ├── wbtc.avalanche-v2.spec.ts │ │ │ └── weth.avalanche-v2.spec.ts │ │ │ ├── reward.avalanche-v2.spec.ts │ │ │ └── swap.avalanche-v3.spec.ts │ └── 1-v3-markets │ │ ├── 1-arbitrum-v3-market │ │ └── 0-assets │ │ │ ├── dai.arbitrum-v3.spec.ts │ │ │ ├── eth.arbitrum-v3.spec.ts │ │ │ ├── link.arbitrum-v3.spec.ts │ │ │ ├── usdc.arbitrum-v3.spec.ts │ │ │ ├── usdt.arbitrum-v3.spec.ts │ │ │ └── wbtc.arbitrum-v3.spec.ts │ │ ├── 2-avalanche-v3-market │ │ ├── 0-assets │ │ │ ├── avax.avalanche-v3.spec.ts │ │ │ ├── dai.avalanche-v3.spec.ts │ │ │ ├── link.avalanche-v3.spec.ts │ │ │ ├── usdc.avalanche-v3.spec.ts │ │ │ ├── usdt.avalacnhe-v3.spec.ts │ │ │ ├── wbtc.avalanche-v3.spec.ts │ │ │ └── weth.avalanche-v3.spec.ts │ │ └── swap.avalanche-v3.spec.ts │ │ ├── 3-polygon-v3-market │ │ ├── 0-assets │ │ │ ├── dai.polygon-v3.spec.ts │ │ │ ├── eurs.polygon-v3.spec.ts │ │ │ ├── link.polygon-v3.spec.ts │ │ │ ├── matic.polygon-v3.spec.ts │ │ │ ├── usdc.polygon-v3.spec.ts │ │ │ ├── usdt.polygon-v3.spec.ts │ │ │ ├── wbtc.polygon-v3.spec.ts │ │ │ └── weth.polygon-v3.spec.ts │ │ └── swap.polygon-v3.spec.ts │ │ ├── 4-optimism-v3-market │ │ ├── 0-assets-mainnet │ │ │ └── dai.optimism-v3.spec.ts │ │ └── 0-assets │ │ │ └── dai.optimism-v3.spec.ts │ │ └── 5-fantom-v3-market │ │ ├── 0-assets │ │ ├── dai.fantom-v3.spec.ts │ │ ├── ftm.fantom-v3.spec.ts │ │ ├── link.fantom-v3.spec.ts │ │ ├── usdc.fantom-v3.spec.ts │ │ ├── usdt.fantom-v3.spec.ts │ │ ├── wbtc.fantom-v3.spec.ts │ │ └── weth.fantom-v3.spec.ts │ │ └── swap.fantom-v3.spec.ts ├── plugins │ └── index.js └── support │ ├── commands.ts │ ├── cypress.d.ts │ ├── index.ts │ ├── steps │ ├── actions.steps.ts │ ├── common.ts │ ├── configuration.steps.ts │ ├── main.steps.ts │ └── verification.steps.ts │ └── tools │ ├── bridge.ts │ ├── math.util.ts │ └── tenderly.ts ├── index.d.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.page.tsx ├── _document.page.tsx ├── faucet.page.tsx ├── governance │ ├── index.governance.tsx │ └── proposal │ │ ├── [proposalId].governance.tsx │ │ └── index.governance.tsx ├── index.page.tsx ├── markets.page.tsx ├── reserve-overview.page.tsx └── staking.staking.tsx ├── public ├── aave.svg ├── aaveLogo.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 ├── icons │ ├── aave_classic.svg │ ├── bridge │ │ ├── arbitrum.svg │ │ ├── avalanche.svg │ │ ├── fantom.svg │ │ ├── harmony.svg │ │ ├── optimism.svg │ │ └── polygon.svg │ ├── discord.svg │ ├── flags │ │ ├── cn.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 │ │ ├── hfEmpty.svg │ │ ├── hfFull.svg │ │ ├── hfLow.svg │ │ └── hfMiddle.svg │ ├── markets │ │ ├── claim-gift-icon.svg │ │ ├── cube-icon.svg │ │ ├── dollar-icon.svg │ │ ├── empty-heart-icon.svg │ │ ├── net-apy-icon.svg │ │ ├── pie-icon.svg │ │ ├── total-borrow-indicator.svg │ │ ├── total-supply-indicator.svg │ │ ├── uptrend-icon.svg │ │ └── wallet-icon.svg │ ├── networks │ │ ├── arbitrum.svg │ │ ├── avalanche.svg │ │ ├── ethereum.svg │ │ ├── fantom.svg │ │ ├── harmony.svg │ │ ├── optimism.svg │ │ └── polygon.svg │ ├── staking │ │ ├── emission-staking-icon.svg │ │ └── trust-staking-icon.svg │ ├── tokens │ │ ├── aave.svg │ │ ├── ageur.svg │ │ ├── ampl.svg │ │ ├── avax.svg │ │ ├── bal.svg │ │ ├── bat.svg │ │ ├── bpt.svg │ │ ├── btc.svg │ │ ├── busd.svg │ │ ├── crv.svg │ │ ├── dai.svg │ │ ├── dpi.svg │ │ ├── enj.svg │ │ ├── ens.svg │ │ ├── eth.svg │ │ ├── eurs.svg │ │ ├── fei.svg │ │ ├── frax.svg │ │ ├── ftm.svg │ │ ├── ghst.svg │ │ ├── gusd.svg │ │ ├── jeur.svg │ │ ├── knc.svg │ │ ├── lend.svg │ │ ├── link.svg │ │ ├── mana.svg │ │ ├── matic.svg │ │ ├── mkr.svg │ │ ├── one.svg │ │ ├── pax.svg │ │ ├── pools │ │ │ ├── bpt.svg │ │ │ ├── guni.svg │ │ │ └── uni.svg │ │ ├── rai.svg │ │ ├── ren.svg │ │ ├── renfil.svg │ │ ├── rep.svg │ │ ├── seth.svg │ │ ├── snx.svg │ │ ├── steth.svg │ │ ├── stkaave.svg │ │ ├── stkbpt.svg │ │ ├── susd.svg │ │ ├── sushi.svg │ │ ├── tribe.svg │ │ ├── tusd.svg │ │ ├── uni.svg │ │ ├── usdc.svg │ │ ├── usdp.svg │ │ ├── usdt.svg │ │ ├── ust.svg │ │ ├── wavax.svg │ │ ├── wbtc.svg │ │ ├── weth.svg │ │ ├── wftm.svg │ │ ├── wmatic.svg │ │ ├── wone.svg │ │ ├── xsushi.svg │ │ ├── yfi.svg │ │ └── zrx.svg │ └── wallets │ │ ├── browserWallet.svg │ │ ├── coinbase.svg │ │ ├── frame.svg │ │ ├── torus.svg │ │ └── walletConnect.svg ├── lightningBoltGradient.svg ├── loveGhost.svg ├── manifest.json └── style.css ├── scripts ├── populate-cache.js └── update-cloudflare.js ├── src ├── components │ ├── BridgeButton.tsx │ ├── ConnectWalletPaper.tsx │ ├── ContentContainer.tsx │ ├── ContentWithTooltip.tsx │ ├── HALTooltip.tsx │ ├── HealthFactorNumber.tsx │ ├── MarketSwitcher.tsx │ ├── Meta.tsx │ ├── TextWithModal.tsx │ ├── TextWithTooltip.tsx │ ├── TopInfoPanel │ │ ├── PageTitle.tsx │ │ ├── TopInfoPanel.tsx │ │ └── TopInfoPanelItem.tsx │ ├── WalletConnection │ │ ├── ConnectWalletButton.tsx │ │ ├── WalletModal.tsx │ │ └── WalletSelector.tsx │ ├── Warnings │ │ └── CooldownWarning.tsx │ ├── caps │ │ ├── CapsHint.tsx │ │ ├── CapsTooltip.tsx │ │ └── helper.ts │ ├── incentives │ │ ├── IncentivesButton.tsx │ │ ├── IncentivesCard.tsx │ │ └── IncentivesTooltipContent.tsx │ ├── infoModalContents │ │ ├── ApprovalInfoContent.tsx │ │ ├── InfoContentWrapper.tsx │ │ └── RetryWithApprovalInfoContent.tsx │ ├── infoTooltips │ │ ├── AMPLWarning.tsx │ │ ├── APYTypeTooltip.tsx │ │ ├── AvailableTooltip.tsx │ │ ├── BorrowPowerTooltip.tsx │ │ ├── CollateralSwitchTooltip.tsx │ │ ├── CollateralTooltip.tsx │ │ ├── EModeTooltip.tsx │ │ ├── GasTooltip.tsx │ │ ├── NetAPYTooltip.tsx │ │ ├── StableAPYTooltip.tsx │ │ ├── TotalBorrowAPYTooltip.tsx │ │ ├── TotalSupplyAPYTooltip.tsx │ │ └── VariableAPYTooltip.tsx │ ├── isolationMode │ │ ├── IsolatedBadge.tsx │ │ └── IsolatedTooltip.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 │ │ ├── BorrowModal.tsx │ │ └── BorrowModalContent.tsx │ │ ├── ClaimRewards │ │ ├── ClaimRewardsActions.tsx │ │ ├── ClaimRewardsModal.tsx │ │ ├── ClaimRewardsModalContent.tsx │ │ └── RewardsSelect.tsx │ │ ├── CollateralChange │ │ ├── CollateralChangeActions.tsx │ │ ├── CollateralChangeModal.tsx │ │ └── CollateralChangeModalContent.tsx │ │ ├── Emode │ │ ├── EmodeActions.tsx │ │ ├── EmodeModal.tsx │ │ ├── EmodeModalContent.tsx │ │ ├── EmodeNaming.ts │ │ └── EmodeSelect.tsx │ │ ├── Faucet │ │ ├── FaucetActions.tsx │ │ ├── FaucetModal.tsx │ │ └── FaucetModalContent.tsx │ │ ├── FlowCommons │ │ ├── Error.tsx │ │ ├── GasEstimationError.tsx │ │ ├── LeftHelperText.tsx │ │ ├── ModalWrapper.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 │ │ ├── GovVote │ │ ├── GovVoteActions.tsx │ │ ├── GovVoteModal.tsx │ │ └── GovVoteModalContent.tsx │ │ ├── RateSwitch │ │ ├── RateSwitchActions.tsx │ │ ├── RateSwitchModal.tsx │ │ └── RateSwitchModalContent.tsx │ │ ├── Repay │ │ ├── CollateralRepayModalContent.tsx │ │ ├── RepayActions.tsx │ │ ├── RepayModal.tsx │ │ ├── RepayModalContent.tsx │ │ └── RepayTypeSelector.tsx │ │ ├── Stake │ │ ├── StakeActions.tsx │ │ ├── StakeModal.tsx │ │ └── StakeModalContent.tsx │ │ ├── StakeCooldown │ │ ├── StakeCooldownActions.tsx │ │ ├── StakeCooldownModal.tsx │ │ └── StakeCooldownModalContent.tsx │ │ ├── StakeRewardClaim │ │ ├── StakeRewardClaimActions.tsx │ │ ├── StakeRewardClaimModal.tsx │ │ └── StakeRewardClaimModalContent.tsx │ │ ├── Supply │ │ ├── SupplyActions.tsx │ │ ├── SupplyModal.tsx │ │ └── SupplyModalContent.tsx │ │ ├── Swap │ │ ├── SwapActions.tsx │ │ ├── SwapModal.tsx │ │ └── SwapModalContent.tsx │ │ ├── TxActionsWrapper.tsx │ │ ├── UnStake │ │ ├── UnStakeActions.tsx │ │ ├── UnStakeModal.tsx │ │ └── UnStakeModalContent.tsx │ │ ├── Warnings │ │ ├── AAVEWarning.tsx │ │ ├── AMPLWarning.tsx │ │ ├── ChangeNetworkWarning.tsx │ │ ├── IsolationModeWarning.tsx │ │ ├── SNXWarning.tsx │ │ └── SupplyCapWarning.tsx │ │ └── Withdraw │ │ ├── WithdrawActions.tsx │ │ ├── WithdrawModal.tsx │ │ └── WithdrawModalContent.tsx ├── createEmotionCache.ts ├── helpers │ ├── text-center-ellipsis.ts │ ├── timeHelper.tsx │ ├── toggle-local-storage-click.ts │ ├── types.ts │ └── useTransactionHandler.tsx ├── hooks │ ├── app-data-provider │ │ ├── BackgroundDataProvider.tsx │ │ ├── graphql │ │ │ ├── hooks.tsx │ │ │ ├── incentives-data.graphql │ │ │ ├── protocol-data.graphql │ │ │ ├── user-data.graphql │ │ │ └── user-incentives-data.graphql │ │ ├── useAppDataProvider.tsx │ │ ├── useIncentiveData.tsx │ │ ├── useIncentiveDataCached.tsx │ │ ├── useIncentiveDataRPC.tsx │ │ ├── usePoolData.tsx │ │ ├── usePoolDataCached.tsx │ │ ├── usePoolDataRPC.tsx │ │ └── useWalletBalances.tsx │ ├── governance-data-provider │ │ ├── AaveTokensDataProvider.tsx │ │ ├── GovernanceDataProvider.tsx │ │ ├── _useGovernanceDataRPC.tsx │ │ └── useVotingPower.tsx │ ├── stake-data-provider │ │ ├── StakeDataProvider.tsx │ │ ├── _useStakeDataCached.tsx │ │ ├── _useStakeDataRPC.tsx │ │ └── graphql │ │ │ ├── hooks.tsx │ │ │ ├── stake-general-ui-data.graphql │ │ │ └── stake-user-ui-data.graphql │ ├── useConnectionStatusContext.tsx │ ├── useCurrentTimestamp.tsx │ ├── useGasStation.tsx │ ├── useGetGasPrices.tsx │ ├── useModal.tsx │ ├── usePolling.tsx │ ├── useProtocolDataContext.tsx │ ├── useReservesHistory.tsx │ ├── useStakeTxBuilder.tsx │ ├── useStateLoading.tsx │ ├── useSwap.ts │ ├── useTxBuilder.tsx │ └── useWalletModal.tsx ├── layouts │ ├── AppGlobalStyles.tsx │ ├── AppHeader.tsx │ ├── MainLayout.tsx │ ├── MobileMenu.tsx │ ├── MoreMenu.tsx │ ├── SettingsMenu.tsx │ ├── WalletWidget.tsx │ └── components │ │ ├── DarkModeSwitcher.tsx │ │ ├── DrawerWrapper.tsx │ │ ├── LanguageSwitcher.tsx │ │ ├── MobileCloseButton.tsx │ │ ├── NavItems.tsx │ │ └── TestNetModeSwitcher.tsx ├── libs │ ├── LanguageProvider.tsx │ ├── hooks │ │ ├── use-get-ens.tsx │ │ └── useWeb3Context.tsx │ └── web3-data-provider │ │ ├── WalletOptions.ts │ │ └── Web3Provider.tsx ├── locales │ ├── de │ │ └── messages.po │ ├── en │ │ ├── messages.js │ │ └── messages.po │ ├── es │ │ ├── messages.js │ │ └── messages.po │ └── fr │ │ ├── messages.js │ │ └── messages.po ├── modules │ ├── 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 │ │ │ ├── BorrowedPositionsListMobileItem.tsx │ │ │ └── types.ts │ │ │ ├── ListAPRColumn.tsx │ │ │ ├── ListBottomText.tsx │ │ │ ├── ListButtonsColumn.tsx │ │ │ ├── ListHeader.tsx │ │ │ ├── ListItemAPYButton.tsx │ │ │ ├── ListItemCanBeCollateral.tsx │ │ │ ├── ListItemIsolationBadge.tsx │ │ │ ├── ListItemLoader.tsx │ │ │ ├── ListItemUsedAsCollateral.tsx │ │ │ ├── ListItemWrapper.tsx │ │ │ ├── ListLoader.tsx │ │ │ ├── ListMobileItemWrapper.tsx │ │ │ ├── ListTopInfoItem.tsx │ │ │ ├── ListValueColumn.tsx │ │ │ ├── ListValueRow.tsx │ │ │ ├── MobileListItemLoader.tsx │ │ │ ├── SuppliedPositionsList │ │ │ ├── SuppliedPositionsList.tsx │ │ │ ├── SuppliedPositionsListItem.tsx │ │ │ └── SuppliedPositionsListMobileItem.tsx │ │ │ └── SupplyAssetsList │ │ │ ├── SupplyAssetsList.tsx │ │ │ ├── SupplyAssetsListItem.tsx │ │ │ ├── SupplyAssetsListMobileItem.tsx │ │ │ └── types.ts │ ├── governance │ │ ├── FormattedProposalTime.tsx │ │ ├── GovernanceTopPanel.tsx │ │ ├── ProposalListItem.tsx │ │ ├── ProposalsList.tsx │ │ ├── StateBadge.tsx │ │ ├── VoteBar.tsx │ │ ├── VotingPowerInfoPanel.tsx │ │ ├── proposal │ │ │ ├── ProposalTopPanel.tsx │ │ │ └── VoteInfo.tsx │ │ └── utils │ │ │ ├── formatProposal.ts │ │ │ ├── getProposalMetadata.ts │ │ │ ├── getVotes.ts │ │ │ ├── governanceProvider.tsx │ │ │ └── immutableStates.ts │ ├── markets │ │ ├── AssetsList.tsx │ │ ├── AssetsListItem.tsx │ │ ├── AssetsListItemLoader.tsx │ │ ├── AssetsListMobileItem.tsx │ │ ├── AssetsListMobileItemLoader.tsx │ │ └── MarketsTopPanel.tsx │ ├── reserve-overview │ │ ├── ApyChart.tsx │ │ ├── ChartLegend.tsx │ │ ├── InterestRateModelChart.tsx │ │ ├── ReserveActions.tsx │ │ ├── ReserveConfiguration.tsx │ │ └── ReserveTopDetails.tsx │ └── staking │ │ ├── StakeActionBox.tsx │ │ ├── StakingHeader.tsx │ │ └── StakingPanel.tsx ├── providers │ ├── StakeTxBuilderProvider.tsx │ └── TxBuilderProvider.tsx ├── static-build │ ├── ipfs.ts │ ├── ipfsFiles.json │ ├── populateCache.ts │ ├── proposal.ts │ ├── proposals.json │ ├── vote.ts │ └── votes.json ├── ui-config │ ├── errorMapping.tsx │ ├── governanceConfig.ts │ ├── marketsConfig.ts │ ├── menu-items │ │ └── index.tsx │ ├── networksConfig.ts │ ├── permitConfig.ts │ ├── reservePatches.ts │ └── stakeConfig.ts ├── uiConfig.ts └── utils │ ├── apolloClient.ts │ ├── eMode.ts │ ├── getMaxAmountAvailableToBorrow.ts │ ├── getMaxAmountAvailableToSupply.ts │ ├── hfUtils.ts │ ├── marketsAndNetworksConfig.ts │ ├── theme.tsx │ └── utils.ts ├── svgo.config.js ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/.babelrc -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | scripts/ -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | yarn i18n -------------------------------------------------------------------------------- /.linguirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/.linguirc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/README.md -------------------------------------------------------------------------------- /codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/codegen.yml -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/crowdin.yml -------------------------------------------------------------------------------- /custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/custom.d.ts -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/README.md -------------------------------------------------------------------------------- /cypress/configs/base.cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/base.cypress.json -------------------------------------------------------------------------------- /cypress/configs/v2-markets/amm-v2-full.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v2-markets/amm-v2-full.config.json -------------------------------------------------------------------------------- /cypress/configs/v2-markets/amm-v2-smoke.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v2-markets/amm-v2-smoke.config.json -------------------------------------------------------------------------------- /cypress/configs/v2-markets/avalanche-v2-full.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v2-markets/avalanche-v2-full.config.json -------------------------------------------------------------------------------- /cypress/configs/v2-markets/avalanche-v2-smoke.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v2-markets/avalanche-v2-smoke.config.json -------------------------------------------------------------------------------- /cypress/configs/v2-markets/ethereum-v2-full.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v2-markets/ethereum-v2-full.config.json -------------------------------------------------------------------------------- /cypress/configs/v2-markets/ethereum-v2-smoke.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v2-markets/ethereum-v2-smoke.config.json -------------------------------------------------------------------------------- /cypress/configs/v2-markets/polygon-v2-full.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v2-markets/polygon-v2-full.config.json -------------------------------------------------------------------------------- /cypress/configs/v2-markets/polygon-v2-smoke.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v2-markets/polygon-v2-smoke.config.json -------------------------------------------------------------------------------- /cypress/configs/v3-markets/arbitrum-v3-full.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v3-markets/arbitrum-v3-full.config.json -------------------------------------------------------------------------------- /cypress/configs/v3-markets/arbitrum-v3-smoke.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v3-markets/arbitrum-v3-smoke.config.json -------------------------------------------------------------------------------- /cypress/configs/v3-markets/avalanche-v3-full.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v3-markets/avalanche-v3-full.config.json -------------------------------------------------------------------------------- /cypress/configs/v3-markets/avalanche-v3-smoke.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v3-markets/avalanche-v3-smoke.config.json -------------------------------------------------------------------------------- /cypress/configs/v3-markets/fantom-v3-full.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v3-markets/fantom-v3-full.config.json -------------------------------------------------------------------------------- /cypress/configs/v3-markets/fantom-v3-smoke.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v3-markets/fantom-v3-smoke.config.json -------------------------------------------------------------------------------- /cypress/configs/v3-markets/polygon-v3-full.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v3-markets/polygon-v3-full.config.json -------------------------------------------------------------------------------- /cypress/configs/v3-markets/polygon-v3-smoke.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/configs/v3-markets/polygon-v3-smoke.config.json -------------------------------------------------------------------------------- /cypress/fixtures/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/fixtures/assets.json -------------------------------------------------------------------------------- /cypress/fixtures/constans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/fixtures/constans.json -------------------------------------------------------------------------------- /cypress/fixtures/erc20_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/fixtures/erc20_abi.json -------------------------------------------------------------------------------- /cypress/fixtures/poolConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/fixtures/poolConfig.json -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/0-main-v2-market/0-assets/bat.aave-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/0-main-v2-market/0-assets/bat.aave-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/0-main-v2-market/0-assets/dai.aave-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/0-main-v2-market/0-assets/dai.aave-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/0-main-v2-market/0-assets/eth.aave-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/0-main-v2-market/0-assets/eth.aave-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/0-main-v2-market/0-assets/mana.aave-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/0-main-v2-market/0-assets/mana.aave-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/0-main-v2-market/0-assets/mkr.aave-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/0-main-v2-market/0-assets/mkr.aave-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/0-main-v2-market/0-assets/ren.aave-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/0-main-v2-market/0-assets/ren.aave-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/0-main-v2-market/0-assets/tusd.aave-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/0-main-v2-market/0-assets/tusd.aave-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/0-main-v2-market/0-assets/usdc.aave-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/0-main-v2-market/0-assets/usdc.aave-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/0-main-v2-market/0-assets/usdt.aave-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/0-main-v2-market/0-assets/usdt.aave-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/0-main-v2-market/reward.aave-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/0-main-v2-market/reward.aave-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/0-main-v2-market/swap.aave-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/0-main-v2-market/swap.aave-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/1-amm-v2-market/0-assets/dai.amm-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/1-amm-v2-market/0-assets/dai.amm-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/1-amm-v2-market/0-assets/eth.amm-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/1-amm-v2-market/0-assets/eth.amm-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/1-amm-v2-market/0-assets/usdc.amm-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/1-amm-v2-market/0-assets/usdc.amm-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/1-amm-v2-market/0-assets/usdt.amm-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/1-amm-v2-market/0-assets/usdt.amm-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/1-amm-v2-market/0-assets/wbtc.amm-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/1-amm-v2-market/0-assets/wbtc.amm-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/bal.polygon-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/bal.polygon-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/crv.polygon-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/crv.polygon-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/dai.polygon-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/dai.polygon-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/dpi.polygon-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/dpi.polygon-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/ghst.polygon-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/ghst.polygon-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/link.polygon-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/link.polygon-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/matic.polygon-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/matic.polygon-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/sushi.polygon-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/sushi.polygon-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/usdc.polygon-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/usdc.polygon-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/usdt.polygon-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/usdt.polygon-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/wbtc.polygon-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/wbtc.polygon-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/weth.polygon-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/2-polygon-v2-market/0-assets/weth.polygon-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/2-polygon-v2-market/swap.polygon-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/2-polygon-v2-market/swap.polygon-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/3-avalanche-v2-market/0-assets/avax.avalanche-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/3-avalanche-v2-market/0-assets/avax.avalanche-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/3-avalanche-v2-market/0-assets/dai.avalanche-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/3-avalanche-v2-market/0-assets/dai.avalanche-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/3-avalanche-v2-market/0-assets/usdc.avalanche-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/3-avalanche-v2-market/0-assets/usdc.avalanche-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/3-avalanche-v2-market/0-assets/usdt.avalanche-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/3-avalanche-v2-market/0-assets/usdt.avalanche-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/3-avalanche-v2-market/0-assets/wbtc.avalanche-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/3-avalanche-v2-market/0-assets/wbtc.avalanche-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/3-avalanche-v2-market/0-assets/weth.avalanche-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/3-avalanche-v2-market/0-assets/weth.avalanche-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/3-avalanche-v2-market/reward.avalanche-v2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/3-avalanche-v2-market/reward.avalanche-v2.spec.ts -------------------------------------------------------------------------------- /cypress/integration/0-v2-markets/3-avalanche-v2-market/swap.avalanche-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/0-v2-markets/3-avalanche-v2-market/swap.avalanche-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/1-arbitrum-v3-market/0-assets/dai.arbitrum-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/1-arbitrum-v3-market/0-assets/dai.arbitrum-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/1-arbitrum-v3-market/0-assets/eth.arbitrum-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/1-arbitrum-v3-market/0-assets/eth.arbitrum-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/1-arbitrum-v3-market/0-assets/link.arbitrum-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/1-arbitrum-v3-market/0-assets/link.arbitrum-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/1-arbitrum-v3-market/0-assets/usdc.arbitrum-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/1-arbitrum-v3-market/0-assets/usdc.arbitrum-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/1-arbitrum-v3-market/0-assets/usdt.arbitrum-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/1-arbitrum-v3-market/0-assets/usdt.arbitrum-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/1-arbitrum-v3-market/0-assets/wbtc.arbitrum-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/1-arbitrum-v3-market/0-assets/wbtc.arbitrum-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/2-avalanche-v3-market/0-assets/avax.avalanche-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/2-avalanche-v3-market/0-assets/avax.avalanche-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/2-avalanche-v3-market/0-assets/dai.avalanche-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/2-avalanche-v3-market/0-assets/dai.avalanche-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/2-avalanche-v3-market/0-assets/link.avalanche-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/2-avalanche-v3-market/0-assets/link.avalanche-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/2-avalanche-v3-market/0-assets/usdc.avalanche-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/2-avalanche-v3-market/0-assets/usdc.avalanche-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/2-avalanche-v3-market/0-assets/usdt.avalacnhe-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/2-avalanche-v3-market/0-assets/usdt.avalacnhe-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/2-avalanche-v3-market/0-assets/wbtc.avalanche-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/2-avalanche-v3-market/0-assets/wbtc.avalanche-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/2-avalanche-v3-market/0-assets/weth.avalanche-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/2-avalanche-v3-market/0-assets/weth.avalanche-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/2-avalanche-v3-market/swap.avalanche-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/2-avalanche-v3-market/swap.avalanche-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/dai.polygon-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/dai.polygon-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/eurs.polygon-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/eurs.polygon-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/link.polygon-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/link.polygon-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/matic.polygon-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/matic.polygon-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/usdc.polygon-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/usdc.polygon-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/usdt.polygon-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/usdt.polygon-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/wbtc.polygon-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/wbtc.polygon-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/weth.polygon-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/3-polygon-v3-market/0-assets/weth.polygon-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/3-polygon-v3-market/swap.polygon-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/3-polygon-v3-market/swap.polygon-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/4-optimism-v3-market/0-assets-mainnet/dai.optimism-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/4-optimism-v3-market/0-assets-mainnet/dai.optimism-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/4-optimism-v3-market/0-assets/dai.optimism-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/4-optimism-v3-market/0-assets/dai.optimism-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/5-fantom-v3-market/0-assets/dai.fantom-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/5-fantom-v3-market/0-assets/dai.fantom-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/5-fantom-v3-market/0-assets/ftm.fantom-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/5-fantom-v3-market/0-assets/ftm.fantom-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/5-fantom-v3-market/0-assets/link.fantom-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/5-fantom-v3-market/0-assets/link.fantom-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/5-fantom-v3-market/0-assets/usdc.fantom-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/5-fantom-v3-market/0-assets/usdc.fantom-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/5-fantom-v3-market/0-assets/usdt.fantom-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/5-fantom-v3-market/0-assets/usdt.fantom-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/5-fantom-v3-market/0-assets/wbtc.fantom-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/5-fantom-v3-market/0-assets/wbtc.fantom-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/5-fantom-v3-market/0-assets/weth.fantom-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/5-fantom-v3-market/0-assets/weth.fantom-v3.spec.ts -------------------------------------------------------------------------------- /cypress/integration/1-v3-markets/5-fantom-v3-market/swap.fantom-v3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/integration/1-v3-markets/5-fantom-v3-market/swap.fantom-v3.spec.ts -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/cypress.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/support/cypress.d.ts -------------------------------------------------------------------------------- /cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/support/index.ts -------------------------------------------------------------------------------- /cypress/support/steps/actions.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/support/steps/actions.steps.ts -------------------------------------------------------------------------------- /cypress/support/steps/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/support/steps/common.ts -------------------------------------------------------------------------------- /cypress/support/steps/configuration.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/support/steps/configuration.steps.ts -------------------------------------------------------------------------------- /cypress/support/steps/main.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/support/steps/main.steps.ts -------------------------------------------------------------------------------- /cypress/support/steps/verification.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/support/steps/verification.steps.ts -------------------------------------------------------------------------------- /cypress/support/tools/bridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/support/tools/bridge.ts -------------------------------------------------------------------------------- /cypress/support/tools/math.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/support/tools/math.util.ts -------------------------------------------------------------------------------- /cypress/support/tools/tenderly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/cypress/support/tools/tenderly.ts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'eth-provider'; 2 | -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/pages/_app.page.tsx -------------------------------------------------------------------------------- /pages/_document.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/pages/_document.page.tsx -------------------------------------------------------------------------------- /pages/faucet.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/pages/faucet.page.tsx -------------------------------------------------------------------------------- /pages/governance/index.governance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/pages/governance/index.governance.tsx -------------------------------------------------------------------------------- /pages/governance/proposal/[proposalId].governance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/pages/governance/proposal/[proposalId].governance.tsx -------------------------------------------------------------------------------- /pages/governance/proposal/index.governance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/pages/governance/proposal/index.governance.tsx -------------------------------------------------------------------------------- /pages/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/pages/index.page.tsx -------------------------------------------------------------------------------- /pages/markets.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/pages/markets.page.tsx -------------------------------------------------------------------------------- /pages/reserve-overview.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/pages/reserve-overview.page.tsx -------------------------------------------------------------------------------- /pages/staking.staking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/pages/staking.staking.tsx -------------------------------------------------------------------------------- /public/aave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/aave.svg -------------------------------------------------------------------------------- /public/aaveLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/aaveLogo.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-Black.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-Bold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-Italic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-Italic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-Light.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-Light.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-LightItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-Medium.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-Regular.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-SemiBold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-Thin.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-Thin.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/Inter.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/inter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/fonts/inter/inter.css -------------------------------------------------------------------------------- /public/icons/aave_classic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/aave_classic.svg -------------------------------------------------------------------------------- /public/icons/bridge/arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/bridge/arbitrum.svg -------------------------------------------------------------------------------- /public/icons/bridge/avalanche.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/bridge/avalanche.svg -------------------------------------------------------------------------------- /public/icons/bridge/fantom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/bridge/fantom.svg -------------------------------------------------------------------------------- /public/icons/bridge/harmony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/bridge/harmony.svg -------------------------------------------------------------------------------- /public/icons/bridge/optimism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/bridge/optimism.svg -------------------------------------------------------------------------------- /public/icons/bridge/polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/bridge/polygon.svg -------------------------------------------------------------------------------- /public/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/discord.svg -------------------------------------------------------------------------------- /public/icons/flags/cn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/flags/cn.svg -------------------------------------------------------------------------------- /public/icons/flags/en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/flags/en.svg -------------------------------------------------------------------------------- /public/icons/flags/es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/flags/es.svg -------------------------------------------------------------------------------- /public/icons/flags/fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/flags/fr.svg -------------------------------------------------------------------------------- /public/icons/flags/it.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/flags/it.svg -------------------------------------------------------------------------------- /public/icons/flags/jp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/flags/jp.svg -------------------------------------------------------------------------------- /public/icons/flags/kr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/flags/kr.svg -------------------------------------------------------------------------------- /public/icons/flags/pr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/flags/pr.svg -------------------------------------------------------------------------------- /public/icons/flags/tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/flags/tr.svg -------------------------------------------------------------------------------- /public/icons/flags/vt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/flags/vt.svg -------------------------------------------------------------------------------- /public/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/github.svg -------------------------------------------------------------------------------- /public/icons/healthFactor/HAL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/healthFactor/HAL.svg -------------------------------------------------------------------------------- /public/icons/healthFactor/HALHover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/healthFactor/HALHover.svg -------------------------------------------------------------------------------- /public/icons/healthFactor/hfEmpty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/healthFactor/hfEmpty.svg -------------------------------------------------------------------------------- /public/icons/healthFactor/hfFull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/healthFactor/hfFull.svg -------------------------------------------------------------------------------- /public/icons/healthFactor/hfLow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/healthFactor/hfLow.svg -------------------------------------------------------------------------------- /public/icons/healthFactor/hfMiddle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/healthFactor/hfMiddle.svg -------------------------------------------------------------------------------- /public/icons/markets/claim-gift-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/markets/claim-gift-icon.svg -------------------------------------------------------------------------------- /public/icons/markets/cube-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/markets/cube-icon.svg -------------------------------------------------------------------------------- /public/icons/markets/dollar-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/markets/dollar-icon.svg -------------------------------------------------------------------------------- /public/icons/markets/empty-heart-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/markets/empty-heart-icon.svg -------------------------------------------------------------------------------- /public/icons/markets/net-apy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/markets/net-apy-icon.svg -------------------------------------------------------------------------------- /public/icons/markets/pie-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/markets/pie-icon.svg -------------------------------------------------------------------------------- /public/icons/markets/total-borrow-indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/markets/total-borrow-indicator.svg -------------------------------------------------------------------------------- /public/icons/markets/total-supply-indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/markets/total-supply-indicator.svg -------------------------------------------------------------------------------- /public/icons/markets/uptrend-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/markets/uptrend-icon.svg -------------------------------------------------------------------------------- /public/icons/markets/wallet-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/markets/wallet-icon.svg -------------------------------------------------------------------------------- /public/icons/networks/arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/networks/arbitrum.svg -------------------------------------------------------------------------------- /public/icons/networks/avalanche.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/networks/avalanche.svg -------------------------------------------------------------------------------- /public/icons/networks/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/networks/ethereum.svg -------------------------------------------------------------------------------- /public/icons/networks/fantom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/networks/fantom.svg -------------------------------------------------------------------------------- /public/icons/networks/harmony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/networks/harmony.svg -------------------------------------------------------------------------------- /public/icons/networks/optimism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/networks/optimism.svg -------------------------------------------------------------------------------- /public/icons/networks/polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/networks/polygon.svg -------------------------------------------------------------------------------- /public/icons/staking/emission-staking-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/staking/emission-staking-icon.svg -------------------------------------------------------------------------------- /public/icons/staking/trust-staking-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/staking/trust-staking-icon.svg -------------------------------------------------------------------------------- /public/icons/tokens/aave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/aave.svg -------------------------------------------------------------------------------- /public/icons/tokens/ageur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/ageur.svg -------------------------------------------------------------------------------- /public/icons/tokens/ampl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/ampl.svg -------------------------------------------------------------------------------- /public/icons/tokens/avax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/avax.svg -------------------------------------------------------------------------------- /public/icons/tokens/bal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/bal.svg -------------------------------------------------------------------------------- /public/icons/tokens/bat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/bat.svg -------------------------------------------------------------------------------- /public/icons/tokens/bpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/bpt.svg -------------------------------------------------------------------------------- /public/icons/tokens/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/btc.svg -------------------------------------------------------------------------------- /public/icons/tokens/busd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/busd.svg -------------------------------------------------------------------------------- /public/icons/tokens/crv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/crv.svg -------------------------------------------------------------------------------- /public/icons/tokens/dai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/dai.svg -------------------------------------------------------------------------------- /public/icons/tokens/dpi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/dpi.svg -------------------------------------------------------------------------------- /public/icons/tokens/enj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/enj.svg -------------------------------------------------------------------------------- /public/icons/tokens/ens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/ens.svg -------------------------------------------------------------------------------- /public/icons/tokens/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/eth.svg -------------------------------------------------------------------------------- /public/icons/tokens/eurs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/eurs.svg -------------------------------------------------------------------------------- /public/icons/tokens/fei.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/fei.svg -------------------------------------------------------------------------------- /public/icons/tokens/frax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/frax.svg -------------------------------------------------------------------------------- /public/icons/tokens/ftm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/ftm.svg -------------------------------------------------------------------------------- /public/icons/tokens/ghst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/ghst.svg -------------------------------------------------------------------------------- /public/icons/tokens/gusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/gusd.svg -------------------------------------------------------------------------------- /public/icons/tokens/jeur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/jeur.svg -------------------------------------------------------------------------------- /public/icons/tokens/knc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/knc.svg -------------------------------------------------------------------------------- /public/icons/tokens/lend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/lend.svg -------------------------------------------------------------------------------- /public/icons/tokens/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/link.svg -------------------------------------------------------------------------------- /public/icons/tokens/mana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/mana.svg -------------------------------------------------------------------------------- /public/icons/tokens/matic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/matic.svg -------------------------------------------------------------------------------- /public/icons/tokens/mkr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/mkr.svg -------------------------------------------------------------------------------- /public/icons/tokens/one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/one.svg -------------------------------------------------------------------------------- /public/icons/tokens/pax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/pax.svg -------------------------------------------------------------------------------- /public/icons/tokens/pools/bpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/pools/bpt.svg -------------------------------------------------------------------------------- /public/icons/tokens/pools/guni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/pools/guni.svg -------------------------------------------------------------------------------- /public/icons/tokens/pools/uni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/pools/uni.svg -------------------------------------------------------------------------------- /public/icons/tokens/rai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/rai.svg -------------------------------------------------------------------------------- /public/icons/tokens/ren.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/ren.svg -------------------------------------------------------------------------------- /public/icons/tokens/renfil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/renfil.svg -------------------------------------------------------------------------------- /public/icons/tokens/rep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/rep.svg -------------------------------------------------------------------------------- /public/icons/tokens/seth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/seth.svg -------------------------------------------------------------------------------- /public/icons/tokens/snx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/snx.svg -------------------------------------------------------------------------------- /public/icons/tokens/steth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/steth.svg -------------------------------------------------------------------------------- /public/icons/tokens/stkaave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/stkaave.svg -------------------------------------------------------------------------------- /public/icons/tokens/stkbpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/stkbpt.svg -------------------------------------------------------------------------------- /public/icons/tokens/susd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/susd.svg -------------------------------------------------------------------------------- /public/icons/tokens/sushi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/sushi.svg -------------------------------------------------------------------------------- /public/icons/tokens/tribe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/tribe.svg -------------------------------------------------------------------------------- /public/icons/tokens/tusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/tusd.svg -------------------------------------------------------------------------------- /public/icons/tokens/uni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/uni.svg -------------------------------------------------------------------------------- /public/icons/tokens/usdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/usdc.svg -------------------------------------------------------------------------------- /public/icons/tokens/usdp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/usdp.svg -------------------------------------------------------------------------------- /public/icons/tokens/usdt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/usdt.svg -------------------------------------------------------------------------------- /public/icons/tokens/ust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/ust.svg -------------------------------------------------------------------------------- /public/icons/tokens/wavax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/wavax.svg -------------------------------------------------------------------------------- /public/icons/tokens/wbtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/wbtc.svg -------------------------------------------------------------------------------- /public/icons/tokens/weth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/weth.svg -------------------------------------------------------------------------------- /public/icons/tokens/wftm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/wftm.svg -------------------------------------------------------------------------------- /public/icons/tokens/wmatic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/wmatic.svg -------------------------------------------------------------------------------- /public/icons/tokens/wone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/wone.svg -------------------------------------------------------------------------------- /public/icons/tokens/xsushi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/xsushi.svg -------------------------------------------------------------------------------- /public/icons/tokens/yfi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/yfi.svg -------------------------------------------------------------------------------- /public/icons/tokens/zrx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/tokens/zrx.svg -------------------------------------------------------------------------------- /public/icons/wallets/browserWallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/wallets/browserWallet.svg -------------------------------------------------------------------------------- /public/icons/wallets/coinbase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/wallets/coinbase.svg -------------------------------------------------------------------------------- /public/icons/wallets/frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/wallets/frame.svg -------------------------------------------------------------------------------- /public/icons/wallets/torus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/wallets/torus.svg -------------------------------------------------------------------------------- /public/icons/wallets/walletConnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/icons/wallets/walletConnect.svg -------------------------------------------------------------------------------- /public/lightningBoltGradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/lightningBoltGradient.svg -------------------------------------------------------------------------------- /public/loveGhost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/loveGhost.svg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/public/style.css -------------------------------------------------------------------------------- /scripts/populate-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/scripts/populate-cache.js -------------------------------------------------------------------------------- /scripts/update-cloudflare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/scripts/update-cloudflare.js -------------------------------------------------------------------------------- /src/components/BridgeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/BridgeButton.tsx -------------------------------------------------------------------------------- /src/components/ConnectWalletPaper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/ConnectWalletPaper.tsx -------------------------------------------------------------------------------- /src/components/ContentContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/ContentContainer.tsx -------------------------------------------------------------------------------- /src/components/ContentWithTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/ContentWithTooltip.tsx -------------------------------------------------------------------------------- /src/components/HALTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/HALTooltip.tsx -------------------------------------------------------------------------------- /src/components/HealthFactorNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/HealthFactorNumber.tsx -------------------------------------------------------------------------------- /src/components/MarketSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/MarketSwitcher.tsx -------------------------------------------------------------------------------- /src/components/Meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/Meta.tsx -------------------------------------------------------------------------------- /src/components/TextWithModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/TextWithModal.tsx -------------------------------------------------------------------------------- /src/components/TextWithTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/TextWithTooltip.tsx -------------------------------------------------------------------------------- /src/components/TopInfoPanel/PageTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/TopInfoPanel/PageTitle.tsx -------------------------------------------------------------------------------- /src/components/TopInfoPanel/TopInfoPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/TopInfoPanel/TopInfoPanel.tsx -------------------------------------------------------------------------------- /src/components/TopInfoPanel/TopInfoPanelItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/TopInfoPanel/TopInfoPanelItem.tsx -------------------------------------------------------------------------------- /src/components/WalletConnection/ConnectWalletButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/WalletConnection/ConnectWalletButton.tsx -------------------------------------------------------------------------------- /src/components/WalletConnection/WalletModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/WalletConnection/WalletModal.tsx -------------------------------------------------------------------------------- /src/components/WalletConnection/WalletSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/WalletConnection/WalletSelector.tsx -------------------------------------------------------------------------------- /src/components/Warnings/CooldownWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/Warnings/CooldownWarning.tsx -------------------------------------------------------------------------------- /src/components/caps/CapsHint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/caps/CapsHint.tsx -------------------------------------------------------------------------------- /src/components/caps/CapsTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/caps/CapsTooltip.tsx -------------------------------------------------------------------------------- /src/components/caps/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/caps/helper.ts -------------------------------------------------------------------------------- /src/components/incentives/IncentivesButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/incentives/IncentivesButton.tsx -------------------------------------------------------------------------------- /src/components/incentives/IncentivesCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/incentives/IncentivesCard.tsx -------------------------------------------------------------------------------- /src/components/incentives/IncentivesTooltipContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/incentives/IncentivesTooltipContent.tsx -------------------------------------------------------------------------------- /src/components/infoModalContents/ApprovalInfoContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoModalContents/ApprovalInfoContent.tsx -------------------------------------------------------------------------------- /src/components/infoModalContents/InfoContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoModalContents/InfoContentWrapper.tsx -------------------------------------------------------------------------------- /src/components/infoModalContents/RetryWithApprovalInfoContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoModalContents/RetryWithApprovalInfoContent.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/AMPLWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoTooltips/AMPLWarning.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/APYTypeTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoTooltips/APYTypeTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/AvailableTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoTooltips/AvailableTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/BorrowPowerTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoTooltips/BorrowPowerTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/CollateralSwitchTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoTooltips/CollateralSwitchTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/CollateralTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoTooltips/CollateralTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/EModeTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoTooltips/EModeTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/GasTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoTooltips/GasTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/NetAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoTooltips/NetAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/StableAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoTooltips/StableAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/TotalBorrowAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoTooltips/TotalBorrowAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/TotalSupplyAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoTooltips/TotalSupplyAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/VariableAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/infoTooltips/VariableAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/isolationMode/IsolatedBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/isolationMode/IsolatedBadge.tsx -------------------------------------------------------------------------------- /src/components/isolationMode/IsolatedTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/isolationMode/IsolatedTooltip.tsx -------------------------------------------------------------------------------- /src/components/lists/ListColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/lists/ListColumn.tsx -------------------------------------------------------------------------------- /src/components/lists/ListHeaderTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/lists/ListHeaderTitle.tsx -------------------------------------------------------------------------------- /src/components/lists/ListHeaderWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/lists/ListHeaderWrapper.tsx -------------------------------------------------------------------------------- /src/components/lists/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/lists/ListItem.tsx -------------------------------------------------------------------------------- /src/components/lists/ListMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/lists/ListMobileItem.tsx -------------------------------------------------------------------------------- /src/components/lists/ListWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/lists/ListWrapper.tsx -------------------------------------------------------------------------------- /src/components/primitives/BasicModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/primitives/BasicModal.tsx -------------------------------------------------------------------------------- /src/components/primitives/CheckBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/primitives/CheckBadge.tsx -------------------------------------------------------------------------------- /src/components/primitives/FormattedNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/primitives/FormattedNumber.tsx -------------------------------------------------------------------------------- /src/components/primitives/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/primitives/Link.tsx -------------------------------------------------------------------------------- /src/components/primitives/NoData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/primitives/NoData.tsx -------------------------------------------------------------------------------- /src/components/primitives/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/primitives/Row.tsx -------------------------------------------------------------------------------- /src/components/primitives/TokenIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/primitives/TokenIcon.tsx -------------------------------------------------------------------------------- /src/components/primitives/TypographyGradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/primitives/TypographyGradient.tsx -------------------------------------------------------------------------------- /src/components/primitives/Warning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/primitives/Warning.tsx -------------------------------------------------------------------------------- /src/components/transactions/AssetInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/AssetInput.tsx -------------------------------------------------------------------------------- /src/components/transactions/Borrow/BorrowActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Borrow/BorrowActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Borrow/BorrowModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Borrow/BorrowModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Borrow/BorrowModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Borrow/BorrowModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/ClaimRewards/ClaimRewardsActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/ClaimRewards/ClaimRewardsActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/ClaimRewards/ClaimRewardsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/ClaimRewards/ClaimRewardsModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/ClaimRewards/ClaimRewardsModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/ClaimRewards/ClaimRewardsModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/ClaimRewards/RewardsSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/ClaimRewards/RewardsSelect.tsx -------------------------------------------------------------------------------- /src/components/transactions/CollateralChange/CollateralChangeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/CollateralChange/CollateralChangeActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/CollateralChange/CollateralChangeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/CollateralChange/CollateralChangeModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/CollateralChange/CollateralChangeModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/CollateralChange/CollateralChangeModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Emode/EmodeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Emode/EmodeActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Emode/EmodeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Emode/EmodeModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Emode/EmodeModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Emode/EmodeModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Emode/EmodeNaming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Emode/EmodeNaming.ts -------------------------------------------------------------------------------- /src/components/transactions/Emode/EmodeSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Emode/EmodeSelect.tsx -------------------------------------------------------------------------------- /src/components/transactions/Faucet/FaucetActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Faucet/FaucetActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Faucet/FaucetModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Faucet/FaucetModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Faucet/FaucetModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Faucet/FaucetModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/FlowCommons/Error.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/GasEstimationError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/FlowCommons/GasEstimationError.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/LeftHelperText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/FlowCommons/LeftHelperText.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/ModalWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/FlowCommons/ModalWrapper.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/RightHelperText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/FlowCommons/RightHelperText.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/Success.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/FlowCommons/Success.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/TxModalDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/FlowCommons/TxModalDetails.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/TxModalTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/FlowCommons/TxModalTitle.tsx -------------------------------------------------------------------------------- /src/components/transactions/GasStation/GasButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/GasStation/GasButton.tsx -------------------------------------------------------------------------------- /src/components/transactions/GasStation/GasStation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/GasStation/GasStation.tsx -------------------------------------------------------------------------------- /src/components/transactions/GasStation/GasStationProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/GasStation/GasStationProvider.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovDelegation/DelegationTokenSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/GovDelegation/DelegationTokenSelector.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovDelegation/DelegationTypeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/GovDelegation/DelegationTypeSelector.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovDelegation/GovDelegationActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/GovDelegation/GovDelegationActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovDelegation/GovDelegationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/GovDelegation/GovDelegationModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovDelegation/GovDelegationModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/GovDelegation/GovDelegationModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovVote/GovVoteActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/GovVote/GovVoteActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovVote/GovVoteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/GovVote/GovVoteModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovVote/GovVoteModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/GovVote/GovVoteModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/RateSwitch/RateSwitchActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/RateSwitch/RateSwitchActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/RateSwitch/RateSwitchModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/RateSwitch/RateSwitchModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/RateSwitch/RateSwitchModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/RateSwitch/RateSwitchModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Repay/CollateralRepayModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Repay/CollateralRepayModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Repay/RepayActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Repay/RepayActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Repay/RepayModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Repay/RepayModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Repay/RepayModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Repay/RepayModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Repay/RepayTypeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Repay/RepayTypeSelector.tsx -------------------------------------------------------------------------------- /src/components/transactions/Stake/StakeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Stake/StakeActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Stake/StakeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Stake/StakeModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Stake/StakeModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Stake/StakeModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/StakeCooldown/StakeCooldownActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/StakeCooldown/StakeCooldownActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/StakeCooldown/StakeCooldownModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/StakeCooldown/StakeCooldownModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/StakeCooldown/StakeCooldownModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/StakeCooldown/StakeCooldownModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/StakeRewardClaim/StakeRewardClaimActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/StakeRewardClaim/StakeRewardClaimActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/StakeRewardClaim/StakeRewardClaimModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/StakeRewardClaim/StakeRewardClaimModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/StakeRewardClaim/StakeRewardClaimModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/StakeRewardClaim/StakeRewardClaimModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Supply/SupplyActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Supply/SupplyActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Supply/SupplyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Supply/SupplyModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Supply/SupplyModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Supply/SupplyModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Swap/SwapActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Swap/SwapActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Swap/SwapModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Swap/SwapModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Swap/SwapModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Swap/SwapModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/TxActionsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/TxActionsWrapper.tsx -------------------------------------------------------------------------------- /src/components/transactions/UnStake/UnStakeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/UnStake/UnStakeActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/UnStake/UnStakeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/UnStake/UnStakeModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/UnStake/UnStakeModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/UnStake/UnStakeModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/AAVEWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Warnings/AAVEWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/AMPLWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Warnings/AMPLWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/ChangeNetworkWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Warnings/ChangeNetworkWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/IsolationModeWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Warnings/IsolationModeWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/SNXWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Warnings/SNXWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/SupplyCapWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Warnings/SupplyCapWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Withdraw/WithdrawActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Withdraw/WithdrawActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Withdraw/WithdrawModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Withdraw/WithdrawModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Withdraw/WithdrawModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/components/transactions/Withdraw/WithdrawModalContent.tsx -------------------------------------------------------------------------------- /src/createEmotionCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/createEmotionCache.ts -------------------------------------------------------------------------------- /src/helpers/text-center-ellipsis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/helpers/text-center-ellipsis.ts -------------------------------------------------------------------------------- /src/helpers/timeHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/helpers/timeHelper.tsx -------------------------------------------------------------------------------- /src/helpers/toggle-local-storage-click.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/helpers/toggle-local-storage-click.ts -------------------------------------------------------------------------------- /src/helpers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/helpers/types.ts -------------------------------------------------------------------------------- /src/helpers/useTransactionHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/helpers/useTransactionHandler.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/BackgroundDataProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/app-data-provider/BackgroundDataProvider.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/graphql/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/app-data-provider/graphql/hooks.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/graphql/incentives-data.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/app-data-provider/graphql/incentives-data.graphql -------------------------------------------------------------------------------- /src/hooks/app-data-provider/graphql/protocol-data.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/app-data-provider/graphql/protocol-data.graphql -------------------------------------------------------------------------------- /src/hooks/app-data-provider/graphql/user-data.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/app-data-provider/graphql/user-data.graphql -------------------------------------------------------------------------------- /src/hooks/app-data-provider/graphql/user-incentives-data.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/app-data-provider/graphql/user-incentives-data.graphql -------------------------------------------------------------------------------- /src/hooks/app-data-provider/useAppDataProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/app-data-provider/useAppDataProvider.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/useIncentiveData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/app-data-provider/useIncentiveData.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/useIncentiveDataCached.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/app-data-provider/useIncentiveDataCached.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/useIncentiveDataRPC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/app-data-provider/useIncentiveDataRPC.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/usePoolData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/app-data-provider/usePoolData.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/usePoolDataCached.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/app-data-provider/usePoolDataCached.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/usePoolDataRPC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/app-data-provider/usePoolDataRPC.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/useWalletBalances.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/app-data-provider/useWalletBalances.tsx -------------------------------------------------------------------------------- /src/hooks/governance-data-provider/AaveTokensDataProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/governance-data-provider/AaveTokensDataProvider.tsx -------------------------------------------------------------------------------- /src/hooks/governance-data-provider/GovernanceDataProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/governance-data-provider/GovernanceDataProvider.tsx -------------------------------------------------------------------------------- /src/hooks/governance-data-provider/_useGovernanceDataRPC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/governance-data-provider/_useGovernanceDataRPC.tsx -------------------------------------------------------------------------------- /src/hooks/governance-data-provider/useVotingPower.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/governance-data-provider/useVotingPower.tsx -------------------------------------------------------------------------------- /src/hooks/stake-data-provider/StakeDataProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/stake-data-provider/StakeDataProvider.tsx -------------------------------------------------------------------------------- /src/hooks/stake-data-provider/_useStakeDataCached.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/stake-data-provider/_useStakeDataCached.tsx -------------------------------------------------------------------------------- /src/hooks/stake-data-provider/_useStakeDataRPC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/stake-data-provider/_useStakeDataRPC.tsx -------------------------------------------------------------------------------- /src/hooks/stake-data-provider/graphql/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/stake-data-provider/graphql/hooks.tsx -------------------------------------------------------------------------------- /src/hooks/stake-data-provider/graphql/stake-general-ui-data.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/stake-data-provider/graphql/stake-general-ui-data.graphql -------------------------------------------------------------------------------- /src/hooks/stake-data-provider/graphql/stake-user-ui-data.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/stake-data-provider/graphql/stake-user-ui-data.graphql -------------------------------------------------------------------------------- /src/hooks/useConnectionStatusContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/useConnectionStatusContext.tsx -------------------------------------------------------------------------------- /src/hooks/useCurrentTimestamp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/useCurrentTimestamp.tsx -------------------------------------------------------------------------------- /src/hooks/useGasStation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/useGasStation.tsx -------------------------------------------------------------------------------- /src/hooks/useGetGasPrices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/useGetGasPrices.tsx -------------------------------------------------------------------------------- /src/hooks/useModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/useModal.tsx -------------------------------------------------------------------------------- /src/hooks/usePolling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/usePolling.tsx -------------------------------------------------------------------------------- /src/hooks/useProtocolDataContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/useProtocolDataContext.tsx -------------------------------------------------------------------------------- /src/hooks/useReservesHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/useReservesHistory.tsx -------------------------------------------------------------------------------- /src/hooks/useStakeTxBuilder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/useStakeTxBuilder.tsx -------------------------------------------------------------------------------- /src/hooks/useStateLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/useStateLoading.tsx -------------------------------------------------------------------------------- /src/hooks/useSwap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/useSwap.ts -------------------------------------------------------------------------------- /src/hooks/useTxBuilder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/useTxBuilder.tsx -------------------------------------------------------------------------------- /src/hooks/useWalletModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/hooks/useWalletModal.tsx -------------------------------------------------------------------------------- /src/layouts/AppGlobalStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/layouts/AppGlobalStyles.tsx -------------------------------------------------------------------------------- /src/layouts/AppHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/layouts/AppHeader.tsx -------------------------------------------------------------------------------- /src/layouts/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/layouts/MainLayout.tsx -------------------------------------------------------------------------------- /src/layouts/MobileMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/layouts/MobileMenu.tsx -------------------------------------------------------------------------------- /src/layouts/MoreMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/layouts/MoreMenu.tsx -------------------------------------------------------------------------------- /src/layouts/SettingsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/layouts/SettingsMenu.tsx -------------------------------------------------------------------------------- /src/layouts/WalletWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/layouts/WalletWidget.tsx -------------------------------------------------------------------------------- /src/layouts/components/DarkModeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/layouts/components/DarkModeSwitcher.tsx -------------------------------------------------------------------------------- /src/layouts/components/DrawerWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/layouts/components/DrawerWrapper.tsx -------------------------------------------------------------------------------- /src/layouts/components/LanguageSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/layouts/components/LanguageSwitcher.tsx -------------------------------------------------------------------------------- /src/layouts/components/MobileCloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/layouts/components/MobileCloseButton.tsx -------------------------------------------------------------------------------- /src/layouts/components/NavItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/layouts/components/NavItems.tsx -------------------------------------------------------------------------------- /src/layouts/components/TestNetModeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/layouts/components/TestNetModeSwitcher.tsx -------------------------------------------------------------------------------- /src/libs/LanguageProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/libs/LanguageProvider.tsx -------------------------------------------------------------------------------- /src/libs/hooks/use-get-ens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/libs/hooks/use-get-ens.tsx -------------------------------------------------------------------------------- /src/libs/hooks/useWeb3Context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/libs/hooks/useWeb3Context.tsx -------------------------------------------------------------------------------- /src/libs/web3-data-provider/WalletOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/libs/web3-data-provider/WalletOptions.ts -------------------------------------------------------------------------------- /src/libs/web3-data-provider/Web3Provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/libs/web3-data-provider/Web3Provider.tsx -------------------------------------------------------------------------------- /src/locales/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/locales/de/messages.po -------------------------------------------------------------------------------- /src/locales/en/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/locales/en/messages.js -------------------------------------------------------------------------------- /src/locales/en/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/locales/en/messages.po -------------------------------------------------------------------------------- /src/locales/es/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/locales/es/messages.js -------------------------------------------------------------------------------- /src/locales/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/locales/es/messages.po -------------------------------------------------------------------------------- /src/locales/fr/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/locales/fr/messages.js -------------------------------------------------------------------------------- /src/locales/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/locales/fr/messages.po -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardContentNoData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/DashboardContentNoData.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/DashboardContentWrapper.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardEModeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/DashboardEModeButton.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardListTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/DashboardListTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/DashboardTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/LiquidationRiskParametresModal/LiquidationRiskParametresModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/LiquidationRiskParametresModal/LiquidationRiskParametresModal.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/LiquidationRiskParametresModal/components/HFContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/LiquidationRiskParametresModal/components/HFContent.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/LiquidationRiskParametresModal/components/InfoWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/LiquidationRiskParametresModal/components/InfoWrapper.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/LiquidationRiskParametresModal/components/LTVContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/LiquidationRiskParametresModal/components/LTVContent.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsList.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListMobileItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/BorrowAssetsList/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/BorrowAssetsList/types.ts -------------------------------------------------------------------------------- /src/modules/dashboard/lists/BorrowedPositionsList/BorrowedPositionsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/BorrowedPositionsList/BorrowedPositionsList.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/BorrowedPositionsList/BorrowedPositionsListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/BorrowedPositionsList/BorrowedPositionsListItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/BorrowedPositionsList/BorrowedPositionsListMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/BorrowedPositionsList/BorrowedPositionsListMobileItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/BorrowedPositionsList/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/BorrowedPositionsList/types.ts -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListAPRColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListAPRColumn.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListBottomText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListBottomText.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListButtonsColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListButtonsColumn.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListHeader.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListItemAPYButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListItemAPYButton.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListItemCanBeCollateral.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListItemCanBeCollateral.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListItemIsolationBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListItemIsolationBadge.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListItemUsedAsCollateral.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListItemUsedAsCollateral.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListItemWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListItemWrapper.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListLoader.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListMobileItemWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListMobileItemWrapper.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListTopInfoItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListTopInfoItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListValueColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListValueColumn.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListValueRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/ListValueRow.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/MobileListItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/MobileListItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsList.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsListItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsListMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsListMobileItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsList.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListMobileItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SupplyAssetsList/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/dashboard/lists/SupplyAssetsList/types.ts -------------------------------------------------------------------------------- /src/modules/governance/FormattedProposalTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/governance/FormattedProposalTime.tsx -------------------------------------------------------------------------------- /src/modules/governance/GovernanceTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/governance/GovernanceTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/governance/ProposalListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/governance/ProposalListItem.tsx -------------------------------------------------------------------------------- /src/modules/governance/ProposalsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/governance/ProposalsList.tsx -------------------------------------------------------------------------------- /src/modules/governance/StateBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/governance/StateBadge.tsx -------------------------------------------------------------------------------- /src/modules/governance/VoteBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/governance/VoteBar.tsx -------------------------------------------------------------------------------- /src/modules/governance/VotingPowerInfoPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/governance/VotingPowerInfoPanel.tsx -------------------------------------------------------------------------------- /src/modules/governance/proposal/ProposalTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/governance/proposal/ProposalTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/governance/proposal/VoteInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/governance/proposal/VoteInfo.tsx -------------------------------------------------------------------------------- /src/modules/governance/utils/formatProposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/governance/utils/formatProposal.ts -------------------------------------------------------------------------------- /src/modules/governance/utils/getProposalMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/governance/utils/getProposalMetadata.ts -------------------------------------------------------------------------------- /src/modules/governance/utils/getVotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/governance/utils/getVotes.ts -------------------------------------------------------------------------------- /src/modules/governance/utils/governanceProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/governance/utils/governanceProvider.tsx -------------------------------------------------------------------------------- /src/modules/governance/utils/immutableStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/governance/utils/immutableStates.ts -------------------------------------------------------------------------------- /src/modules/markets/AssetsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/markets/AssetsList.tsx -------------------------------------------------------------------------------- /src/modules/markets/AssetsListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/markets/AssetsListItem.tsx -------------------------------------------------------------------------------- /src/modules/markets/AssetsListItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/markets/AssetsListItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/markets/AssetsListMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/markets/AssetsListMobileItem.tsx -------------------------------------------------------------------------------- /src/modules/markets/AssetsListMobileItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/markets/AssetsListMobileItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/markets/MarketsTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/markets/MarketsTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/ApyChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/reserve-overview/ApyChart.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/ChartLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/reserve-overview/ChartLegend.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/InterestRateModelChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/reserve-overview/InterestRateModelChart.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/ReserveActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/reserve-overview/ReserveActions.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/ReserveConfiguration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/reserve-overview/ReserveConfiguration.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/ReserveTopDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/reserve-overview/ReserveTopDetails.tsx -------------------------------------------------------------------------------- /src/modules/staking/StakeActionBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/staking/StakeActionBox.tsx -------------------------------------------------------------------------------- /src/modules/staking/StakingHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/staking/StakingHeader.tsx -------------------------------------------------------------------------------- /src/modules/staking/StakingPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/modules/staking/StakingPanel.tsx -------------------------------------------------------------------------------- /src/providers/StakeTxBuilderProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/providers/StakeTxBuilderProvider.tsx -------------------------------------------------------------------------------- /src/providers/TxBuilderProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/providers/TxBuilderProvider.tsx -------------------------------------------------------------------------------- /src/static-build/ipfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/static-build/ipfs.ts -------------------------------------------------------------------------------- /src/static-build/ipfsFiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/static-build/ipfsFiles.json -------------------------------------------------------------------------------- /src/static-build/populateCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/static-build/populateCache.ts -------------------------------------------------------------------------------- /src/static-build/proposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/static-build/proposal.ts -------------------------------------------------------------------------------- /src/static-build/proposals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/static-build/proposals.json -------------------------------------------------------------------------------- /src/static-build/vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/static-build/vote.ts -------------------------------------------------------------------------------- /src/static-build/votes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/static-build/votes.json -------------------------------------------------------------------------------- /src/ui-config/errorMapping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/ui-config/errorMapping.tsx -------------------------------------------------------------------------------- /src/ui-config/governanceConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/ui-config/governanceConfig.ts -------------------------------------------------------------------------------- /src/ui-config/marketsConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/ui-config/marketsConfig.ts -------------------------------------------------------------------------------- /src/ui-config/menu-items/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/ui-config/menu-items/index.tsx -------------------------------------------------------------------------------- /src/ui-config/networksConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/ui-config/networksConfig.ts -------------------------------------------------------------------------------- /src/ui-config/permitConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/ui-config/permitConfig.ts -------------------------------------------------------------------------------- /src/ui-config/reservePatches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/ui-config/reservePatches.ts -------------------------------------------------------------------------------- /src/ui-config/stakeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/ui-config/stakeConfig.ts -------------------------------------------------------------------------------- /src/uiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/uiConfig.ts -------------------------------------------------------------------------------- /src/utils/apolloClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/utils/apolloClient.ts -------------------------------------------------------------------------------- /src/utils/eMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/utils/eMode.ts -------------------------------------------------------------------------------- /src/utils/getMaxAmountAvailableToBorrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/utils/getMaxAmountAvailableToBorrow.ts -------------------------------------------------------------------------------- /src/utils/getMaxAmountAvailableToSupply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/utils/getMaxAmountAvailableToSupply.ts -------------------------------------------------------------------------------- /src/utils/hfUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/utils/hfUtils.ts -------------------------------------------------------------------------------- /src/utils/marketsAndNetworksConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/utils/marketsAndNetworksConfig.ts -------------------------------------------------------------------------------- /src/utils/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/utils/theme.tsx -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /svgo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/svgo.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starman1121/AAVE_Protocol/HEAD/yarn.lock --------------------------------------------------------------------------------