├── .babelrc ├── .editorconfig ├── .env.development ├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report---.md │ └── feature-request---.md ├── actions │ ├── analyze-comment │ │ └── action.yml │ ├── build │ │ └── action.yml │ ├── cypress │ │ └── action.yml │ ├── fork-result-comment │ │ └── action.yml │ ├── fork-result-label │ │ └── action.yml │ ├── private-ipfs-pin │ │ └── action.yml │ └── upload-artifacts │ │ └── action.yml ├── dependabot.yml ├── pull_request_template.md ├── release-template.md └── workflows │ ├── build-fork.yml │ ├── build-test-deploy.yml │ ├── crowdin-download.yml │ ├── crowdin-upload.yml │ ├── dependency-review.yml │ ├── i18n-check.yml │ ├── test-deploy-fork.yml │ ├── test.yml │ ├── update-cache.yml │ └── update-prod-staging.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .linguirc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── commitlint.config.js ├── crowdin.yml ├── custom.d.ts ├── cypress.config.ts ├── cypress ├── README.md ├── configs │ ├── base.cypress.ts │ ├── mobile.config.ts │ ├── settings.config.ts │ ├── v2-markets │ │ ├── amm-v2-full.config.ts │ │ ├── amm-v2-smoke.config.ts │ │ ├── avalanche-v2-additional.config.ts │ │ ├── avalanche-v2-full.config.ts │ │ ├── avalanche-v2-smoke.config.ts │ │ ├── ethereum-v2-additional.config.ts │ │ ├── ethereum-v2-full.config.ts │ │ ├── ethereum-v2-smoke.config.ts │ │ ├── polygon-v2-additional.config.ts │ │ ├── polygon-v2-full.config.ts │ │ └── polygon-v2-smoke.config.ts │ └── v3-markets │ │ ├── arbitrum-v3-additional.config.ts │ │ ├── arbitrum-v3-full.config.ts │ │ ├── arbitrum-v3-smoke.config.ts │ │ ├── avalanche-v3-additional.config.ts │ │ ├── avalanche-v3-full.config.ts │ │ ├── avalanche-v3-smoke.config.ts │ │ ├── ethereum-v3-additional.config.ts │ │ ├── ethereum-v3-full.config.ts │ │ ├── ethereum-v3-smoke.config.ts │ │ ├── fantom-v3-additional.config.ts │ │ ├── fantom-v3-full.config.ts │ │ ├── fantom-v3-smoke.config.ts │ │ ├── optimism-v3-additional.config.ts │ │ ├── optimism-v3-full.config.ts │ │ ├── optimism-v3-smoke.config.ts │ │ ├── polygon-v3-additional.config.ts │ │ ├── polygon-v3-full.config.ts │ │ └── polygon-v3-smoke.config.ts ├── e2e │ ├── 0-v2-markets │ │ ├── 0-main-v2-market │ │ │ ├── 0-assets │ │ │ │ ├── bat.aave-v2.cy.ts │ │ │ │ ├── dai.aave-v2.cy.ts │ │ │ │ ├── eth.aave-v2.cy.ts │ │ │ │ ├── mana.aave-v2.cy.ts │ │ │ │ ├── mkr.aave-v2.cy.ts │ │ │ │ ├── ren.aave-v2.cy.ts │ │ │ │ ├── tusd.aave-v2.cy.ts │ │ │ │ ├── usdc.aave-v2.cy.ts │ │ │ │ └── usdt.aave-v2.cy.ts │ │ │ ├── critical-conditions.aave-v2.cy.ts │ │ │ ├── migration.aave-v2.cy.ts │ │ │ ├── reward.aave-v2.cy.ts │ │ │ ├── stake.aave-v2.cy.ts │ │ │ └── swap.aave-v2.cy.ts │ │ ├── 1-amm-v2-market │ │ │ ├── 0-assets │ │ │ │ ├── dai.amm-v2.cy.ts │ │ │ │ ├── eth.amm-v2.cy.ts │ │ │ │ ├── usdc.amm-v2.cy.ts │ │ │ │ ├── usdt.amm-v2.cy.ts │ │ │ │ └── wbtc.amm-v2.cy.ts │ │ │ └── critical-conditions.amm-v2.cy.ts │ │ ├── 2-polygon-v2-market │ │ │ ├── 0-assets │ │ │ │ ├── bal.polygon-v2.cy.ts │ │ │ │ ├── crv.polygon-v2.cy.ts │ │ │ │ ├── dai.polygon-v2.cy.ts │ │ │ │ ├── dpi.polygon-v2.cy.ts │ │ │ │ ├── ghst.polygon-v2.cy.ts │ │ │ │ ├── link.polygon-v2.cy.ts │ │ │ │ ├── matic.polygon-v2.cy.ts │ │ │ │ ├── sushi.polygon-v2.cy.ts │ │ │ │ ├── usdc.polygon-v2.cy.ts │ │ │ │ ├── usdt.polygon-v2.cy.ts │ │ │ │ ├── wbtc.polygon-v2.cy.ts │ │ │ │ └── weth.polygon-v2.cy.ts │ │ │ ├── critical-conditions.polygon-v2.cy.ts │ │ │ ├── migration.polygon-v2.cy.ts │ │ │ └── swap.polygon-v2.cy.ts │ │ └── 3-avalanche-v2-market │ │ │ ├── 0-assets │ │ │ ├── avax.avalanche-v2.cy.ts │ │ │ ├── dai.avalanche-v2.cy.ts │ │ │ ├── usdc.avalanche-v2.cy.ts │ │ │ ├── usdt.avalanche-v2.cy.ts │ │ │ ├── wbtc.avalanche-v2.cy.ts │ │ │ └── weth.avalanche-v2.cy.ts │ │ │ ├── critical-conditions.avalanche-v2.cy.ts │ │ │ ├── migration.avalanche-v2.cy.ts │ │ │ ├── reward.avalanche-v2.cy.ts │ │ │ └── swap.avalanche-v2.cy.ts │ ├── 1-v3-markets │ │ ├── 0-ethereum-v3-market │ │ │ ├── 0-assets │ │ │ │ ├── dai.ethereum-v3.cy.ts │ │ │ │ ├── eth.ethereum-v3.cy.ts │ │ │ │ ├── link.ethereum-v3.cy.ts │ │ │ │ ├── usdc.ethereum-v3.cy.ts │ │ │ │ ├── wbtc.ethereum-v3.cy.ts │ │ │ │ └── wsteth.ethereum-v3.cy.ts │ │ │ ├── critical-conditions.ethereum-v3.cy.ts │ │ │ ├── e-mode.ethereum-v3.cy.ts │ │ │ └── swap.ethereum-v3.cy.ts │ │ ├── 1-arbitrum-v3-market │ │ │ ├── 0-assets │ │ │ │ ├── dai.arbitrum-v3.cy.ts │ │ │ │ ├── eth.arbitrum-v3.cy.ts │ │ │ │ ├── link.arbitrum-v3.cy.ts │ │ │ │ ├── usdc.arbitrum-v3.cy.ts │ │ │ │ ├── usdt.arbitrum-v3.cy.ts │ │ │ │ └── wbtc.arbitrum-v3.cy.ts │ │ │ ├── critical-conditions.arbitrum-v3.cy.ts │ │ │ └── e-mode.arbitrum-v3.cy.ts │ │ ├── 2-avalanche-v3-market │ │ │ ├── 0-assets │ │ │ │ ├── avax.avalanche-v3.cy.ts │ │ │ │ ├── dai.avalanche-v3.cy.ts │ │ │ │ ├── link.avalanche-v3.cy.ts │ │ │ │ ├── usdc.avalanche-v3.cy.ts │ │ │ │ ├── usdt.avalacnhe-v3.cy.ts │ │ │ │ ├── wbtc.avalanche-v3.cy.ts │ │ │ │ └── weth.avalanche-v3.cy.ts │ │ │ ├── critical-conditions.avalanche-v3.cy.ts │ │ │ ├── e-mode.avalanche-v3.cy.ts │ │ │ ├── isolated-mode.avalanche-v3.cy.ts │ │ │ ├── reward.avalanche-v3.cy.ts │ │ │ └── swap.avalanche-v3.cy.ts │ │ ├── 3-polygon-v3-market │ │ │ ├── 0-assets │ │ │ │ ├── dai.polygon-v3.cy.ts │ │ │ │ ├── eurs.polygon-v3.cy.ts │ │ │ │ ├── link.polygon-v3.cy.ts │ │ │ │ ├── matic.polygon-v3.cy.ts │ │ │ │ ├── usdc.polygon-v3.cy.ts │ │ │ │ ├── usdt.polygon-v3.cy.ts │ │ │ │ ├── wbtc.polygon-v3.cy.ts │ │ │ │ └── weth.polygon-v3.cy.ts │ │ │ ├── critical-conditions.polygon-v3.cy.ts │ │ │ ├── e-mode.polygon-v3.cy.ts │ │ │ ├── isolated-and-emode.polygon-v3.cy.ts │ │ │ ├── isolated-mode.polygon-v3.cy.ts │ │ │ └── swap.polygon-v3.cy.ts │ │ ├── 4-optimism-v3-market │ │ │ ├── 0-assets │ │ │ │ ├── dai.optimism-v3.cy.ts │ │ │ │ ├── eth.optimism-v3.cy.ts │ │ │ │ ├── link.optimism-v3.cy.ts │ │ │ │ ├── susd.optimism-v3.cy.ts │ │ │ │ ├── usdc.optimism-v3.cy.ts │ │ │ │ ├── usdt.optimism-v3.cy.ts │ │ │ │ └── wbtc.optimism-v3.cy.ts │ │ │ ├── critical-conditions.optimism-v3.cy.ts │ │ │ └── e-mode.optimism-v3.cy.ts │ │ └── 5-fantom-v3-market │ │ │ ├── 0-assets │ │ │ ├── dai.fantom-v3.cy.ts │ │ │ ├── ftm.fantom-v3.cy.ts │ │ │ ├── link.fantom-v3.cy.ts │ │ │ ├── usdc.fantom-v3.cy.ts │ │ │ ├── usdt.fantom-v3.cy.ts │ │ │ ├── wbtc.fantom-v3.cy.ts │ │ │ └── weth.fantom-v3.cy.ts │ │ │ ├── critical-conditions.fantom-v3.cy.ts │ │ │ ├── e-mode.fantom-v3.cy.ts │ │ │ ├── isolated-mode.fantom-v3.cy.ts │ │ │ └── swap.fantom-v3.cy.ts │ └── 2-settings │ │ ├── change-languages.cy.ts │ │ ├── details.page.aave-v2.cy.ts │ │ ├── mobile.cy.ts │ │ ├── stake-abpt.cy.ts │ │ ├── switch-market.cy.ts │ │ ├── switch-tabs.cy.ts │ │ └── wallet-connect.cy.ts ├── fixtures │ ├── assets.json │ ├── constans.json │ ├── erc20_abi.json │ ├── markets.json │ └── poolConfig.json ├── plugins │ └── index.js ├── support │ ├── commands.ts │ ├── e2e.ts │ ├── steps │ │ ├── common.ts │ │ ├── configuration.steps.ts │ │ ├── main.steps.ts │ │ └── verification.steps.ts │ └── tools │ │ ├── bridge.ts │ │ ├── math.util.ts │ │ └── tenderly.ts └── tsconfig.json ├── index.d.ts ├── jest.config.js ├── jest.setup.js ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── 404.page.tsx ├── 500.page.tsx ├── _app.page.tsx ├── _document.page.tsx ├── _error.page.tsx ├── faucet.page.tsx ├── governance │ ├── index.governance.tsx │ ├── ipfs-preview.governance.tsx │ └── proposal │ │ ├── [proposalId].governance.tsx │ │ └── index.governance.tsx ├── index.page.tsx ├── markets.page.tsx ├── reserve-overview.page.tsx ├── sdai.page.tsx ├── staking.staking.tsx └── v3-migration.page.tsx ├── public ├── 404 │ └── 404.svg ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── backgroundMain.jpg ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fonts │ └── inter │ │ ├── Inter-Black.woff │ │ ├── Inter-Black.woff2 │ │ ├── Inter-BlackItalic.woff │ │ ├── Inter-BlackItalic.woff2 │ │ ├── Inter-Bold.woff │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-BoldItalic.woff │ │ ├── Inter-BoldItalic.woff2 │ │ ├── Inter-ExtraBold.woff │ │ ├── Inter-ExtraBold.woff2 │ │ ├── Inter-ExtraBoldItalic.woff │ │ ├── Inter-ExtraBoldItalic.woff2 │ │ ├── Inter-ExtraLight.woff │ │ ├── Inter-ExtraLight.woff2 │ │ ├── Inter-ExtraLightItalic.woff │ │ ├── Inter-ExtraLightItalic.woff2 │ │ ├── Inter-Italic.woff │ │ ├── Inter-Italic.woff2 │ │ ├── Inter-Light.woff │ │ ├── Inter-Light.woff2 │ │ ├── Inter-LightItalic.woff │ │ ├── Inter-LightItalic.woff2 │ │ ├── Inter-Medium.woff │ │ ├── Inter-Medium.woff2 │ │ ├── Inter-MediumItalic.woff │ │ ├── Inter-MediumItalic.woff2 │ │ ├── Inter-Regular.woff │ │ ├── Inter-Regular.woff2 │ │ ├── Inter-SemiBold.woff │ │ ├── Inter-SemiBold.woff2 │ │ ├── Inter-SemiBoldItalic.woff │ │ ├── Inter-SemiBoldItalic.woff2 │ │ ├── Inter-Thin.woff │ │ ├── Inter-Thin.woff2 │ │ ├── Inter-ThinItalic.woff │ │ ├── Inter-ThinItalic.woff2 │ │ ├── Inter-italic.var.woff2 │ │ ├── Inter-roman.var.woff2 │ │ ├── Inter.var.woff2 │ │ └── inter.css ├── fork-config-example.png ├── icons │ ├── bridge │ │ ├── arbitrum.svg │ │ ├── avalanche.svg │ │ ├── fantom.svg │ │ ├── gnosis.svg │ │ ├── harmony.svg │ │ ├── optimism.svg │ │ └── polygon.svg │ ├── discord.svg │ ├── flags │ │ ├── cn.svg │ │ ├── el.svg │ │ ├── en.svg │ │ ├── es.svg │ │ ├── fr.svg │ │ ├── it.svg │ │ ├── jp.svg │ │ ├── kr.svg │ │ ├── pr.svg │ │ ├── tr.svg │ │ └── vt.svg │ ├── github.svg │ ├── healthFactor │ │ ├── HAL.svg │ │ ├── HALHover.svg │ │ ├── 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 │ │ ├── gnosis.png │ │ ├── harmony.svg │ │ ├── optimism.svg │ │ └── polygon.svg │ ├── onRampServices │ │ └── transak.svg │ ├── other │ │ └── paraswap.svg │ ├── staking │ │ ├── emission-staking-icon.svg │ │ └── trust-staking-icon.svg │ ├── tokens │ │ ├── 1inch.svg │ │ ├── aave.svg │ │ ├── ageur.svg │ │ ├── ampl.svg │ │ ├── avax.svg │ │ ├── bal.svg │ │ ├── bat.svg │ │ ├── bpt.svg │ │ ├── btc.svg │ │ ├── busd.svg │ │ ├── cbeth.svg │ │ ├── crv.svg │ │ ├── cvx.svg │ │ ├── dai.svg │ │ ├── default.svg │ │ ├── dpi.svg │ │ ├── enj.svg │ │ ├── ens.svg │ │ ├── eth.svg │ │ ├── eure.svg │ │ ├── eurs.svg │ │ ├── fei.svg │ │ ├── frax.svg │ │ ├── ftm.svg │ │ ├── ghst.svg │ │ ├── gno.svg │ │ ├── gusd.svg │ │ ├── jeur.svg │ │ ├── knc.svg │ │ ├── lend.svg │ │ ├── link.svg │ │ ├── lusd.svg │ │ ├── mai.svg │ │ ├── mana.svg │ │ ├── matic.svg │ │ ├── maticx.svg │ │ ├── mkr.svg │ │ ├── one.svg │ │ ├── op.svg │ │ ├── pax.svg │ │ ├── pools │ │ │ ├── bpt.svg │ │ │ ├── guni.svg │ │ │ └── uni.svg │ │ ├── rai.svg │ │ ├── ren.svg │ │ ├── renfil.svg │ │ ├── rep.svg │ │ ├── reth.svg │ │ ├── savax.svg │ │ ├── sd.svg │ │ ├── sdai.svg │ │ ├── seth.svg │ │ ├── snx.svg │ │ ├── steth.svg │ │ ├── stkaave.svg │ │ ├── stkbpt.svg │ │ ├── stmatic.svg │ │ ├── susd.svg │ │ ├── sushi.svg │ │ ├── tribe.svg │ │ ├── tusd.svg │ │ ├── uni.svg │ │ ├── usdc.svg │ │ ├── usdp.svg │ │ ├── usdt.svg │ │ ├── ust.svg │ │ ├── wavax.svg │ │ ├── wbtc.svg │ │ ├── weeth.svg │ │ ├── weth.svg │ │ ├── wftm.svg │ │ ├── wmatic.svg │ │ ├── wone.svg │ │ ├── wsteth.svg │ │ ├── wxdai.svg │ │ ├── xdai.svg │ │ ├── xsushi.svg │ │ ├── yfi.svg │ │ └── zrx.svg │ └── wallets │ │ ├── browserWallet.svg │ │ ├── coinbase.svg │ │ ├── frame.svg │ │ ├── torus.svg │ │ └── walletConnect.svg ├── lightningBoltGradient.svg ├── manifest.json ├── sparkLogo.svg ├── sparkMetaLogo-min.jpg ├── walletConnectLogo.svg └── walletConnectLogoDark.svg ├── src ├── components │ ├── AddressBlocked.tsx │ ├── AddressBlockedModal.tsx │ ├── BlockVPN.tsx │ ├── BridgeButton.tsx │ ├── ChainAvailabilityText.tsx │ ├── CircleIcon.tsx │ ├── ConnectWalletPaper.tsx │ ├── ConnectWalletPaperStaking.tsx │ ├── ContentContainer.tsx │ ├── ContentWithTooltip.tsx │ ├── FaucetButton.tsx │ ├── HALLink.tsx │ ├── HealthFactorNumber.tsx │ ├── MarketSwitcher.tsx │ ├── Meta.tsx │ ├── NoSearchResults.tsx │ ├── ReserveOverviewBox.tsx │ ├── ReserveSubheader.tsx │ ├── SearchInput.tsx │ ├── StyledToggleButton.tsx │ ├── StyledToggleButtonGroup.tsx │ ├── TextWithModal.tsx │ ├── TextWithTooltip.tsx │ ├── TitleWithSearchBar.tsx │ ├── TopInfoPanel │ │ ├── PageTitle.tsx │ │ ├── TopInfoPanel.tsx │ │ └── TopInfoPanelItem.tsx │ ├── WalletConnection │ │ ├── ConnectWalletButton.tsx │ │ ├── WalletModal.tsx │ │ └── WalletSelector.tsx │ ├── Warnings │ │ ├── AMPLWarning.tsx │ │ ├── BorrowDisabledWarning.tsx │ │ └── CooldownWarning.tsx │ ├── caps │ │ ├── CapsCircularStatus.tsx │ │ ├── CapsHint.tsx │ │ ├── CapsTooltip.tsx │ │ ├── DebtCeilingStatus.tsx │ │ └── helper.ts │ ├── icons │ │ └── WalletIcon.tsx │ ├── incentives │ │ ├── IncentivesButton.tsx │ │ ├── IncentivesCard.tsx │ │ └── IncentivesTooltipContent.tsx │ ├── infoModalContents │ │ └── InfoContentWrapper.tsx │ ├── infoTooltips │ │ ├── AMPLToolTip.tsx │ │ ├── APYTypeTooltip.tsx │ │ ├── ApprovalTooltip.tsx │ │ ├── AvailableTooltip.tsx │ │ ├── BorrowCapMaxedTooltip.tsx │ │ ├── BorrowDisabledToolTip.tsx │ │ ├── BorrowPowerTooltip.tsx │ │ ├── CollateralSwitchTooltip.tsx │ │ ├── CollateralTooltip.tsx │ │ ├── DarkTooltip.tsx │ │ ├── DebtCeilingMaxedTooltip.tsx │ │ ├── EModeTooltip.tsx │ │ ├── FrozenTooltip.tsx │ │ ├── GasTooltip.tsx │ │ ├── LiquidationPenaltyTooltip.tsx │ │ ├── LiquidationThresholdTooltip.tsx │ │ ├── MaxLTVTooltip.tsx │ │ ├── MigrationDisabledTooltip.tsx │ │ ├── NetAPYTooltip.tsx │ │ ├── PredictableAPYTooltip.tsx │ │ ├── PriceImpactTooltip.tsx │ │ ├── ReadOnlyModeTooltip.tsx │ │ ├── RenFILToolTip.tsx │ │ ├── ReserveFactorTooltip.tsx │ │ ├── SlippageTooltip.tsx │ │ ├── StableAPYTooltip.tsx │ │ ├── SupplyCapMaxedTooltip.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 │ │ ├── CaptchaFaucetModalContent.tsx │ │ ├── FaucetActions.tsx │ │ ├── FaucetModal.tsx │ │ ├── FaucetModalContent.tsx │ │ ├── Turnstile.tsx │ │ └── utils.ts │ │ ├── FlowCommons │ │ ├── ApprovalMethodToggleButton.tsx │ │ ├── Error.tsx │ │ ├── GasEstimationError.tsx │ │ ├── ModalWrapper.tsx │ │ ├── PermissionView.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 │ │ ├── MigrateV3 │ │ ├── MigrateV3Actions.tsx │ │ ├── MigrateV3Modal.tsx │ │ ├── MigrateV3ModalAssetsList.tsx │ │ └── MigrateV3ModalContent.tsx │ │ ├── PSMSwap │ │ ├── PSMSwapActions.tsx │ │ ├── PSMSwapModal.tsx │ │ ├── PSMSwapModalContent.tsx │ │ └── YieldForecast.tsx │ │ ├── RateSwitch │ │ ├── RateSwitchActions.tsx │ │ ├── RateSwitchModal.tsx │ │ └── RateSwitchModalContent.tsx │ │ ├── Repay │ │ ├── CollateralRepayActions.tsx │ │ ├── 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 │ │ └── SwapModalDetails.tsx │ │ ├── TxActionsWrapper.tsx │ │ ├── UnStake │ │ ├── UnStakeActions.tsx │ │ ├── UnStakeModal.tsx │ │ └── UnStakeModalContent.tsx │ │ ├── Warnings │ │ ├── AAVEWarning.tsx │ │ ├── BorrowCapWarning.tsx │ │ ├── ChangeNetworkWarning.tsx │ │ ├── DebtCeilingWarning.tsx │ │ ├── IsolationModeWarning.tsx │ │ ├── MarketWarning.tsx │ │ ├── ParaswapErrorDisplay.tsx │ │ ├── SNXWarning.tsx │ │ └── SupplyCapWarning.tsx │ │ ├── Withdraw │ │ ├── WithdrawActions.tsx │ │ ├── WithdrawModal.tsx │ │ └── WithdrawModalContent.tsx │ │ └── utils.ts ├── createEmotionCache.ts ├── helpers │ ├── text-center-ellipsis.ts │ ├── timeHelper.tsx │ ├── toggle-local-storage-click.ts │ ├── types.ts │ ├── useParaSwapTransactionHandler.tsx │ └── useTransactionHandler.tsx ├── hooks │ ├── app-data-provider │ │ ├── BackgroundDataProvider.tsx │ │ ├── useAppDataProvider.tsx │ │ └── useWalletBalances.tsx │ ├── governance-data-provider │ │ ├── AaveTokensDataProvider.tsx │ │ ├── GovernanceDataProvider.tsx │ │ └── useVotingPower.tsx │ ├── paraswap │ │ ├── common.ts │ │ ├── useCollateralRepaySwap.tsx │ │ └── useCollateralSwap.tsx │ ├── useAddressAllowed.tsx │ ├── useAssetCaps.tsx │ ├── useCryptoBuyAvailable.tsx │ ├── useCurrentTimestamp.tsx │ ├── useGasStation.tsx │ ├── useGetGasPrices.tsx │ ├── useIsWrongNetwork.tsx │ ├── useModal.tsx │ ├── usePermissions.tsx │ ├── usePolling.tsx │ ├── usePreviousState.ts │ ├── useProtocolDataContext.tsx │ ├── useReserveActionState.tsx │ ├── useReservesHistory.tsx │ ├── useShouldShowAirdropInfo.ts │ ├── useUserReserves.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 │ │ ├── WalletConnectConnector.ts │ │ ├── WalletOptions.ts │ │ └── Web3Provider.tsx ├── locales │ ├── de │ │ └── messages.po │ ├── el │ │ ├── messages.js │ │ └── 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 │ │ │ ├── SlippageList.tsx │ │ │ ├── SuppliedPositionsList │ │ │ ├── SuppliedPositionsList.tsx │ │ │ ├── SuppliedPositionsListItem.tsx │ │ │ └── SuppliedPositionsListMobileItem.tsx │ │ │ └── SupplyAssetsList │ │ │ ├── SupplyAssetsList.tsx │ │ │ ├── SupplyAssetsListItem.tsx │ │ │ ├── SupplyAssetsListMobileItem.tsx │ │ │ ├── WalletEmptyInfo.tsx │ │ │ └── types.ts │ ├── faucet │ │ ├── FaucetAssetsList.tsx │ │ ├── FaucetItemLoader.tsx │ │ ├── FaucetMobileItemLoader.tsx │ │ └── FaucetTopPanel.tsx │ ├── governance │ │ ├── FormattedProposalTime.tsx │ │ ├── GovernanceTopPanel.tsx │ │ ├── ProposalListHeader.tsx │ │ ├── ProposalListItem.tsx │ │ ├── ProposalsList.tsx │ │ ├── StateBadge.tsx │ │ ├── VoteBar.tsx │ │ ├── VotingPowerInfoPanel.tsx │ │ ├── proposal │ │ │ ├── ProposalTopPanel.tsx │ │ │ ├── VoteInfo.tsx │ │ │ ├── VotersList.tsx │ │ │ ├── VotersListContainer.tsx │ │ │ ├── VotersListItem.tsx │ │ │ └── VotersListModal.tsx │ │ └── utils │ │ │ ├── formatProposal.ts │ │ │ ├── getProposalMetadata.ts │ │ │ ├── getVotes.ts │ │ │ ├── governanceProvider.tsx │ │ │ └── immutableStates.ts │ ├── markets │ │ ├── MarketAssetsList.tsx │ │ ├── MarketAssetsListContainer.tsx │ │ ├── MarketAssetsListItem.tsx │ │ ├── MarketAssetsListItemLoader.tsx │ │ ├── MarketAssetsListMobileItem.tsx │ │ ├── MarketAssetsListMobileItemLoader.tsx │ │ └── MarketsTopPanel.tsx │ ├── migration │ │ ├── HFChange.tsx │ │ ├── MigrationBottomPanel.tsx │ │ ├── MigrationList.tsx │ │ ├── MigrationListBorrowItem.tsx │ │ ├── MigrationListItem.tsx │ │ ├── MigrationListItemLoader.tsx │ │ ├── MigrationListItemToggler.tsx │ │ ├── MigrationListMobileItem.tsx │ │ ├── MigrationLists.tsx │ │ ├── MigrationMobileList.tsx │ │ ├── MigrationSelectionBox.tsx │ │ ├── MigrationTopPanel.tsx │ │ ├── StETHMigrationWarning.tsx │ │ └── USDCMigrationWarning.tsx │ ├── reserve-overview │ │ ├── AddTokenDropdown.tsx │ │ ├── BorrowInfo.tsx │ │ ├── ReserveActions.tsx │ │ ├── ReserveConfiguration.tsx │ │ ├── ReserveFactorOverview.tsx │ │ ├── ReservePanels.tsx │ │ ├── ReserveTopDetails.tsx │ │ ├── SupplyInfo.tsx │ │ ├── TokenLinkDropdown.tsx │ │ └── graphs │ │ │ ├── ApyGraph.tsx │ │ │ ├── ApyGraphContainer.tsx │ │ │ ├── GraphLegend.tsx │ │ │ ├── GraphTimeRangeSelector.tsx │ │ │ ├── InterestRateModelGraph.tsx │ │ │ └── InterestRateModelGraphContainer.tsx │ ├── sdai │ │ ├── AddTokenToWallet.tsx │ │ ├── DSRTooltip.tsx │ │ ├── LiveSDAIBalance.tsx │ │ ├── SDAIEtherscanLink.tsx │ │ └── SDAITopPanel.tsx │ └── staking │ │ ├── BuyWithFiat.tsx │ │ ├── BuyWithFiatModal.tsx │ │ ├── GetABPToken.tsx │ │ ├── GetABPTokenModal.tsx │ │ ├── StakeActionBox.tsx │ │ ├── StakingHeader.tsx │ │ ├── StakingPanel.tsx │ │ └── StakingPanelNoWallet.tsx ├── static-build │ ├── ipfs.ts │ ├── ipfsFiles.json │ ├── populateCache.ts │ ├── proposal.ts │ ├── proposals.json │ ├── vote.ts │ └── votes.json ├── store │ ├── governanceSlice.ts │ ├── incentiveSlice.ts │ ├── poolSelectors.ts │ ├── poolSlice.ts │ ├── protocolDataSlice.ts │ ├── root.ts │ ├── stakeSlice.ts │ ├── utils │ │ ├── createSingletonSubscriber.ts │ │ └── queryParams.ts │ ├── v3MigrationSelectors.ts │ ├── v3MigrationSlice.ts │ ├── walletSelectors.ts │ └── walletSlice.ts ├── styles │ └── variables.css ├── ui-config │ ├── errorMapping.tsx │ ├── governanceConfig.ts │ ├── marketsConfig.tsx │ ├── menu-items │ │ └── index.tsx │ ├── networksConfig.ts │ ├── onRampServicesConfig.tsx │ ├── permitConfig.ts │ ├── reservePatches.ts │ └── stakeConfig.ts ├── uiConfig.ts └── utils │ ├── __tests__ │ ├── RotationProvider.test.ts │ └── marketsAndNetworkConfig.spec.ts │ ├── dashboardSortUtils.ts │ ├── eMode.ts │ ├── getMaxAmountAvailableToBorrow.ts │ ├── getMaxAmountAvailableToSupply.ts │ ├── hfUtils.ts │ ├── marketsAndNetworksConfig.ts │ ├── rotationProvider.ts │ ├── theme.tsx │ └── utils.ts ├── svgo.config.js ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.env.development -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report---.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/ISSUE_TEMPLATE/bug-report---.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request---.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/ISSUE_TEMPLATE/feature-request---.md -------------------------------------------------------------------------------- /.github/actions/analyze-comment/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/actions/analyze-comment/action.yml -------------------------------------------------------------------------------- /.github/actions/build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/actions/build/action.yml -------------------------------------------------------------------------------- /.github/actions/cypress/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/actions/cypress/action.yml -------------------------------------------------------------------------------- /.github/actions/fork-result-comment/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/actions/fork-result-comment/action.yml -------------------------------------------------------------------------------- /.github/actions/fork-result-label/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/actions/fork-result-label/action.yml -------------------------------------------------------------------------------- /.github/actions/private-ipfs-pin/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/actions/private-ipfs-pin/action.yml -------------------------------------------------------------------------------- /.github/actions/upload-artifacts/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/actions/upload-artifacts/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/release-template.md -------------------------------------------------------------------------------- /.github/workflows/build-fork.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/workflows/build-fork.yml -------------------------------------------------------------------------------- /.github/workflows/build-test-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/workflows/build-test-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin-download.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/workflows/crowdin-download.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/workflows/crowdin-upload.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/i18n-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/workflows/i18n-check.yml -------------------------------------------------------------------------------- /.github/workflows/test-deploy-fork.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/workflows/test-deploy-fork.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/workflows/update-cache.yml -------------------------------------------------------------------------------- /.github/workflows/update-prod-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.github/workflows/update-prod-staging.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.linguirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.linguirc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/crowdin.yml -------------------------------------------------------------------------------- /custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/custom.d.ts -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/README.md -------------------------------------------------------------------------------- /cypress/configs/base.cypress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/base.cypress.ts -------------------------------------------------------------------------------- /cypress/configs/mobile.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/mobile.config.ts -------------------------------------------------------------------------------- /cypress/configs/settings.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/settings.config.ts -------------------------------------------------------------------------------- /cypress/configs/v2-markets/amm-v2-full.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v2-markets/amm-v2-full.config.ts -------------------------------------------------------------------------------- /cypress/configs/v2-markets/amm-v2-smoke.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v2-markets/amm-v2-smoke.config.ts -------------------------------------------------------------------------------- /cypress/configs/v2-markets/avalanche-v2-additional.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v2-markets/avalanche-v2-additional.config.ts -------------------------------------------------------------------------------- /cypress/configs/v2-markets/avalanche-v2-full.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v2-markets/avalanche-v2-full.config.ts -------------------------------------------------------------------------------- /cypress/configs/v2-markets/avalanche-v2-smoke.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v2-markets/avalanche-v2-smoke.config.ts -------------------------------------------------------------------------------- /cypress/configs/v2-markets/ethereum-v2-additional.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v2-markets/ethereum-v2-additional.config.ts -------------------------------------------------------------------------------- /cypress/configs/v2-markets/ethereum-v2-full.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v2-markets/ethereum-v2-full.config.ts -------------------------------------------------------------------------------- /cypress/configs/v2-markets/ethereum-v2-smoke.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v2-markets/ethereum-v2-smoke.config.ts -------------------------------------------------------------------------------- /cypress/configs/v2-markets/polygon-v2-additional.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v2-markets/polygon-v2-additional.config.ts -------------------------------------------------------------------------------- /cypress/configs/v2-markets/polygon-v2-full.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v2-markets/polygon-v2-full.config.ts -------------------------------------------------------------------------------- /cypress/configs/v2-markets/polygon-v2-smoke.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v2-markets/polygon-v2-smoke.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/arbitrum-v3-additional.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/arbitrum-v3-additional.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/arbitrum-v3-full.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/arbitrum-v3-full.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/arbitrum-v3-smoke.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/arbitrum-v3-smoke.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/avalanche-v3-additional.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/avalanche-v3-additional.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/avalanche-v3-full.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/avalanche-v3-full.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/avalanche-v3-smoke.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/avalanche-v3-smoke.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/ethereum-v3-additional.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/ethereum-v3-additional.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/ethereum-v3-full.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/ethereum-v3-full.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/ethereum-v3-smoke.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/ethereum-v3-smoke.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/fantom-v3-additional.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/fantom-v3-additional.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/fantom-v3-full.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/fantom-v3-full.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/fantom-v3-smoke.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/fantom-v3-smoke.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/optimism-v3-additional.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/optimism-v3-additional.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/optimism-v3-full.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/optimism-v3-full.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/optimism-v3-smoke.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/optimism-v3-smoke.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/polygon-v3-additional.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/polygon-v3-additional.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/polygon-v3-full.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/polygon-v3-full.config.ts -------------------------------------------------------------------------------- /cypress/configs/v3-markets/polygon-v3-smoke.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/configs/v3-markets/polygon-v3-smoke.config.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/bat.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/bat.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/dai.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/dai.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/eth.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/eth.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/mana.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/mana.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/mkr.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/mkr.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/ren.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/ren.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/tusd.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/tusd.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/usdc.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/usdc.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/usdt.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/0-main-v2-market/0-assets/usdt.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/0-main-v2-market/critical-conditions.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/0-main-v2-market/critical-conditions.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/0-main-v2-market/migration.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/0-main-v2-market/migration.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/0-main-v2-market/reward.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/0-main-v2-market/reward.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/0-main-v2-market/stake.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/0-main-v2-market/stake.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/0-main-v2-market/swap.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/0-main-v2-market/swap.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/1-amm-v2-market/0-assets/dai.amm-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/1-amm-v2-market/0-assets/dai.amm-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/1-amm-v2-market/0-assets/eth.amm-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/1-amm-v2-market/0-assets/eth.amm-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/1-amm-v2-market/0-assets/usdc.amm-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/1-amm-v2-market/0-assets/usdc.amm-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/1-amm-v2-market/0-assets/usdt.amm-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/1-amm-v2-market/0-assets/usdt.amm-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/1-amm-v2-market/0-assets/wbtc.amm-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/1-amm-v2-market/0-assets/wbtc.amm-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/1-amm-v2-market/critical-conditions.amm-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/1-amm-v2-market/critical-conditions.amm-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/bal.polygon-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/bal.polygon-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/crv.polygon-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/crv.polygon-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/dai.polygon-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/dai.polygon-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/dpi.polygon-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/dpi.polygon-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/ghst.polygon-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/ghst.polygon-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/link.polygon-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/link.polygon-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/matic.polygon-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/matic.polygon-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/sushi.polygon-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/sushi.polygon-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/usdc.polygon-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/usdc.polygon-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/usdt.polygon-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/usdt.polygon-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/wbtc.polygon-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/wbtc.polygon-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/weth.polygon-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/2-polygon-v2-market/0-assets/weth.polygon-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/2-polygon-v2-market/migration.polygon-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/2-polygon-v2-market/migration.polygon-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/2-polygon-v2-market/swap.polygon-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/2-polygon-v2-market/swap.polygon-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/3-avalanche-v2-market/0-assets/dai.avalanche-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/3-avalanche-v2-market/0-assets/dai.avalanche-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/3-avalanche-v2-market/migration.avalanche-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/3-avalanche-v2-market/migration.avalanche-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/3-avalanche-v2-market/reward.avalanche-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/3-avalanche-v2-market/reward.avalanche-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/0-v2-markets/3-avalanche-v2-market/swap.avalanche-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/0-v2-markets/3-avalanche-v2-market/swap.avalanche-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/0-ethereum-v3-market/0-assets/dai.ethereum-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/0-ethereum-v3-market/0-assets/dai.ethereum-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/0-ethereum-v3-market/0-assets/eth.ethereum-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/0-ethereum-v3-market/0-assets/eth.ethereum-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/0-ethereum-v3-market/0-assets/link.ethereum-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/0-ethereum-v3-market/0-assets/link.ethereum-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/0-ethereum-v3-market/0-assets/usdc.ethereum-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/0-ethereum-v3-market/0-assets/usdc.ethereum-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/0-ethereum-v3-market/0-assets/wbtc.ethereum-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/0-ethereum-v3-market/0-assets/wbtc.ethereum-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/0-ethereum-v3-market/e-mode.ethereum-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/0-ethereum-v3-market/e-mode.ethereum-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/0-ethereum-v3-market/swap.ethereum-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/0-ethereum-v3-market/swap.ethereum-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/1-arbitrum-v3-market/0-assets/dai.arbitrum-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/1-arbitrum-v3-market/0-assets/dai.arbitrum-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/1-arbitrum-v3-market/0-assets/eth.arbitrum-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/1-arbitrum-v3-market/0-assets/eth.arbitrum-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/1-arbitrum-v3-market/0-assets/link.arbitrum-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/1-arbitrum-v3-market/0-assets/link.arbitrum-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/1-arbitrum-v3-market/0-assets/usdc.arbitrum-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/1-arbitrum-v3-market/0-assets/usdc.arbitrum-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/1-arbitrum-v3-market/0-assets/usdt.arbitrum-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/1-arbitrum-v3-market/0-assets/usdt.arbitrum-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/1-arbitrum-v3-market/0-assets/wbtc.arbitrum-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/1-arbitrum-v3-market/0-assets/wbtc.arbitrum-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/1-arbitrum-v3-market/e-mode.arbitrum-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/1-arbitrum-v3-market/e-mode.arbitrum-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/2-avalanche-v3-market/0-assets/dai.avalanche-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/2-avalanche-v3-market/0-assets/dai.avalanche-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/2-avalanche-v3-market/e-mode.avalanche-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/2-avalanche-v3-market/e-mode.avalanche-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/2-avalanche-v3-market/reward.avalanche-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/2-avalanche-v3-market/reward.avalanche-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/2-avalanche-v3-market/swap.avalanche-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/2-avalanche-v3-market/swap.avalanche-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/3-polygon-v3-market/0-assets/dai.polygon-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/3-polygon-v3-market/0-assets/dai.polygon-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/3-polygon-v3-market/0-assets/eurs.polygon-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/3-polygon-v3-market/0-assets/eurs.polygon-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/3-polygon-v3-market/0-assets/link.polygon-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/3-polygon-v3-market/0-assets/link.polygon-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/3-polygon-v3-market/0-assets/usdc.polygon-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/3-polygon-v3-market/0-assets/usdc.polygon-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/3-polygon-v3-market/0-assets/usdt.polygon-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/3-polygon-v3-market/0-assets/usdt.polygon-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/3-polygon-v3-market/0-assets/wbtc.polygon-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/3-polygon-v3-market/0-assets/wbtc.polygon-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/3-polygon-v3-market/0-assets/weth.polygon-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/3-polygon-v3-market/0-assets/weth.polygon-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/3-polygon-v3-market/e-mode.polygon-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/3-polygon-v3-market/e-mode.polygon-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/3-polygon-v3-market/isolated-mode.polygon-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/3-polygon-v3-market/isolated-mode.polygon-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/3-polygon-v3-market/swap.polygon-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/3-polygon-v3-market/swap.polygon-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/4-optimism-v3-market/e-mode.optimism-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/4-optimism-v3-market/e-mode.optimism-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/5-fantom-v3-market/0-assets/dai.fantom-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/5-fantom-v3-market/0-assets/dai.fantom-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/5-fantom-v3-market/0-assets/ftm.fantom-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/5-fantom-v3-market/0-assets/ftm.fantom-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/5-fantom-v3-market/0-assets/link.fantom-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/5-fantom-v3-market/0-assets/link.fantom-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/5-fantom-v3-market/0-assets/usdc.fantom-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/5-fantom-v3-market/0-assets/usdc.fantom-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/5-fantom-v3-market/0-assets/usdt.fantom-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/5-fantom-v3-market/0-assets/usdt.fantom-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/5-fantom-v3-market/0-assets/wbtc.fantom-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/5-fantom-v3-market/0-assets/wbtc.fantom-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/5-fantom-v3-market/0-assets/weth.fantom-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/5-fantom-v3-market/0-assets/weth.fantom-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/5-fantom-v3-market/e-mode.fantom-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/5-fantom-v3-market/e-mode.fantom-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/5-fantom-v3-market/isolated-mode.fantom-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/5-fantom-v3-market/isolated-mode.fantom-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/1-v3-markets/5-fantom-v3-market/swap.fantom-v3.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/1-v3-markets/5-fantom-v3-market/swap.fantom-v3.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/2-settings/change-languages.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/2-settings/change-languages.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/2-settings/details.page.aave-v2.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/2-settings/details.page.aave-v2.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/2-settings/mobile.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/2-settings/mobile.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/2-settings/stake-abpt.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/2-settings/stake-abpt.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/2-settings/switch-market.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/2-settings/switch-market.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/2-settings/switch-tabs.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/2-settings/switch-tabs.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/2-settings/wallet-connect.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/e2e/2-settings/wallet-connect.cy.ts -------------------------------------------------------------------------------- /cypress/fixtures/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/fixtures/assets.json -------------------------------------------------------------------------------- /cypress/fixtures/constans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/fixtures/constans.json -------------------------------------------------------------------------------- /cypress/fixtures/erc20_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/fixtures/erc20_abi.json -------------------------------------------------------------------------------- /cypress/fixtures/markets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/fixtures/markets.json -------------------------------------------------------------------------------- /cypress/fixtures/poolConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/fixtures/poolConfig.json -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- 1 | import './commands'; 2 | -------------------------------------------------------------------------------- /cypress/support/steps/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/support/steps/common.ts -------------------------------------------------------------------------------- /cypress/support/steps/configuration.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/support/steps/configuration.steps.ts -------------------------------------------------------------------------------- /cypress/support/steps/main.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/support/steps/main.steps.ts -------------------------------------------------------------------------------- /cypress/support/steps/verification.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/support/steps/verification.steps.ts -------------------------------------------------------------------------------- /cypress/support/tools/bridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/support/tools/bridge.ts -------------------------------------------------------------------------------- /cypress/support/tools/math.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/support/tools/math.util.ts -------------------------------------------------------------------------------- /cypress/support/tools/tenderly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/support/tools/tenderly.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'eth-provider'; 2 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/jest.setup.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/404.page.tsx -------------------------------------------------------------------------------- /pages/500.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/500.page.tsx -------------------------------------------------------------------------------- /pages/_app.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/_app.page.tsx -------------------------------------------------------------------------------- /pages/_document.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/_document.page.tsx -------------------------------------------------------------------------------- /pages/_error.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/_error.page.tsx -------------------------------------------------------------------------------- /pages/faucet.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/faucet.page.tsx -------------------------------------------------------------------------------- /pages/governance/index.governance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/governance/index.governance.tsx -------------------------------------------------------------------------------- /pages/governance/ipfs-preview.governance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/governance/ipfs-preview.governance.tsx -------------------------------------------------------------------------------- /pages/governance/proposal/[proposalId].governance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/governance/proposal/[proposalId].governance.tsx -------------------------------------------------------------------------------- /pages/governance/proposal/index.governance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/governance/proposal/index.governance.tsx -------------------------------------------------------------------------------- /pages/index.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/index.page.tsx -------------------------------------------------------------------------------- /pages/markets.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/markets.page.tsx -------------------------------------------------------------------------------- /pages/reserve-overview.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/reserve-overview.page.tsx -------------------------------------------------------------------------------- /pages/sdai.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/sdai.page.tsx -------------------------------------------------------------------------------- /pages/staking.staking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/staking.staking.tsx -------------------------------------------------------------------------------- /pages/v3-migration.page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/pages/v3-migration.page.tsx -------------------------------------------------------------------------------- /public/404/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/404/404.svg -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/backgroundMain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/backgroundMain.jpg -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-Black.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-Bold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-Italic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-Italic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-Light.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-Light.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-LightItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-Medium.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-Regular.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-SemiBold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-Thin.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-Thin.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/Inter.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/inter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fonts/inter/inter.css -------------------------------------------------------------------------------- /public/fork-config-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/fork-config-example.png -------------------------------------------------------------------------------- /public/icons/bridge/arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/bridge/arbitrum.svg -------------------------------------------------------------------------------- /public/icons/bridge/avalanche.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/bridge/avalanche.svg -------------------------------------------------------------------------------- /public/icons/bridge/fantom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/bridge/fantom.svg -------------------------------------------------------------------------------- /public/icons/bridge/gnosis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/bridge/gnosis.svg -------------------------------------------------------------------------------- /public/icons/bridge/harmony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/bridge/harmony.svg -------------------------------------------------------------------------------- /public/icons/bridge/optimism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/bridge/optimism.svg -------------------------------------------------------------------------------- /public/icons/bridge/polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/bridge/polygon.svg -------------------------------------------------------------------------------- /public/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/discord.svg -------------------------------------------------------------------------------- /public/icons/flags/cn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/flags/cn.svg -------------------------------------------------------------------------------- /public/icons/flags/el.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/flags/el.svg -------------------------------------------------------------------------------- /public/icons/flags/en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/flags/en.svg -------------------------------------------------------------------------------- /public/icons/flags/es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/flags/es.svg -------------------------------------------------------------------------------- /public/icons/flags/fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/flags/fr.svg -------------------------------------------------------------------------------- /public/icons/flags/it.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/flags/it.svg -------------------------------------------------------------------------------- /public/icons/flags/jp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/flags/jp.svg -------------------------------------------------------------------------------- /public/icons/flags/kr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/flags/kr.svg -------------------------------------------------------------------------------- /public/icons/flags/pr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/flags/pr.svg -------------------------------------------------------------------------------- /public/icons/flags/tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/flags/tr.svg -------------------------------------------------------------------------------- /public/icons/flags/vt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/flags/vt.svg -------------------------------------------------------------------------------- /public/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/github.svg -------------------------------------------------------------------------------- /public/icons/healthFactor/HAL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/healthFactor/HAL.svg -------------------------------------------------------------------------------- /public/icons/healthFactor/HALHover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/healthFactor/HALHover.svg -------------------------------------------------------------------------------- /public/icons/healthFactor/hfEmpty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/healthFactor/hfEmpty.svg -------------------------------------------------------------------------------- /public/icons/healthFactor/hfFull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/healthFactor/hfFull.svg -------------------------------------------------------------------------------- /public/icons/healthFactor/hfLow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/healthFactor/hfLow.svg -------------------------------------------------------------------------------- /public/icons/healthFactor/hfMiddle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/healthFactor/hfMiddle.svg -------------------------------------------------------------------------------- /public/icons/markets/claim-gift-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/markets/claim-gift-icon.svg -------------------------------------------------------------------------------- /public/icons/markets/cube-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/markets/cube-icon.svg -------------------------------------------------------------------------------- /public/icons/markets/dollar-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/markets/dollar-icon.svg -------------------------------------------------------------------------------- /public/icons/markets/empty-heart-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/markets/empty-heart-icon.svg -------------------------------------------------------------------------------- /public/icons/markets/net-apy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/markets/net-apy-icon.svg -------------------------------------------------------------------------------- /public/icons/markets/pie-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/markets/pie-icon.svg -------------------------------------------------------------------------------- /public/icons/markets/total-borrow-indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/markets/total-borrow-indicator.svg -------------------------------------------------------------------------------- /public/icons/markets/total-supply-indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/markets/total-supply-indicator.svg -------------------------------------------------------------------------------- /public/icons/markets/uptrend-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/markets/uptrend-icon.svg -------------------------------------------------------------------------------- /public/icons/markets/wallet-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/markets/wallet-icon.svg -------------------------------------------------------------------------------- /public/icons/networks/arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/networks/arbitrum.svg -------------------------------------------------------------------------------- /public/icons/networks/avalanche.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/networks/avalanche.svg -------------------------------------------------------------------------------- /public/icons/networks/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/networks/ethereum.svg -------------------------------------------------------------------------------- /public/icons/networks/fantom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/networks/fantom.svg -------------------------------------------------------------------------------- /public/icons/networks/gnosis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/networks/gnosis.png -------------------------------------------------------------------------------- /public/icons/networks/harmony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/networks/harmony.svg -------------------------------------------------------------------------------- /public/icons/networks/optimism.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/networks/optimism.svg -------------------------------------------------------------------------------- /public/icons/networks/polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/networks/polygon.svg -------------------------------------------------------------------------------- /public/icons/onRampServices/transak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/onRampServices/transak.svg -------------------------------------------------------------------------------- /public/icons/other/paraswap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/other/paraswap.svg -------------------------------------------------------------------------------- /public/icons/staking/emission-staking-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/staking/emission-staking-icon.svg -------------------------------------------------------------------------------- /public/icons/staking/trust-staking-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/staking/trust-staking-icon.svg -------------------------------------------------------------------------------- /public/icons/tokens/1inch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/1inch.svg -------------------------------------------------------------------------------- /public/icons/tokens/aave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/aave.svg -------------------------------------------------------------------------------- /public/icons/tokens/ageur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/ageur.svg -------------------------------------------------------------------------------- /public/icons/tokens/ampl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/ampl.svg -------------------------------------------------------------------------------- /public/icons/tokens/avax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/avax.svg -------------------------------------------------------------------------------- /public/icons/tokens/bal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/bal.svg -------------------------------------------------------------------------------- /public/icons/tokens/bat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/bat.svg -------------------------------------------------------------------------------- /public/icons/tokens/bpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/bpt.svg -------------------------------------------------------------------------------- /public/icons/tokens/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/btc.svg -------------------------------------------------------------------------------- /public/icons/tokens/busd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/busd.svg -------------------------------------------------------------------------------- /public/icons/tokens/cbeth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/cbeth.svg -------------------------------------------------------------------------------- /public/icons/tokens/crv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/crv.svg -------------------------------------------------------------------------------- /public/icons/tokens/cvx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/cvx.svg -------------------------------------------------------------------------------- /public/icons/tokens/dai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/dai.svg -------------------------------------------------------------------------------- /public/icons/tokens/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/default.svg -------------------------------------------------------------------------------- /public/icons/tokens/dpi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/dpi.svg -------------------------------------------------------------------------------- /public/icons/tokens/enj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/enj.svg -------------------------------------------------------------------------------- /public/icons/tokens/ens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/ens.svg -------------------------------------------------------------------------------- /public/icons/tokens/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/eth.svg -------------------------------------------------------------------------------- /public/icons/tokens/eure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/eure.svg -------------------------------------------------------------------------------- /public/icons/tokens/eurs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/eurs.svg -------------------------------------------------------------------------------- /public/icons/tokens/fei.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/fei.svg -------------------------------------------------------------------------------- /public/icons/tokens/frax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/frax.svg -------------------------------------------------------------------------------- /public/icons/tokens/ftm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/ftm.svg -------------------------------------------------------------------------------- /public/icons/tokens/ghst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/ghst.svg -------------------------------------------------------------------------------- /public/icons/tokens/gno.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/gno.svg -------------------------------------------------------------------------------- /public/icons/tokens/gusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/gusd.svg -------------------------------------------------------------------------------- /public/icons/tokens/jeur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/jeur.svg -------------------------------------------------------------------------------- /public/icons/tokens/knc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/knc.svg -------------------------------------------------------------------------------- /public/icons/tokens/lend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/lend.svg -------------------------------------------------------------------------------- /public/icons/tokens/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/link.svg -------------------------------------------------------------------------------- /public/icons/tokens/lusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/lusd.svg -------------------------------------------------------------------------------- /public/icons/tokens/mai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/mai.svg -------------------------------------------------------------------------------- /public/icons/tokens/mana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/mana.svg -------------------------------------------------------------------------------- /public/icons/tokens/matic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/matic.svg -------------------------------------------------------------------------------- /public/icons/tokens/maticx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/maticx.svg -------------------------------------------------------------------------------- /public/icons/tokens/mkr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/mkr.svg -------------------------------------------------------------------------------- /public/icons/tokens/one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/one.svg -------------------------------------------------------------------------------- /public/icons/tokens/op.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/op.svg -------------------------------------------------------------------------------- /public/icons/tokens/pax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/pax.svg -------------------------------------------------------------------------------- /public/icons/tokens/pools/bpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/pools/bpt.svg -------------------------------------------------------------------------------- /public/icons/tokens/pools/guni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/pools/guni.svg -------------------------------------------------------------------------------- /public/icons/tokens/pools/uni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/pools/uni.svg -------------------------------------------------------------------------------- /public/icons/tokens/rai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/rai.svg -------------------------------------------------------------------------------- /public/icons/tokens/ren.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/ren.svg -------------------------------------------------------------------------------- /public/icons/tokens/renfil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/renfil.svg -------------------------------------------------------------------------------- /public/icons/tokens/rep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/rep.svg -------------------------------------------------------------------------------- /public/icons/tokens/reth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/reth.svg -------------------------------------------------------------------------------- /public/icons/tokens/savax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/savax.svg -------------------------------------------------------------------------------- /public/icons/tokens/sd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/sd.svg -------------------------------------------------------------------------------- /public/icons/tokens/sdai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/sdai.svg -------------------------------------------------------------------------------- /public/icons/tokens/seth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/seth.svg -------------------------------------------------------------------------------- /public/icons/tokens/snx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/snx.svg -------------------------------------------------------------------------------- /public/icons/tokens/steth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/steth.svg -------------------------------------------------------------------------------- /public/icons/tokens/stkaave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/stkaave.svg -------------------------------------------------------------------------------- /public/icons/tokens/stkbpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/stkbpt.svg -------------------------------------------------------------------------------- /public/icons/tokens/stmatic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/stmatic.svg -------------------------------------------------------------------------------- /public/icons/tokens/susd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/susd.svg -------------------------------------------------------------------------------- /public/icons/tokens/sushi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/sushi.svg -------------------------------------------------------------------------------- /public/icons/tokens/tribe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/tribe.svg -------------------------------------------------------------------------------- /public/icons/tokens/tusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/tusd.svg -------------------------------------------------------------------------------- /public/icons/tokens/uni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/uni.svg -------------------------------------------------------------------------------- /public/icons/tokens/usdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/usdc.svg -------------------------------------------------------------------------------- /public/icons/tokens/usdp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/usdp.svg -------------------------------------------------------------------------------- /public/icons/tokens/usdt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/usdt.svg -------------------------------------------------------------------------------- /public/icons/tokens/ust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/ust.svg -------------------------------------------------------------------------------- /public/icons/tokens/wavax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/wavax.svg -------------------------------------------------------------------------------- /public/icons/tokens/wbtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/wbtc.svg -------------------------------------------------------------------------------- /public/icons/tokens/weeth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/weeth.svg -------------------------------------------------------------------------------- /public/icons/tokens/weth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/weth.svg -------------------------------------------------------------------------------- /public/icons/tokens/wftm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/wftm.svg -------------------------------------------------------------------------------- /public/icons/tokens/wmatic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/wmatic.svg -------------------------------------------------------------------------------- /public/icons/tokens/wone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/wone.svg -------------------------------------------------------------------------------- /public/icons/tokens/wsteth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/wsteth.svg -------------------------------------------------------------------------------- /public/icons/tokens/wxdai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/wxdai.svg -------------------------------------------------------------------------------- /public/icons/tokens/xdai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/xdai.svg -------------------------------------------------------------------------------- /public/icons/tokens/xsushi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/xsushi.svg -------------------------------------------------------------------------------- /public/icons/tokens/yfi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/yfi.svg -------------------------------------------------------------------------------- /public/icons/tokens/zrx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/tokens/zrx.svg -------------------------------------------------------------------------------- /public/icons/wallets/browserWallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/wallets/browserWallet.svg -------------------------------------------------------------------------------- /public/icons/wallets/coinbase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/wallets/coinbase.svg -------------------------------------------------------------------------------- /public/icons/wallets/frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/wallets/frame.svg -------------------------------------------------------------------------------- /public/icons/wallets/torus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/wallets/torus.svg -------------------------------------------------------------------------------- /public/icons/wallets/walletConnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/icons/wallets/walletConnect.svg -------------------------------------------------------------------------------- /public/lightningBoltGradient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/lightningBoltGradient.svg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/sparkLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/sparkLogo.svg -------------------------------------------------------------------------------- /public/sparkMetaLogo-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/sparkMetaLogo-min.jpg -------------------------------------------------------------------------------- /public/walletConnectLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/walletConnectLogo.svg -------------------------------------------------------------------------------- /public/walletConnectLogoDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/public/walletConnectLogoDark.svg -------------------------------------------------------------------------------- /src/components/AddressBlocked.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/AddressBlocked.tsx -------------------------------------------------------------------------------- /src/components/AddressBlockedModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/AddressBlockedModal.tsx -------------------------------------------------------------------------------- /src/components/BlockVPN.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/BlockVPN.tsx -------------------------------------------------------------------------------- /src/components/BridgeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/BridgeButton.tsx -------------------------------------------------------------------------------- /src/components/ChainAvailabilityText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/ChainAvailabilityText.tsx -------------------------------------------------------------------------------- /src/components/CircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/CircleIcon.tsx -------------------------------------------------------------------------------- /src/components/ConnectWalletPaper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/ConnectWalletPaper.tsx -------------------------------------------------------------------------------- /src/components/ConnectWalletPaperStaking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/ConnectWalletPaperStaking.tsx -------------------------------------------------------------------------------- /src/components/ContentContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/ContentContainer.tsx -------------------------------------------------------------------------------- /src/components/ContentWithTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/ContentWithTooltip.tsx -------------------------------------------------------------------------------- /src/components/FaucetButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/FaucetButton.tsx -------------------------------------------------------------------------------- /src/components/HALLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/HALLink.tsx -------------------------------------------------------------------------------- /src/components/HealthFactorNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/HealthFactorNumber.tsx -------------------------------------------------------------------------------- /src/components/MarketSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/MarketSwitcher.tsx -------------------------------------------------------------------------------- /src/components/Meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/Meta.tsx -------------------------------------------------------------------------------- /src/components/NoSearchResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/NoSearchResults.tsx -------------------------------------------------------------------------------- /src/components/ReserveOverviewBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/ReserveOverviewBox.tsx -------------------------------------------------------------------------------- /src/components/ReserveSubheader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/ReserveSubheader.tsx -------------------------------------------------------------------------------- /src/components/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/SearchInput.tsx -------------------------------------------------------------------------------- /src/components/StyledToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/StyledToggleButton.tsx -------------------------------------------------------------------------------- /src/components/StyledToggleButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/StyledToggleButtonGroup.tsx -------------------------------------------------------------------------------- /src/components/TextWithModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/TextWithModal.tsx -------------------------------------------------------------------------------- /src/components/TextWithTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/TextWithTooltip.tsx -------------------------------------------------------------------------------- /src/components/TitleWithSearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/TitleWithSearchBar.tsx -------------------------------------------------------------------------------- /src/components/TopInfoPanel/PageTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/TopInfoPanel/PageTitle.tsx -------------------------------------------------------------------------------- /src/components/TopInfoPanel/TopInfoPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/TopInfoPanel/TopInfoPanel.tsx -------------------------------------------------------------------------------- /src/components/TopInfoPanel/TopInfoPanelItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/TopInfoPanel/TopInfoPanelItem.tsx -------------------------------------------------------------------------------- /src/components/WalletConnection/ConnectWalletButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/WalletConnection/ConnectWalletButton.tsx -------------------------------------------------------------------------------- /src/components/WalletConnection/WalletModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/WalletConnection/WalletModal.tsx -------------------------------------------------------------------------------- /src/components/WalletConnection/WalletSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/WalletConnection/WalletSelector.tsx -------------------------------------------------------------------------------- /src/components/Warnings/AMPLWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/Warnings/AMPLWarning.tsx -------------------------------------------------------------------------------- /src/components/Warnings/BorrowDisabledWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/Warnings/BorrowDisabledWarning.tsx -------------------------------------------------------------------------------- /src/components/Warnings/CooldownWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/Warnings/CooldownWarning.tsx -------------------------------------------------------------------------------- /src/components/caps/CapsCircularStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/caps/CapsCircularStatus.tsx -------------------------------------------------------------------------------- /src/components/caps/CapsHint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/caps/CapsHint.tsx -------------------------------------------------------------------------------- /src/components/caps/CapsTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/caps/CapsTooltip.tsx -------------------------------------------------------------------------------- /src/components/caps/DebtCeilingStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/caps/DebtCeilingStatus.tsx -------------------------------------------------------------------------------- /src/components/caps/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/caps/helper.ts -------------------------------------------------------------------------------- /src/components/icons/WalletIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/icons/WalletIcon.tsx -------------------------------------------------------------------------------- /src/components/incentives/IncentivesButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/incentives/IncentivesButton.tsx -------------------------------------------------------------------------------- /src/components/incentives/IncentivesCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/incentives/IncentivesCard.tsx -------------------------------------------------------------------------------- /src/components/incentives/IncentivesTooltipContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/incentives/IncentivesTooltipContent.tsx -------------------------------------------------------------------------------- /src/components/infoModalContents/InfoContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoModalContents/InfoContentWrapper.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/AMPLToolTip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/AMPLToolTip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/APYTypeTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/APYTypeTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/ApprovalTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/ApprovalTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/AvailableTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/AvailableTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/BorrowCapMaxedTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/BorrowCapMaxedTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/BorrowDisabledToolTip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/BorrowDisabledToolTip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/BorrowPowerTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/BorrowPowerTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/CollateralSwitchTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/CollateralSwitchTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/CollateralTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/CollateralTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/DarkTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/DarkTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/DebtCeilingMaxedTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/DebtCeilingMaxedTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/EModeTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/EModeTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/FrozenTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/FrozenTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/GasTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/GasTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/LiquidationPenaltyTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/LiquidationPenaltyTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/LiquidationThresholdTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/LiquidationThresholdTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/MaxLTVTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/MaxLTVTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/MigrationDisabledTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/MigrationDisabledTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/NetAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/NetAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/PredictableAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/PredictableAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/PriceImpactTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/PriceImpactTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/ReadOnlyModeTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/ReadOnlyModeTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/RenFILToolTip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/RenFILToolTip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/ReserveFactorTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/ReserveFactorTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/SlippageTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/SlippageTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/StableAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/StableAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/SupplyCapMaxedTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/SupplyCapMaxedTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/TotalBorrowAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/TotalBorrowAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/TotalSupplyAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/TotalSupplyAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/infoTooltips/VariableAPYTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/infoTooltips/VariableAPYTooltip.tsx -------------------------------------------------------------------------------- /src/components/isolationMode/IsolatedBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/isolationMode/IsolatedBadge.tsx -------------------------------------------------------------------------------- /src/components/isolationMode/IsolatedTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/isolationMode/IsolatedTooltip.tsx -------------------------------------------------------------------------------- /src/components/lists/ListColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/lists/ListColumn.tsx -------------------------------------------------------------------------------- /src/components/lists/ListHeaderTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/lists/ListHeaderTitle.tsx -------------------------------------------------------------------------------- /src/components/lists/ListHeaderWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/lists/ListHeaderWrapper.tsx -------------------------------------------------------------------------------- /src/components/lists/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/lists/ListItem.tsx -------------------------------------------------------------------------------- /src/components/lists/ListMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/lists/ListMobileItem.tsx -------------------------------------------------------------------------------- /src/components/lists/ListWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/lists/ListWrapper.tsx -------------------------------------------------------------------------------- /src/components/primitives/BasicModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/primitives/BasicModal.tsx -------------------------------------------------------------------------------- /src/components/primitives/CheckBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/primitives/CheckBadge.tsx -------------------------------------------------------------------------------- /src/components/primitives/FormattedNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/primitives/FormattedNumber.tsx -------------------------------------------------------------------------------- /src/components/primitives/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/primitives/Link.tsx -------------------------------------------------------------------------------- /src/components/primitives/NoData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/primitives/NoData.tsx -------------------------------------------------------------------------------- /src/components/primitives/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/primitives/Row.tsx -------------------------------------------------------------------------------- /src/components/primitives/TokenIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/primitives/TokenIcon.tsx -------------------------------------------------------------------------------- /src/components/primitives/TypographyGradient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/primitives/TypographyGradient.tsx -------------------------------------------------------------------------------- /src/components/primitives/Warning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/primitives/Warning.tsx -------------------------------------------------------------------------------- /src/components/transactions/AssetInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/AssetInput.tsx -------------------------------------------------------------------------------- /src/components/transactions/Borrow/BorrowActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Borrow/BorrowActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Borrow/BorrowModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Borrow/BorrowModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Borrow/BorrowModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Borrow/BorrowModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/ClaimRewards/ClaimRewardsActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/ClaimRewards/ClaimRewardsActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/ClaimRewards/ClaimRewardsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/ClaimRewards/ClaimRewardsModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/ClaimRewards/ClaimRewardsModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/ClaimRewards/ClaimRewardsModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/ClaimRewards/RewardsSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/ClaimRewards/RewardsSelect.tsx -------------------------------------------------------------------------------- /src/components/transactions/CollateralChange/CollateralChangeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/CollateralChange/CollateralChangeActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/CollateralChange/CollateralChangeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/CollateralChange/CollateralChangeModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Emode/EmodeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Emode/EmodeActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Emode/EmodeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Emode/EmodeModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Emode/EmodeModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Emode/EmodeModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Emode/EmodeNaming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Emode/EmodeNaming.ts -------------------------------------------------------------------------------- /src/components/transactions/Emode/EmodeSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Emode/EmodeSelect.tsx -------------------------------------------------------------------------------- /src/components/transactions/Faucet/CaptchaFaucetModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Faucet/CaptchaFaucetModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Faucet/FaucetActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Faucet/FaucetActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Faucet/FaucetModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Faucet/FaucetModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Faucet/FaucetModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Faucet/FaucetModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Faucet/Turnstile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Faucet/Turnstile.tsx -------------------------------------------------------------------------------- /src/components/transactions/Faucet/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Faucet/utils.ts -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/ApprovalMethodToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/FlowCommons/ApprovalMethodToggleButton.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/FlowCommons/Error.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/GasEstimationError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/FlowCommons/GasEstimationError.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/ModalWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/FlowCommons/ModalWrapper.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/PermissionView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/FlowCommons/PermissionView.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/RightHelperText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/FlowCommons/RightHelperText.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/Success.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/FlowCommons/Success.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/TxModalDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/FlowCommons/TxModalDetails.tsx -------------------------------------------------------------------------------- /src/components/transactions/FlowCommons/TxModalTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/FlowCommons/TxModalTitle.tsx -------------------------------------------------------------------------------- /src/components/transactions/GasStation/GasButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/GasStation/GasButton.tsx -------------------------------------------------------------------------------- /src/components/transactions/GasStation/GasStation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/GasStation/GasStation.tsx -------------------------------------------------------------------------------- /src/components/transactions/GasStation/GasStationProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/GasStation/GasStationProvider.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovDelegation/DelegationTokenSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/GovDelegation/DelegationTokenSelector.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovDelegation/DelegationTypeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/GovDelegation/DelegationTypeSelector.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovDelegation/GovDelegationActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/GovDelegation/GovDelegationActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovDelegation/GovDelegationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/GovDelegation/GovDelegationModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovDelegation/GovDelegationModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/GovDelegation/GovDelegationModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovVote/GovVoteActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/GovVote/GovVoteActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovVote/GovVoteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/GovVote/GovVoteModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/GovVote/GovVoteModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/GovVote/GovVoteModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/MigrateV3/MigrateV3Actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/MigrateV3/MigrateV3Actions.tsx -------------------------------------------------------------------------------- /src/components/transactions/MigrateV3/MigrateV3Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/MigrateV3/MigrateV3Modal.tsx -------------------------------------------------------------------------------- /src/components/transactions/MigrateV3/MigrateV3ModalAssetsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/MigrateV3/MigrateV3ModalAssetsList.tsx -------------------------------------------------------------------------------- /src/components/transactions/MigrateV3/MigrateV3ModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/MigrateV3/MigrateV3ModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/PSMSwap/PSMSwapActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/PSMSwap/PSMSwapActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/PSMSwap/PSMSwapModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/PSMSwap/PSMSwapModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/PSMSwap/PSMSwapModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/PSMSwap/PSMSwapModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/PSMSwap/YieldForecast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/PSMSwap/YieldForecast.tsx -------------------------------------------------------------------------------- /src/components/transactions/RateSwitch/RateSwitchActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/RateSwitch/RateSwitchActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/RateSwitch/RateSwitchModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/RateSwitch/RateSwitchModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/RateSwitch/RateSwitchModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/RateSwitch/RateSwitchModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Repay/CollateralRepayActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Repay/CollateralRepayActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Repay/CollateralRepayModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Repay/CollateralRepayModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Repay/RepayActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Repay/RepayActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Repay/RepayModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Repay/RepayModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Repay/RepayModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Repay/RepayModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Repay/RepayTypeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Repay/RepayTypeSelector.tsx -------------------------------------------------------------------------------- /src/components/transactions/Stake/StakeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Stake/StakeActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Stake/StakeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Stake/StakeModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Stake/StakeModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Stake/StakeModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/StakeCooldown/StakeCooldownActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/StakeCooldown/StakeCooldownActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/StakeCooldown/StakeCooldownModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/StakeCooldown/StakeCooldownModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/StakeCooldown/StakeCooldownModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/StakeCooldown/StakeCooldownModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/StakeRewardClaim/StakeRewardClaimActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/StakeRewardClaim/StakeRewardClaimActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/StakeRewardClaim/StakeRewardClaimModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/StakeRewardClaim/StakeRewardClaimModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Supply/SupplyActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Supply/SupplyActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Supply/SupplyModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Supply/SupplyModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Supply/SupplyModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Supply/SupplyModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Swap/SwapActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Swap/SwapActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Swap/SwapModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Swap/SwapModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Swap/SwapModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Swap/SwapModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Swap/SwapModalDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Swap/SwapModalDetails.tsx -------------------------------------------------------------------------------- /src/components/transactions/TxActionsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/TxActionsWrapper.tsx -------------------------------------------------------------------------------- /src/components/transactions/UnStake/UnStakeActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/UnStake/UnStakeActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/UnStake/UnStakeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/UnStake/UnStakeModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/UnStake/UnStakeModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/UnStake/UnStakeModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/AAVEWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Warnings/AAVEWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/BorrowCapWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Warnings/BorrowCapWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/ChangeNetworkWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Warnings/ChangeNetworkWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/DebtCeilingWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Warnings/DebtCeilingWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/IsolationModeWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Warnings/IsolationModeWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/MarketWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Warnings/MarketWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/ParaswapErrorDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Warnings/ParaswapErrorDisplay.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/SNXWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Warnings/SNXWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Warnings/SupplyCapWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Warnings/SupplyCapWarning.tsx -------------------------------------------------------------------------------- /src/components/transactions/Withdraw/WithdrawActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Withdraw/WithdrawActions.tsx -------------------------------------------------------------------------------- /src/components/transactions/Withdraw/WithdrawModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Withdraw/WithdrawModal.tsx -------------------------------------------------------------------------------- /src/components/transactions/Withdraw/WithdrawModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/Withdraw/WithdrawModalContent.tsx -------------------------------------------------------------------------------- /src/components/transactions/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/components/transactions/utils.ts -------------------------------------------------------------------------------- /src/createEmotionCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/createEmotionCache.ts -------------------------------------------------------------------------------- /src/helpers/text-center-ellipsis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/helpers/text-center-ellipsis.ts -------------------------------------------------------------------------------- /src/helpers/timeHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/helpers/timeHelper.tsx -------------------------------------------------------------------------------- /src/helpers/toggle-local-storage-click.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/helpers/toggle-local-storage-click.ts -------------------------------------------------------------------------------- /src/helpers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/helpers/types.ts -------------------------------------------------------------------------------- /src/helpers/useParaSwapTransactionHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/helpers/useParaSwapTransactionHandler.tsx -------------------------------------------------------------------------------- /src/helpers/useTransactionHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/helpers/useTransactionHandler.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/BackgroundDataProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/app-data-provider/BackgroundDataProvider.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/useAppDataProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/app-data-provider/useAppDataProvider.tsx -------------------------------------------------------------------------------- /src/hooks/app-data-provider/useWalletBalances.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/app-data-provider/useWalletBalances.tsx -------------------------------------------------------------------------------- /src/hooks/governance-data-provider/AaveTokensDataProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/governance-data-provider/AaveTokensDataProvider.tsx -------------------------------------------------------------------------------- /src/hooks/governance-data-provider/GovernanceDataProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/governance-data-provider/GovernanceDataProvider.tsx -------------------------------------------------------------------------------- /src/hooks/governance-data-provider/useVotingPower.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/governance-data-provider/useVotingPower.tsx -------------------------------------------------------------------------------- /src/hooks/paraswap/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/paraswap/common.ts -------------------------------------------------------------------------------- /src/hooks/paraswap/useCollateralRepaySwap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/paraswap/useCollateralRepaySwap.tsx -------------------------------------------------------------------------------- /src/hooks/paraswap/useCollateralSwap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/paraswap/useCollateralSwap.tsx -------------------------------------------------------------------------------- /src/hooks/useAddressAllowed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/useAddressAllowed.tsx -------------------------------------------------------------------------------- /src/hooks/useAssetCaps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/useAssetCaps.tsx -------------------------------------------------------------------------------- /src/hooks/useCryptoBuyAvailable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/useCryptoBuyAvailable.tsx -------------------------------------------------------------------------------- /src/hooks/useCurrentTimestamp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/useCurrentTimestamp.tsx -------------------------------------------------------------------------------- /src/hooks/useGasStation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/useGasStation.tsx -------------------------------------------------------------------------------- /src/hooks/useGetGasPrices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/useGetGasPrices.tsx -------------------------------------------------------------------------------- /src/hooks/useIsWrongNetwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/useIsWrongNetwork.tsx -------------------------------------------------------------------------------- /src/hooks/useModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/useModal.tsx -------------------------------------------------------------------------------- /src/hooks/usePermissions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/usePermissions.tsx -------------------------------------------------------------------------------- /src/hooks/usePolling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/usePolling.tsx -------------------------------------------------------------------------------- /src/hooks/usePreviousState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/usePreviousState.ts -------------------------------------------------------------------------------- /src/hooks/useProtocolDataContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/useProtocolDataContext.tsx -------------------------------------------------------------------------------- /src/hooks/useReserveActionState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/useReserveActionState.tsx -------------------------------------------------------------------------------- /src/hooks/useReservesHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/useReservesHistory.tsx -------------------------------------------------------------------------------- /src/hooks/useShouldShowAirdropInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/useShouldShowAirdropInfo.ts -------------------------------------------------------------------------------- /src/hooks/useUserReserves.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/useUserReserves.tsx -------------------------------------------------------------------------------- /src/hooks/useWalletModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/hooks/useWalletModal.tsx -------------------------------------------------------------------------------- /src/layouts/AppGlobalStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/layouts/AppGlobalStyles.tsx -------------------------------------------------------------------------------- /src/layouts/AppHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/layouts/AppHeader.tsx -------------------------------------------------------------------------------- /src/layouts/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/layouts/MainLayout.tsx -------------------------------------------------------------------------------- /src/layouts/MobileMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/layouts/MobileMenu.tsx -------------------------------------------------------------------------------- /src/layouts/MoreMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/layouts/MoreMenu.tsx -------------------------------------------------------------------------------- /src/layouts/SettingsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/layouts/SettingsMenu.tsx -------------------------------------------------------------------------------- /src/layouts/WalletWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/layouts/WalletWidget.tsx -------------------------------------------------------------------------------- /src/layouts/components/DarkModeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/layouts/components/DarkModeSwitcher.tsx -------------------------------------------------------------------------------- /src/layouts/components/DrawerWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/layouts/components/DrawerWrapper.tsx -------------------------------------------------------------------------------- /src/layouts/components/LanguageSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/layouts/components/LanguageSwitcher.tsx -------------------------------------------------------------------------------- /src/layouts/components/MobileCloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/layouts/components/MobileCloseButton.tsx -------------------------------------------------------------------------------- /src/layouts/components/NavItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/layouts/components/NavItems.tsx -------------------------------------------------------------------------------- /src/layouts/components/TestNetModeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/layouts/components/TestNetModeSwitcher.tsx -------------------------------------------------------------------------------- /src/libs/LanguageProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/libs/LanguageProvider.tsx -------------------------------------------------------------------------------- /src/libs/hooks/use-get-ens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/libs/hooks/use-get-ens.tsx -------------------------------------------------------------------------------- /src/libs/hooks/useWeb3Context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/libs/hooks/useWeb3Context.tsx -------------------------------------------------------------------------------- /src/libs/web3-data-provider/WalletConnectConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/libs/web3-data-provider/WalletConnectConnector.ts -------------------------------------------------------------------------------- /src/libs/web3-data-provider/WalletOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/libs/web3-data-provider/WalletOptions.ts -------------------------------------------------------------------------------- /src/libs/web3-data-provider/Web3Provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/libs/web3-data-provider/Web3Provider.tsx -------------------------------------------------------------------------------- /src/locales/de/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/locales/de/messages.po -------------------------------------------------------------------------------- /src/locales/el/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/locales/el/messages.js -------------------------------------------------------------------------------- /src/locales/el/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/locales/el/messages.po -------------------------------------------------------------------------------- /src/locales/en/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/locales/en/messages.js -------------------------------------------------------------------------------- /src/locales/en/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/locales/en/messages.po -------------------------------------------------------------------------------- /src/locales/es/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/locales/es/messages.js -------------------------------------------------------------------------------- /src/locales/es/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/locales/es/messages.po -------------------------------------------------------------------------------- /src/locales/fr/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/locales/fr/messages.js -------------------------------------------------------------------------------- /src/locales/fr/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/locales/fr/messages.po -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardContentNoData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/DashboardContentNoData.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/DashboardContentWrapper.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardEModeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/DashboardEModeButton.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardListTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/DashboardListTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/DashboardTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/DashboardTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsList.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/BorrowAssetsList/BorrowAssetsListMobileItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/BorrowAssetsList/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/BorrowAssetsList/types.ts -------------------------------------------------------------------------------- /src/modules/dashboard/lists/BorrowedPositionsList/BorrowedPositionsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/BorrowedPositionsList/BorrowedPositionsList.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/BorrowedPositionsList/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/BorrowedPositionsList/types.ts -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListAPRColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListAPRColumn.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListBottomText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListBottomText.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListButtonsColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListButtonsColumn.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListHeader.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListItemAPYButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListItemAPYButton.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListItemCanBeCollateral.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListItemCanBeCollateral.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListItemIsolationBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListItemIsolationBadge.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListItemUsedAsCollateral.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListItemUsedAsCollateral.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListItemWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListItemWrapper.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListLoader.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListMobileItemWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListMobileItemWrapper.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListTopInfoItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListTopInfoItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListValueColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListValueColumn.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/ListValueRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/ListValueRow.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/MobileListItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/MobileListItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SlippageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/SlippageList.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/SuppliedPositionsList/SuppliedPositionsList.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsList.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/SupplyAssetsList/SupplyAssetsListMobileItem.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SupplyAssetsList/WalletEmptyInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/SupplyAssetsList/WalletEmptyInfo.tsx -------------------------------------------------------------------------------- /src/modules/dashboard/lists/SupplyAssetsList/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/dashboard/lists/SupplyAssetsList/types.ts -------------------------------------------------------------------------------- /src/modules/faucet/FaucetAssetsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/faucet/FaucetAssetsList.tsx -------------------------------------------------------------------------------- /src/modules/faucet/FaucetItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/faucet/FaucetItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/faucet/FaucetMobileItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/faucet/FaucetMobileItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/faucet/FaucetTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/faucet/FaucetTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/governance/FormattedProposalTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/FormattedProposalTime.tsx -------------------------------------------------------------------------------- /src/modules/governance/GovernanceTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/GovernanceTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/governance/ProposalListHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/ProposalListHeader.tsx -------------------------------------------------------------------------------- /src/modules/governance/ProposalListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/ProposalListItem.tsx -------------------------------------------------------------------------------- /src/modules/governance/ProposalsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/ProposalsList.tsx -------------------------------------------------------------------------------- /src/modules/governance/StateBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/StateBadge.tsx -------------------------------------------------------------------------------- /src/modules/governance/VoteBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/VoteBar.tsx -------------------------------------------------------------------------------- /src/modules/governance/VotingPowerInfoPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/VotingPowerInfoPanel.tsx -------------------------------------------------------------------------------- /src/modules/governance/proposal/ProposalTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/proposal/ProposalTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/governance/proposal/VoteInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/proposal/VoteInfo.tsx -------------------------------------------------------------------------------- /src/modules/governance/proposal/VotersList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/proposal/VotersList.tsx -------------------------------------------------------------------------------- /src/modules/governance/proposal/VotersListContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/proposal/VotersListContainer.tsx -------------------------------------------------------------------------------- /src/modules/governance/proposal/VotersListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/proposal/VotersListItem.tsx -------------------------------------------------------------------------------- /src/modules/governance/proposal/VotersListModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/proposal/VotersListModal.tsx -------------------------------------------------------------------------------- /src/modules/governance/utils/formatProposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/utils/formatProposal.ts -------------------------------------------------------------------------------- /src/modules/governance/utils/getProposalMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/utils/getProposalMetadata.ts -------------------------------------------------------------------------------- /src/modules/governance/utils/getVotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/utils/getVotes.ts -------------------------------------------------------------------------------- /src/modules/governance/utils/governanceProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/utils/governanceProvider.tsx -------------------------------------------------------------------------------- /src/modules/governance/utils/immutableStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/governance/utils/immutableStates.ts -------------------------------------------------------------------------------- /src/modules/markets/MarketAssetsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/markets/MarketAssetsList.tsx -------------------------------------------------------------------------------- /src/modules/markets/MarketAssetsListContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/markets/MarketAssetsListContainer.tsx -------------------------------------------------------------------------------- /src/modules/markets/MarketAssetsListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/markets/MarketAssetsListItem.tsx -------------------------------------------------------------------------------- /src/modules/markets/MarketAssetsListItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/markets/MarketAssetsListItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/markets/MarketAssetsListMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/markets/MarketAssetsListMobileItem.tsx -------------------------------------------------------------------------------- /src/modules/markets/MarketAssetsListMobileItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/markets/MarketAssetsListMobileItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/markets/MarketsTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/markets/MarketsTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/migration/HFChange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/migration/HFChange.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationBottomPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/migration/MigrationBottomPanel.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/migration/MigrationList.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationListBorrowItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/migration/MigrationListBorrowItem.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/migration/MigrationListItem.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationListItemLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/migration/MigrationListItemLoader.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationListItemToggler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/migration/MigrationListItemToggler.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationListMobileItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/migration/MigrationListMobileItem.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationLists.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/migration/MigrationLists.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationMobileList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/migration/MigrationMobileList.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationSelectionBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/migration/MigrationSelectionBox.tsx -------------------------------------------------------------------------------- /src/modules/migration/MigrationTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/migration/MigrationTopPanel.tsx -------------------------------------------------------------------------------- /src/modules/migration/StETHMigrationWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/migration/StETHMigrationWarning.tsx -------------------------------------------------------------------------------- /src/modules/migration/USDCMigrationWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/migration/USDCMigrationWarning.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/AddTokenDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/AddTokenDropdown.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/BorrowInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/BorrowInfo.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/ReserveActions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/ReserveActions.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/ReserveConfiguration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/ReserveConfiguration.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/ReserveFactorOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/ReserveFactorOverview.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/ReservePanels.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/ReservePanels.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/ReserveTopDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/ReserveTopDetails.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/SupplyInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/SupplyInfo.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/TokenLinkDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/TokenLinkDropdown.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/graphs/ApyGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/graphs/ApyGraph.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/graphs/ApyGraphContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/graphs/ApyGraphContainer.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/graphs/GraphLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/graphs/GraphLegend.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/graphs/GraphTimeRangeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/graphs/GraphTimeRangeSelector.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/graphs/InterestRateModelGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/graphs/InterestRateModelGraph.tsx -------------------------------------------------------------------------------- /src/modules/reserve-overview/graphs/InterestRateModelGraphContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/reserve-overview/graphs/InterestRateModelGraphContainer.tsx -------------------------------------------------------------------------------- /src/modules/sdai/AddTokenToWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/sdai/AddTokenToWallet.tsx -------------------------------------------------------------------------------- /src/modules/sdai/DSRTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/sdai/DSRTooltip.tsx -------------------------------------------------------------------------------- /src/modules/sdai/LiveSDAIBalance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/sdai/LiveSDAIBalance.tsx -------------------------------------------------------------------------------- /src/modules/sdai/SDAIEtherscanLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/sdai/SDAIEtherscanLink.tsx -------------------------------------------------------------------------------- /src/modules/sdai/SDAITopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/sdai/SDAITopPanel.tsx -------------------------------------------------------------------------------- /src/modules/staking/BuyWithFiat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/staking/BuyWithFiat.tsx -------------------------------------------------------------------------------- /src/modules/staking/BuyWithFiatModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/staking/BuyWithFiatModal.tsx -------------------------------------------------------------------------------- /src/modules/staking/GetABPToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/staking/GetABPToken.tsx -------------------------------------------------------------------------------- /src/modules/staking/GetABPTokenModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/staking/GetABPTokenModal.tsx -------------------------------------------------------------------------------- /src/modules/staking/StakeActionBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/staking/StakeActionBox.tsx -------------------------------------------------------------------------------- /src/modules/staking/StakingHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/staking/StakingHeader.tsx -------------------------------------------------------------------------------- /src/modules/staking/StakingPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/staking/StakingPanel.tsx -------------------------------------------------------------------------------- /src/modules/staking/StakingPanelNoWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/modules/staking/StakingPanelNoWallet.tsx -------------------------------------------------------------------------------- /src/static-build/ipfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/static-build/ipfs.ts -------------------------------------------------------------------------------- /src/static-build/ipfsFiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/static-build/ipfsFiles.json -------------------------------------------------------------------------------- /src/static-build/populateCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/static-build/populateCache.ts -------------------------------------------------------------------------------- /src/static-build/proposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/static-build/proposal.ts -------------------------------------------------------------------------------- /src/static-build/proposals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/static-build/proposals.json -------------------------------------------------------------------------------- /src/static-build/vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/static-build/vote.ts -------------------------------------------------------------------------------- /src/static-build/votes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/static-build/votes.json -------------------------------------------------------------------------------- /src/store/governanceSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/store/governanceSlice.ts -------------------------------------------------------------------------------- /src/store/incentiveSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/store/incentiveSlice.ts -------------------------------------------------------------------------------- /src/store/poolSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/store/poolSelectors.ts -------------------------------------------------------------------------------- /src/store/poolSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/store/poolSlice.ts -------------------------------------------------------------------------------- /src/store/protocolDataSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/store/protocolDataSlice.ts -------------------------------------------------------------------------------- /src/store/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/store/root.ts -------------------------------------------------------------------------------- /src/store/stakeSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/store/stakeSlice.ts -------------------------------------------------------------------------------- /src/store/utils/createSingletonSubscriber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/store/utils/createSingletonSubscriber.ts -------------------------------------------------------------------------------- /src/store/utils/queryParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/store/utils/queryParams.ts -------------------------------------------------------------------------------- /src/store/v3MigrationSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/store/v3MigrationSelectors.ts -------------------------------------------------------------------------------- /src/store/v3MigrationSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/store/v3MigrationSlice.ts -------------------------------------------------------------------------------- /src/store/walletSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/store/walletSelectors.ts -------------------------------------------------------------------------------- /src/store/walletSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/store/walletSlice.ts -------------------------------------------------------------------------------- /src/styles/variables.css: -------------------------------------------------------------------------------- 1 | body { 2 | --wcm-z-index: 1300; 3 | } -------------------------------------------------------------------------------- /src/ui-config/errorMapping.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/ui-config/errorMapping.tsx -------------------------------------------------------------------------------- /src/ui-config/governanceConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/ui-config/governanceConfig.ts -------------------------------------------------------------------------------- /src/ui-config/marketsConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/ui-config/marketsConfig.tsx -------------------------------------------------------------------------------- /src/ui-config/menu-items/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/ui-config/menu-items/index.tsx -------------------------------------------------------------------------------- /src/ui-config/networksConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/ui-config/networksConfig.ts -------------------------------------------------------------------------------- /src/ui-config/onRampServicesConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/ui-config/onRampServicesConfig.tsx -------------------------------------------------------------------------------- /src/ui-config/permitConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/ui-config/permitConfig.ts -------------------------------------------------------------------------------- /src/ui-config/reservePatches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/ui-config/reservePatches.ts -------------------------------------------------------------------------------- /src/ui-config/stakeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/ui-config/stakeConfig.ts -------------------------------------------------------------------------------- /src/uiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/uiConfig.ts -------------------------------------------------------------------------------- /src/utils/__tests__/RotationProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/utils/__tests__/RotationProvider.test.ts -------------------------------------------------------------------------------- /src/utils/__tests__/marketsAndNetworkConfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/utils/__tests__/marketsAndNetworkConfig.spec.ts -------------------------------------------------------------------------------- /src/utils/dashboardSortUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/utils/dashboardSortUtils.ts -------------------------------------------------------------------------------- /src/utils/eMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/utils/eMode.ts -------------------------------------------------------------------------------- /src/utils/getMaxAmountAvailableToBorrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/utils/getMaxAmountAvailableToBorrow.ts -------------------------------------------------------------------------------- /src/utils/getMaxAmountAvailableToSupply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/utils/getMaxAmountAvailableToSupply.ts -------------------------------------------------------------------------------- /src/utils/hfUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/utils/hfUtils.ts -------------------------------------------------------------------------------- /src/utils/marketsAndNetworksConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/utils/marketsAndNetworksConfig.ts -------------------------------------------------------------------------------- /src/utils/rotationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/utils/rotationProvider.ts -------------------------------------------------------------------------------- /src/utils/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/utils/theme.tsx -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /svgo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/svgo.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkdotfi/spark-interface/HEAD/yarn.lock --------------------------------------------------------------------------------