├── .editorconfig ├── .env ├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ ├── crowdin.yml │ ├── dev.yml │ ├── push.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .stylelintrc.json ├── LICENSE ├── README.md ├── crowdin.yml ├── index.html ├── lingui.config.ts ├── package.json ├── public ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon.svg ├── manifest.json ├── og-image.png ├── robots.txt ├── spectrum-finance-token-logo.svg └── token-ada.svg ├── src ├── @types │ ├── dapp-cardano-wallet-web-bridge.d.ts │ ├── dapp-wallet-web-bridge.d.ts │ ├── price.d.ts │ ├── window.d.ts │ └── worker.d.ts ├── App.tsx ├── ApplicationRoutes.tsx ├── api │ └── convertToConvenientNetworkAsset.ts ├── applicationConfig.ts ├── assets │ ├── icons │ │ ├── block-icon.svg │ │ ├── checked-icon.svg │ │ ├── darkmode.svg │ │ ├── empty.svg │ │ ├── ergo-logo-icon.svg │ │ ├── flint-logo-icon.svg │ │ ├── icon-copy.svg │ │ ├── icon-dots-vertical.svg │ │ ├── icon-dots.svg │ │ ├── icon-explore.svg │ │ ├── icon-logout.svg │ │ ├── nautilus-logo-icon.svg │ │ ├── relock-icon.svg │ │ ├── social │ │ │ ├── Discord.svg │ │ │ ├── Medium.svg │ │ │ ├── Reddit.svg │ │ │ ├── Telegram.svg │ │ │ └── Twitter.svg │ │ ├── sprite │ │ │ └── sprite.svg │ │ ├── tokens │ │ │ ├── token-ada-disabled.svg │ │ │ ├── token-ada.svg │ │ │ ├── token-empty.svg │ │ │ ├── token-erdoge.svg │ │ │ ├── token-erg.svg │ │ │ ├── token-kushti.svg │ │ │ ├── token-lunadog.svg │ │ │ ├── token-sigrsv.svg │ │ │ └── token-sigusd.svg │ │ ├── verification-icon.svg │ │ ├── wallet-icon.svg │ │ ├── withdrawal-icon.svg │ │ └── yoroi-logo-icon.svg │ ├── images │ │ ├── glow-v2.png │ │ ├── smartphone.svg │ │ └── snek-glow.png │ └── styles │ │ ├── sizes.less │ │ ├── styles.less │ │ ├── themes │ │ ├── dark.less │ │ ├── hosky.less │ │ ├── light.less │ │ ├── snek-dark.less │ │ ├── snek.less │ │ └── system.less │ │ └── variables │ │ └── gradients.less ├── common │ ├── constants │ │ ├── erg.ts │ │ ├── ispo.ts │ │ ├── locales.ts │ │ ├── settings.ts │ │ ├── size.ts │ │ ├── spf.ts │ │ ├── url.ts │ │ └── usdAsset.ts │ ├── hooks │ │ ├── useObservable.ts │ │ ├── useParamsStrict.ts │ │ └── useSearchParams.ts │ ├── initializers │ │ ├── analyticsInitializer.ts │ │ ├── core.ts │ │ ├── gaInitializer.ts │ │ ├── networkDomInitializer.ts │ │ ├── sentryInitializer.ts │ │ └── walletConnectInitializer.ts │ ├── models │ │ ├── Address.ts │ │ ├── AmmPool.ts │ │ ├── AssetInfo.ts │ │ ├── AssetLock.ts │ │ ├── Balance.ts │ │ ├── Currency.ts │ │ ├── Farm.ts │ │ ├── Operation.ts │ │ ├── OperationV2.ts │ │ ├── PoolChartData.ts │ │ ├── Position.ts │ │ └── Ratio.ts │ ├── services │ │ ├── AssetGraph.ts │ │ ├── CurrencyConverter.ts │ │ ├── DefaultTokenList.ts │ │ ├── ErrorLogs.ts │ │ └── NetworkDomManager │ │ │ ├── NetworkDomManager.tsx │ │ │ └── SelectDefaultNetwork │ │ │ ├── SelectDefaultNetwork.tsx │ │ │ └── SelectDefaultNetworkItem │ │ │ ├── SelectDefaultNetworkItem.tsx │ │ │ ├── cardano-bg.png │ │ │ └── ergo-bg.png │ ├── streams │ │ ├── appTick.ts │ │ ├── networkConnection.ts │ │ ├── poolAnalytic.ts │ │ ├── tabClosing.ts │ │ └── verifiedAssets.ts │ ├── types.ts │ └── utils │ │ ├── Dictionary.ts │ │ ├── Searchable.ts │ │ ├── amount.ts │ │ ├── blocks.ts │ │ ├── calculateOutputs.ts │ │ ├── calculateTotalFee.ts │ │ ├── comparePoolByTvl.ts │ │ ├── comparePositionByTvl.ts │ │ ├── createFormatter.ts │ │ ├── env.ts │ │ ├── isCurrenctAddressValid.ts │ │ ├── isDeprecatedPool.ts │ │ ├── localStorageManager.ts │ │ ├── makeId.ts │ │ ├── normalizeAvailableLp.ts │ │ └── unpacked.ts ├── components │ ├── AddLiquidityForm │ │ ├── AddLiquidityForm.tsx │ │ ├── AddLiquidityFormModel.ts │ │ ├── LiquidityPercentInput │ │ │ └── LiquidityPercentInput.tsx │ │ └── LowLiquidityWarning │ │ │ └── LowLiquidityWarning.tsx │ ├── AssetIcon │ │ └── AssetIcon.tsx │ ├── AssetIconPair │ │ └── AssetIconPair.tsx │ ├── AssetLocksTable │ │ ├── AssetLocksTable.tsx │ │ ├── cells │ │ │ ├── PairCell │ │ │ │ └── PairCell.tsx │ │ │ ├── StatusCell │ │ │ │ └── StatusCell.tsx │ │ │ ├── UnlockBlockCell │ │ │ │ └── UnlockBlockCell.tsx │ │ │ └── UnlockDateCell │ │ │ │ └── UnlockDateCell.tsx │ │ └── selectableItemRowRenderer │ │ │ └── selectableItemRowRenderer.tsx │ ├── AssetPairTitle │ │ └── AssetPairTitle.tsx │ ├── AssetTitle │ │ └── AssetTitle.tsx │ ├── BadgeCustom │ │ └── BadgeCustom.tsx │ ├── BaseAddLiquidityConfirmationModal │ │ └── BaseAddLiquidityConfirmationModal.tsx │ ├── BaseCreatePoolConfirmationModal │ │ └── BaseCreatePoolConfirmationModal.tsx │ ├── BaseRedeemConfirmationModal │ │ └── BaseRedeemConfirmationModal.tsx │ ├── BaseSwapCollapse │ │ ├── BaseSwapCollapse.tsx │ │ ├── RatioView │ │ │ └── RatioView.tsx │ │ └── SwapInfoItem │ │ │ └── SwapInfoItem.tsx │ ├── BaseSwapConfirmationModal │ │ └── BaseSwapConfirmationModal.tsx │ ├── BoostedPoolTag │ │ └── BoostedPoolTag.tsx │ ├── BoxInfoItem │ │ └── BoxInfoItem.tsx │ ├── ConfirmationModal │ │ └── ConfirmationModal.tsx │ ├── ConvenientAssetView │ │ └── ConvenientAssetView.tsx │ ├── CurrencyPreview │ │ └── CurrencyPreview.tsx │ ├── DeprecatedPoolTag │ │ └── DeprecatedPoolTag.tsx │ ├── ErrorBoundary │ │ └── ErrorEventProvider.tsx │ ├── FarmsButton │ │ └── FarmsButton.tsx │ ├── FeesView │ │ └── FeesView.tsx │ ├── IOSNotSupportedScreen │ │ └── IOSNotSupportedScreen.tsx │ ├── InfoTooltip │ │ └── InfoTooltip.tsx │ ├── InlineGrid │ │ └── InlineGrid.tsx │ ├── IsCardano │ │ └── IsCardano.tsx │ ├── IsErgo │ │ └── IsErgo.tsx │ ├── LabeledContent │ │ └── LabeledContent.tsx │ ├── LbspBanner │ │ ├── LbspBanner.tsx │ │ ├── LbspTimer │ │ │ └── LbspTimer.tsx │ │ └── tokens-img.png │ ├── LbspCalculatorModal │ │ ├── DurationSlider │ │ │ └── DurationSlider.tsx │ │ ├── LbspCalculatorModal.tsx │ │ └── RewardsBox │ │ │ └── RewardsBox.tsx │ ├── LbspFaqModal │ │ └── LbspFaqModal.tsx │ ├── LbspPoolTag │ │ └── LbspPoolTag.tsx │ ├── List │ │ ├── List.tsx │ │ ├── ListContext │ │ │ └── ListContext.ts │ │ ├── ListStateView │ │ │ └── ListStateView.tsx │ │ ├── Overlay │ │ │ └── Overlay.tsx │ │ ├── common │ │ │ ├── Expand.ts │ │ │ ├── ListItem.ts │ │ │ └── ListState.ts │ │ └── utils │ │ │ ├── constants.ts │ │ │ ├── getHeight.ts │ │ │ ├── getRowHeight.ts │ │ │ └── normalizeMeasure.ts │ ├── NetworkHeight │ │ ├── NetworkHeight.less │ │ └── NetworkHeight.tsx │ ├── NewFeatureTag │ │ └── NewFeatureTag.tsx │ ├── OperationForm │ │ ├── OperationForm.less │ │ └── OperationForm.tsx │ ├── OperationHistoryModal │ │ ├── OperationHistory │ │ │ ├── OperationHistoryV2.tsx │ │ │ ├── OperationPagination │ │ │ │ └── OperationPagination.tsx │ │ │ ├── cells │ │ │ │ ├── AssetsCell │ │ │ │ │ ├── AddLiquidityAssetsCell │ │ │ │ │ │ └── AddLiquidityAssetsCell.tsx │ │ │ │ │ ├── AssetsCell.tsx │ │ │ │ │ ├── LmDepositAssetsCell │ │ │ │ │ │ └── LmDepositAssetsCell.tsx │ │ │ │ │ ├── LmRedeemAssetsCell │ │ │ │ │ │ └── LmRedeemAssetsCell.tsx │ │ │ │ │ ├── LockAssetsCell │ │ │ │ │ │ └── LockAssetsCell.tsx │ │ │ │ │ ├── RemoveLiquidityAssetsCell │ │ │ │ │ │ └── RemoveLiquidityAssetsCell.tsx │ │ │ │ │ └── SwapAssetsCell │ │ │ │ │ │ ├── ArrowIcon │ │ │ │ │ │ └── ArrowIcon.tsx │ │ │ │ │ │ └── SwapAssetsCell.tsx │ │ │ │ ├── CancelOrderCell │ │ │ │ │ └── CancelOrderCell.tsx │ │ │ │ ├── DateTimeCell │ │ │ │ │ └── DateTimeCell.tsx │ │ │ │ ├── FeeCell │ │ │ │ │ └── FeeCell.tsx │ │ │ │ ├── StatusCell │ │ │ │ │ └── StatusCell.tsx │ │ │ │ └── TypeCell │ │ │ │ │ └── TypeCell.tsx │ │ │ ├── common │ │ │ │ ├── AssetBox │ │ │ │ │ └── AssetBox.tsx │ │ │ │ ├── LpAssetBox │ │ │ │ │ └── LpAssetBox.tsx │ │ │ │ ├── PairAssetBox │ │ │ │ │ └── PairAssetBox.tsx │ │ │ │ └── SingleAssetBox │ │ │ │ │ └── SingleAssetBox.tsx │ │ │ ├── filters │ │ │ │ └── statusFilter.tsx │ │ │ └── states │ │ │ │ ├── ErrorState │ │ │ │ └── ErrorState.tsx │ │ │ │ ├── OperationSearchEmptyState │ │ │ │ └── OperationSearchEmptyState.tsx │ │ │ │ └── OperationsEmptyState │ │ │ │ └── OperationsEmptyState.tsx │ │ └── OperationHistoryModal.tsx │ ├── OperationSettings │ │ ├── FeeCurrencySelector │ │ │ ├── FeeCurrencySelector.tsx │ │ │ └── OperationSettingsButton │ │ │ │ └── OperationSettingsButton.tsx │ │ ├── NitroInput │ │ │ └── NitroInput.tsx │ │ ├── OperationSettings.tsx │ │ └── SlippageInput │ │ │ └── SlippageInput.tsx │ ├── OverlayBox │ │ └── OverlayBox.tsx │ ├── Page │ │ ├── Page.less │ │ ├── Page.tsx │ │ ├── PageHeader │ │ │ └── PageHeader.tsx │ │ ├── PageSection │ │ │ └── PageSection.tsx │ │ ├── Tongue │ │ │ ├── Tongue.tsx │ │ │ └── TongueArrowButton │ │ │ │ └── TongueArrowButton.tsx │ │ └── useResize.ts │ ├── PoolSelector │ │ ├── PoolSelector.tsx │ │ ├── PoolSelectorOverlay │ │ │ ├── PoolSelectorOverlay.tsx │ │ │ └── PoolSelectorOverlayItemView │ │ │ │ └── PoolSelectorOverlayItemView.tsx │ │ └── PoolView │ │ │ └── PoolView.tsx │ ├── PriceImpact │ │ └── PriceImpact.tsx │ ├── RatioBox │ │ └── RatioBox.tsx │ ├── RouterTitle │ │ ├── RouteConfigExtended.ts │ │ ├── RouteMatchExtended.ts │ │ └── RouterTitle.tsx │ ├── SearchInput │ │ └── SearchInput.tsx │ ├── Section │ │ └── Section.tsx │ ├── SensitiveContent │ │ └── SensitiveContent.tsx │ ├── SensitiveContentToggle │ │ └── SensitiveContentToggle.tsx │ ├── ShareXButton │ │ ├── ShareXButton.tsx │ │ └── X.svg │ ├── SimpeCollapse │ │ └── SimpeCollapse.tsx │ ├── SkeletonLoader │ │ ├── ListSkeletonLoadingState.tsx │ │ ├── SkeletonLoader.tsx │ │ └── makeSkeletonLoader.tsx │ ├── SocialLinks │ │ ├── SocialLinks.less │ │ └── SocialLinks.tsx │ ├── SpfLogo │ │ └── SpfLogo.tsx │ ├── SplashModal │ │ └── SplashModal.tsx │ ├── SubmitButton │ │ ├── SubmitButton.less │ │ └── SubmitButton.tsx │ ├── TableView │ │ ├── FilterButton │ │ │ └── FilterButton.tsx │ │ ├── SortButton │ │ │ └── SortButton.tsx │ │ ├── TableView.tsx │ │ ├── TableViewAction │ │ │ └── TableViewAction.tsx │ │ ├── TableViewColumn │ │ │ └── TableViewColumn.tsx │ │ ├── TableViewContent │ │ │ └── TableViewContent.tsx │ │ ├── TableViewContext │ │ │ └── TableViewContext.ts │ │ ├── TableViewDetails.tsx │ │ ├── TableViewHeader │ │ │ └── TableViewHeader.tsx │ │ ├── TableViewRow │ │ │ └── TableViewRow.tsx │ │ ├── TableViewRowRenderer │ │ │ └── TableViewRowRenderer.tsx │ │ ├── TableViewState │ │ │ └── TableViewState.tsx │ │ ├── common │ │ │ ├── Action.ts │ │ │ ├── Column.ts │ │ │ ├── Expand.ts │ │ │ ├── FilterDescription.ts │ │ │ ├── RowRenderer.ts │ │ │ ├── Sort.ts │ │ │ ├── State.ts │ │ │ ├── constants.ts │ │ │ ├── filterItem.ts │ │ │ └── sortItems.ts │ │ └── filters │ │ │ └── MultiselectFilter │ │ │ └── MultiselectFilter.tsx │ ├── ThemeSwitch │ │ ├── ThemeSwitch.tsx │ │ ├── hoski-logo.jpeg │ │ └── snek-logo.jpeg │ ├── TitledBox │ │ └── TitledBox.tsx │ ├── Truncate │ │ └── Truncate.tsx │ ├── UnknownTokenIcon │ │ ├── UnknownTokenIcon.tsx │ │ └── colorTable.ts │ ├── VerificationMark │ │ └── VerificationMark.tsx │ ├── WalletModal │ │ ├── AddressesTab │ │ │ └── AddressesTab.tsx │ │ ├── LowBalanceWarning │ │ │ └── LowBalanceWarning.tsx │ │ ├── WalletActiveAddress │ │ │ └── WalletActiveAddress.tsx │ │ ├── WalletModal.tsx │ │ ├── WalletModalSkeletonLoader │ │ │ └── WalletModalSkeletonLoader.tsx │ │ ├── WalletTokens │ │ │ ├── TokenListItem │ │ │ │ └── TokenListItem.tsx │ │ │ └── WalletTokens.tsx │ │ └── WalletTotalBalance │ │ │ └── WalletTotalBalance.tsx │ └── common │ │ ├── AppLogo │ │ ├── AppLogo.tsx │ │ └── splash-logo.svg │ │ ├── ConnectWalletButton │ │ ├── ChooseWalletModal │ │ │ ├── ChooseWalletModal.tsx │ │ │ └── ProtocolDisclaimerAlert │ │ │ │ └── ProtocolDisclaimerAlert.tsx │ │ ├── ConnectWalletButton.tsx │ │ └── VesprConnectButton │ │ │ ├── VesprConnectButton.tsx │ │ │ └── vespr-icon.svg │ │ ├── CopyButton │ │ └── CopyButton.tsx │ │ ├── DataTag │ │ └── DataTag.tsx │ │ ├── DateTimeView │ │ └── DateTimeView.tsx │ │ ├── ExploreButton │ │ └── ExploreButton.tsx │ │ ├── FeeTag │ │ └── FeeTag.tsx │ │ ├── FormView │ │ ├── FormFeesSection │ │ │ └── FormFeesSection.tsx │ │ ├── FormPairSection │ │ │ └── FormPairSection.tsx │ │ ├── FormSlider │ │ │ └── FormSlider.tsx │ │ └── FormSpace │ │ │ └── FormSpace.tsx │ │ ├── Icons │ │ └── DotsIcon.tsx │ │ ├── Layout │ │ ├── CardanoUpdate │ │ │ └── CardanoUpdate.tsx │ │ ├── DeprecatedPositions │ │ │ └── DeprecatedPosition.tsx │ │ ├── FooterNavigation │ │ │ └── FooterNavigation.tsx │ │ ├── Glow │ │ │ ├── Glow.tsx │ │ │ ├── snek-img-1.png │ │ │ └── snek-img-2.png │ │ ├── Header │ │ │ ├── Analytics │ │ │ │ ├── AnalyticTag │ │ │ │ │ └── AnalyticTag.tsx │ │ │ │ ├── Analytics.tsx │ │ │ │ └── AnalyticsSkeletonLoader │ │ │ │ │ └── AnalyticsSkeletonLoader.tsx │ │ │ ├── BurgerMenu │ │ │ │ ├── BurgerMenu.tsx │ │ │ │ ├── ManualRefundModal │ │ │ │ │ ├── ManualRefundModal.tsx │ │ │ │ │ ├── ManualRefundModalV2 │ │ │ │ │ │ └── ManualRefundModalV2.tsx │ │ │ │ │ └── common │ │ │ │ │ │ └── TransactionFindForm │ │ │ │ │ │ └── TransactionFindForm.tsx │ │ │ │ └── ergopay-icon.svg │ │ │ ├── ClaimSpfButton │ │ │ │ ├── ClaimSpfButton.tsx │ │ │ │ ├── ClaimSpfModal │ │ │ │ │ ├── AlreadyRewardState │ │ │ │ │ │ └── AlreadyRewardState.tsx │ │ │ │ │ ├── ClaimSpfModal.tsx │ │ │ │ │ ├── ClainRewardState │ │ │ │ │ │ └── ClaimRewardState.tsx │ │ │ │ │ ├── GotRewardState │ │ │ │ │ │ └── GotRewardState.tsx │ │ │ │ │ ├── NothingToClaimState │ │ │ │ │ │ └── NothingToClaimState.tsx │ │ │ │ │ ├── PendingState │ │ │ │ │ │ └── PendingState.tsx │ │ │ │ │ ├── RewardInfo │ │ │ │ │ │ ├── RewardDetails │ │ │ │ │ │ │ └── RewardDetails.tsx │ │ │ │ │ │ ├── RewardInfo.tsx │ │ │ │ │ │ └── RewardStatistic │ │ │ │ │ │ │ └── RewardStatistic.tsx │ │ │ │ │ ├── bottom-backgroud.svg │ │ │ │ │ └── top-background.svg │ │ │ │ ├── ClaimSpfNotification │ │ │ │ │ ├── ClaimSpfNotification.less │ │ │ │ │ ├── ClaimSpfNotification.tsx │ │ │ │ │ └── bottom-background.svg │ │ │ │ ├── bottom-background.svg │ │ │ │ ├── spf-token.svg │ │ │ │ └── top-background.svg │ │ │ ├── ConnectWallet │ │ │ │ ├── ConnectWallet.tsx │ │ │ │ ├── HeaderConnectWalletButton │ │ │ │ │ └── HeaderConnectWalletButton.tsx │ │ │ │ └── WalletInfoButton │ │ │ │ │ ├── AddressTag │ │ │ │ │ ├── AddressContent │ │ │ │ │ │ └── AddressContent.tsx │ │ │ │ │ ├── AddressTag.tsx │ │ │ │ │ ├── LoadingContent │ │ │ │ │ │ └── LoadingContent.tsx │ │ │ │ │ └── TagTypography │ │ │ │ │ │ └── TagTypography.tsx │ │ │ │ │ ├── BalanceView │ │ │ │ │ └── BalanceView.tsx │ │ │ │ │ └── WalletInfoButton.tsx │ │ │ ├── Header.tsx │ │ │ ├── Navigation │ │ │ │ └── Navigation.tsx │ │ │ └── NetworkDropdown │ │ │ │ ├── NetworkDropdown.less │ │ │ │ └── NetworkDropdown.tsx │ │ ├── Layout.tsx │ │ ├── NeedUpdateModal │ │ │ └── NeedUpdateModal.tsx │ │ └── OperationsHistory │ │ │ └── OperationsHistory.tsx │ │ ├── OptionsButton │ │ └── OptionsButton.tsx │ │ └── TokenControl │ │ ├── AssetAmountInput │ │ ├── AssetAmountInput.tsx │ │ └── format.ts │ │ ├── AssetBalance │ │ └── AssetBalance.tsx │ │ ├── AssetControl.tsx │ │ └── AssetSelect │ │ ├── AssetListModal │ │ ├── AssetListImportConfirmationTokenState │ │ │ ├── AssetListImportConfirmationTokenState.tsx │ │ │ ├── ImportTokenInfo │ │ │ │ └── ImportTokenInfo.tsx │ │ │ ├── ImportTokenPairSelectControl │ │ │ │ └── ImportTokenPairSelectControl.tsx │ │ │ └── ImportTokenWarning │ │ │ │ └── ImportTokenWarning.tsx │ │ ├── AssetListModal.tsx │ │ └── AssetListSelectTokenState │ │ │ ├── AssetListExtendedSearchItem │ │ │ └── AssetListExtendedSearchItem.tsx │ │ │ ├── AssetListGroupTitle │ │ │ └── AssetListGroupTitle.tsx │ │ │ ├── AssetListItem │ │ │ └── AssetListItem.tsx │ │ │ └── AssetListSelectTokenState.tsx │ │ └── AssetSelect.tsx ├── context │ ├── AppLoadingContext.tsx │ ├── AppicationSettingsContext.tsx │ └── index.ts ├── gateway │ ├── analytics │ │ └── fireOperationAnalyticsEvent.ts │ ├── api │ │ ├── addresses.ts │ │ ├── ammPools.ts │ │ ├── assetBalance.ts │ │ ├── assets.ts │ │ ├── createPool.ts │ │ ├── explorer.ts │ │ ├── getPoolChartData.ts │ │ ├── hasNeedRefundOperations.ts │ │ ├── locks.ts │ │ ├── networkAsset.ts │ │ ├── networkAssetBalance.ts │ │ ├── networkContext.ts │ │ ├── operations │ │ │ ├── createPool.ts │ │ │ ├── deposit.ts │ │ │ ├── lmDeposit.ts │ │ │ ├── lmRedeem.ts │ │ │ ├── redeem.ts │ │ │ ├── refund.ts │ │ │ └── swap.ts │ │ ├── pendingOperations.ts │ │ ├── platformStats.ts │ │ ├── positions.ts │ │ ├── queuedOperation.ts │ │ ├── supportedFeatures.ts │ │ ├── transactionsHistory.ts │ │ ├── useHandleCreatePoolMaxButtonClick.ts │ │ ├── useHandleDepositMaxButtonClick.ts │ │ ├── useHandleSwapMaxButtonClick.ts │ │ ├── validationFees.ts │ │ └── wallets.ts │ ├── common │ │ └── network.ts │ ├── settings │ │ └── settings.ts │ ├── utils │ │ └── exploreAddress.ts │ └── widgets │ │ ├── operationsSettings.ts │ │ ├── refundConfirmationInfo.ts │ │ └── swapCallapse.ts ├── hooks │ ├── useBodyClass.ts │ ├── useGuard.ts │ ├── useInterval.ts │ ├── useLocale.ts │ ├── useMetaThemeColor.ts │ └── useQuery.ts ├── i18n │ ├── README.MD │ ├── i18n.tsx │ └── locales │ │ ├── ar-SA.po │ │ ├── cs-CZ.po │ │ ├── de-DE.po │ │ ├── en-US.po │ │ ├── es-ES.po │ │ ├── fr-FR.po │ │ ├── he-IL.po │ │ ├── id-ID.po │ │ ├── it-IT.po │ │ ├── ja-JP.po │ │ ├── pt-BR.po │ │ ├── pt-PT.po │ │ ├── ro-RO.po │ │ ├── sk-SK.po │ │ ├── tr-TR.po │ │ ├── zh-CN.po │ │ └── zh-TW.po ├── index.tsx ├── mappers │ ├── tokenMapper.ts │ ├── varifiedTokensMapper.ts │ └── verifiedPoolsMapper.ts ├── mocks │ ├── asset.ts │ └── pool.ts ├── network │ ├── cardano │ │ ├── api │ │ │ ├── adaHandle │ │ │ │ └── index.ts │ │ │ ├── adaRatio │ │ │ │ └── adaRatio.ts │ │ │ ├── addresses │ │ │ │ └── addresses.ts │ │ │ ├── ammPools │ │ │ │ ├── CardanoAmmPool.ts │ │ │ │ ├── ammPools.ts │ │ │ │ ├── analyticPoolNetwork.ts │ │ │ │ └── utils.ts │ │ │ ├── balance │ │ │ │ ├── assetBalance.ts │ │ │ │ ├── balance.ts │ │ │ │ ├── lpBalance.ts │ │ │ │ └── networkAssetBalance.ts │ │ │ ├── common │ │ │ │ ├── cardanoAssetInfo │ │ │ │ │ ├── getCardanoAssetInfo.ts │ │ │ │ │ └── mocks.ts │ │ │ │ ├── cardanoNetwork.ts │ │ │ │ ├── cardanoWasm.ts │ │ │ │ ├── defaultTokenList.ts │ │ │ │ └── tokenLocks.ts │ │ │ ├── const.ts │ │ │ ├── lbspWhitelist │ │ │ │ └── lbspWhitelist.ts │ │ │ ├── networkAsset │ │ │ │ └── networkAsset.ts │ │ │ ├── networkContext │ │ │ │ └── networkContext.ts │ │ │ ├── operations │ │ │ │ ├── common │ │ │ │ │ ├── ammTxFeeMapping.ts │ │ │ │ │ ├── inputSelector.ts │ │ │ │ │ ├── minExecutorReward.ts │ │ │ │ │ ├── submitTxCandidate.ts │ │ │ │ │ └── transactionBuilder.ts │ │ │ │ ├── createPool.tsx │ │ │ │ ├── deposit.tsx │ │ │ │ ├── redeem.tsx │ │ │ │ ├── refund.ts │ │ │ │ └── swap.tsx │ │ │ ├── platformStats │ │ │ │ └── platformStats.ts │ │ │ ├── poolChart │ │ │ │ └── poolChart.ts │ │ │ ├── positions │ │ │ │ └── positions.ts │ │ │ ├── rewards │ │ │ │ ├── claimRewards.ts │ │ │ │ ├── rewards.ts │ │ │ │ └── utils.ts │ │ │ ├── tokens │ │ │ │ └── tokens.ts │ │ │ ├── transactionHistory │ │ │ │ ├── operationsHistory.ts │ │ │ │ └── types │ │ │ │ │ ├── AddLiquidityOperation.ts │ │ │ │ │ ├── BaseOperation.ts │ │ │ │ │ ├── OperationItem.ts │ │ │ │ │ ├── RemoveLiquidityOperation.ts │ │ │ │ │ └── SwapOperation.ts │ │ │ ├── utxos │ │ │ │ └── utxos.ts │ │ │ └── wallet │ │ │ │ ├── common │ │ │ │ ├── AdditionalData.ts │ │ │ │ ├── BoxSelector.ts │ │ │ │ ├── Wallet.ts │ │ │ │ ├── WalletManager.tsx │ │ │ │ └── old │ │ │ │ │ ├── CardanoWalletContract.ts │ │ │ │ │ └── makeCardanoWallet.tsx │ │ │ │ ├── connectedWalletChange.ts │ │ │ │ ├── consts.ts │ │ │ │ ├── eternl │ │ │ │ ├── eternl-icon.svg │ │ │ │ └── eternl.tsx │ │ │ │ ├── exodus │ │ │ │ ├── exodus-icon.svg │ │ │ │ └── exodus.tsx │ │ │ │ ├── flint │ │ │ │ ├── flint-icon.svg │ │ │ │ └── flint.tsx │ │ │ │ ├── gero │ │ │ │ ├── gero.tsx │ │ │ │ └── gerowallet-icon.svg │ │ │ │ ├── lace │ │ │ │ ├── lace-icon.svg │ │ │ │ └── lace.tsx │ │ │ │ ├── nami │ │ │ │ ├── nami-icon.svg │ │ │ │ └── nami.tsx │ │ │ │ ├── nufi │ │ │ │ ├── nufi-icon.svg │ │ │ │ └── nufi.tsx │ │ │ │ ├── typhon │ │ │ │ ├── typhon-icon.svg │ │ │ │ └── typhon.tsx │ │ │ │ ├── vespr │ │ │ │ ├── vespr-icon.svg │ │ │ │ └── vespr.tsx │ │ │ │ ├── wallet.ts │ │ │ │ ├── walletConnect │ │ │ │ ├── walletConnect.tsx │ │ │ │ └── wc-logo.png │ │ │ │ └── yoroi │ │ │ │ ├── yoroi-icon.svg │ │ │ │ └── yoroi.tsx │ │ ├── cardano.ts │ │ ├── components │ │ │ ├── FeesSkeletonLoading │ │ │ │ └── FeesSkeletonLoading.tsx │ │ │ └── RefundableDepositTooltipContent │ │ │ │ └── RefundableDepositTooltipContent.tsx │ │ ├── initialized.ts │ │ ├── settings │ │ │ └── settings.ts │ │ ├── utils │ │ │ ├── cardanoNetworkData.ts │ │ │ └── utils.ts │ │ └── widgets │ │ │ ├── AdaHandle │ │ │ ├── ActiveAdaHandle │ │ │ │ └── ActiveAdaHandle.tsx │ │ │ ├── AdaHandleChangeButton │ │ │ │ └── AdaHandleChangeButton.tsx │ │ │ ├── AdaHandleModal │ │ │ │ └── AdaHandleModal.tsx │ │ │ └── ada-handle-icon.svg │ │ │ ├── CreatePoolConfirmationInfo │ │ │ └── CreatePoolConfirmationInfo.tsx │ │ │ ├── DepositConfirmationModal │ │ │ ├── DepositConfirmationInfo │ │ │ │ └── DepositConfirmationInfo.tsx │ │ │ └── DepositConfirmationModal.tsx │ │ │ ├── OperationSettings │ │ │ └── OperationsSettings.tsx │ │ │ ├── RedeemConfirmationModal │ │ │ ├── RedeemConfirmationInfo │ │ │ │ └── RedeemConfirmationInfo.tsx │ │ │ └── RedeemConfirmationModal.tsx │ │ │ ├── SwapCollapse │ │ │ └── SwapCollapse.tsx │ │ │ ├── SwapConfirmationModal │ │ │ ├── SwapConfirmationInfo │ │ │ │ └── SwapConfirmationInfo.tsx │ │ │ └── SwapConfirmationModal.tsx │ │ │ └── common │ │ │ ├── useDepositTxInfo.ts │ │ │ ├── useRedeemTxInfo.ts │ │ │ └── useSwapTxInfo.ts │ ├── common │ │ ├── Network.ts │ │ ├── NetworkContext.ts │ │ ├── NetworkData.ts │ │ ├── NetworkOperations.ts │ │ ├── NetworkSettings.ts │ │ ├── NetworkUtils.ts │ │ ├── NetworkWidgets.ts │ │ ├── PlatformStats.ts │ │ ├── PoolChartDataParams.ts │ │ ├── SupportedFeatures.ts │ │ ├── Wallet.ts │ │ ├── WalletManager.ts │ │ └── depositMaxButtonClickForNative.ts │ └── ergo │ │ ├── analytics │ │ └── ergopay.ts │ │ ├── api │ │ ├── addresses │ │ │ └── addresses.ts │ │ ├── ammPools │ │ │ ├── ErgoAmmPool.ts │ │ │ ├── ammPools.ts │ │ │ └── utils.ts │ │ ├── ammPoolsStats │ │ │ └── ammPoolsStats.ts │ │ ├── assets │ │ │ └── assets.ts │ │ ├── balance │ │ │ ├── assetBalance.ts │ │ │ ├── assetInfoManager.ts │ │ │ ├── common.ts │ │ │ ├── lpBalance.ts │ │ │ └── networkAssetBalance.ts │ │ ├── common │ │ │ ├── AnalyticsData.ts │ │ │ ├── assetInfoManager.ts │ │ │ ├── availablePoolsOrTokens.ts │ │ │ ├── defaultTokenList.ts │ │ │ ├── rawAmmPools.ts │ │ │ ├── rawLmPools.ts │ │ │ └── tokenLocks.ts │ │ ├── ergoUsdRatio │ │ │ └── ergoUsdRatio.ts │ │ ├── ergopay │ │ │ ├── getErgopayAddresses.ts │ │ │ └── getErgopayRequestId.ts │ │ ├── locks │ │ │ └── locks.ts │ │ ├── networkAsset │ │ │ └── networkAsset.ts │ │ ├── networkContext │ │ │ └── networkContext.ts │ │ ├── operations │ │ │ ├── common │ │ │ │ ├── mapToOperationOrEmpty.ts │ │ │ │ └── toDexOperation.ts │ │ │ ├── history │ │ │ │ ├── tabManager.ts │ │ │ │ ├── transactionHistory.ts │ │ │ │ ├── transactionHistory.worker.ts │ │ │ │ ├── v2 │ │ │ │ │ ├── operationsHistory.ts │ │ │ │ │ └── types │ │ │ │ │ │ ├── AddLiquidityOperation.ts │ │ │ │ │ │ ├── BaseOperation.ts │ │ │ │ │ │ ├── LmDepositOperation.ts │ │ │ │ │ │ ├── LmRedeemOperation.ts │ │ │ │ │ │ ├── LockOperation.ts │ │ │ │ │ │ ├── OperationItem.ts │ │ │ │ │ │ ├── RemoveLiquidityOperation.ts │ │ │ │ │ │ └── SwapOperation.ts │ │ │ │ └── workerMessages │ │ │ │ │ ├── workerBatchMessage.ts │ │ │ │ │ ├── workerStartMessage.ts │ │ │ │ │ └── workerSyncEndMessage.ts │ │ │ ├── operations.ts │ │ │ └── pending │ │ │ │ ├── inProgressOperations.ts │ │ │ │ ├── pendingOperations.ts │ │ │ │ └── queuedOperation.ts │ │ ├── platformStats │ │ │ └── platformStats.ts │ │ ├── poolChart │ │ │ └── poolChart.ts │ │ ├── positions │ │ │ └── positions.ts │ │ ├── spfFaucet │ │ │ ├── claimSpf.ts │ │ │ ├── common.ts │ │ │ ├── spfReward.ts │ │ │ └── spfStatus.ts │ │ ├── uiFee │ │ │ └── uiFee.ts │ │ ├── utxos │ │ │ └── utxos.ts │ │ └── wallet │ │ │ ├── common │ │ │ └── ErgoWalletContract.ts │ │ │ ├── connectedWalletChange.ts │ │ │ ├── ergopay │ │ │ └── ergopay.tsx │ │ │ ├── nautilus │ │ │ ├── connectWallet.tsx │ │ │ ├── getAddresses.ts │ │ │ ├── getUtxos.ts │ │ │ ├── nautilus.tsx │ │ │ ├── sign.ts │ │ │ ├── signInput.ts │ │ │ ├── submitTx.ts │ │ │ └── walletSupportedFeatures.ts │ │ │ └── wallet.ts │ │ ├── ergo.ts │ │ ├── initialized.ts │ │ ├── lm │ │ ├── api │ │ │ ├── farms │ │ │ │ ├── analytics.ts │ │ │ │ ├── farms.ts │ │ │ │ └── utils.ts │ │ │ └── stakes │ │ │ │ └── stakes.ts │ │ ├── models │ │ │ ├── ErgoFarm.ts │ │ │ └── Stake.ts │ │ └── operations │ │ │ ├── common │ │ │ ├── inputSelector.ts │ │ │ └── lmPoolActions.ts │ │ │ ├── lmDeposit │ │ │ ├── LmDepositModalContent │ │ │ │ └── LmDepositModalContent.tsx │ │ │ ├── createLmDepositData.ts │ │ │ ├── ergopayLmDeposit.ts │ │ │ ├── lmDeposit.tsx │ │ │ └── walletLmDeposit.ts │ │ │ └── lmRedeem │ │ │ ├── LmRedeemModalContent │ │ │ └── LmRedeemModalContent.tsx │ │ │ ├── createLmRedeemData.ts │ │ │ ├── egopayLmRedeem.ts │ │ │ ├── lmRedeem.tsx │ │ │ └── walletLmRedeem.ts │ │ ├── operations │ │ ├── common │ │ │ ├── ergopayMessageManager.ts │ │ │ ├── getInputs.ts │ │ │ ├── getTxContext.ts │ │ │ ├── makeTarget.ts │ │ │ ├── nativeFeePoolActions.ts │ │ │ ├── proverMediator.ts │ │ │ ├── submitErgopayTx.ts │ │ │ └── submitTx.ts │ │ ├── createPool │ │ │ ├── createCreatePoolTxData.ts │ │ │ ├── createPool.tsx │ │ │ ├── useCreatePoolValidators.ts │ │ │ └── walletCreatePool.ts │ │ ├── deposit │ │ │ ├── deposit.tsx │ │ │ ├── ergopayDeposit.ts │ │ │ ├── nativeFee │ │ │ │ ├── createDepositTxData.ts │ │ │ │ ├── ergopayDeposit.ts │ │ │ │ └── walletDeposit.ts │ │ │ ├── spfFee │ │ │ │ ├── createDepositTxData.ts │ │ │ │ ├── ergopayDeposit.ts │ │ │ │ └── walletDeposit.ts │ │ │ ├── useDepositValidators.ts │ │ │ ├── useHandleCreatePoolMaxButtonClick.ts │ │ │ ├── useHandleDepositMaxButtonClick.ts │ │ │ └── walletDeposit.ts │ │ ├── redeem │ │ │ ├── ergopayRedeem.ts │ │ │ ├── nativeFee │ │ │ │ ├── createRedeemTxData.ts │ │ │ │ ├── ergopayRedeem.ts │ │ │ │ └── walletRedeem.ts │ │ │ ├── redeem.tsx │ │ │ ├── spfFee │ │ │ │ ├── createRedeemTxData.ts │ │ │ │ ├── ergopayRedeem.ts │ │ │ │ └── walletRedeem.ts │ │ │ └── walletRedeem.ts │ │ ├── refund │ │ │ ├── createRefundTxData.ts │ │ │ ├── ergopayRefund.ts │ │ │ ├── refund.tsx │ │ │ └── walletRefund.ts │ │ └── swap │ │ │ ├── ergopaySwap.ts │ │ │ ├── nativeFee │ │ │ ├── createSwapTxData.ts │ │ │ ├── ergopaySwap.ts │ │ │ └── walletSwap.ts │ │ │ ├── spfFee │ │ │ ├── createSwapTxData.ts │ │ │ ├── ergopaySwap.ts │ │ │ └── walletSwap.ts │ │ │ ├── swap.tsx │ │ │ ├── useHandleSwapMaxButtonClick.ts │ │ │ ├── useSwapValidators.ts │ │ │ └── walletSwap.ts │ │ ├── settings │ │ ├── executionFee.ts │ │ ├── executionFee │ │ │ ├── executionFee.ts │ │ │ ├── nativeExecutionFee.ts │ │ │ └── spfExecutionFee.ts │ │ ├── minerFee.ts │ │ ├── nitro.ts │ │ ├── settings.ts │ │ ├── slippage.ts │ │ └── totalFees.ts │ │ ├── utils │ │ └── utils.ts │ │ └── widgets │ │ ├── CreatePoolConfirmationInfo │ │ └── CreatePoolConfirmationInfo.tsx │ │ ├── DepositConfirmationModal │ │ ├── DepositConfirmationInfo │ │ │ └── DepositConfirmationInfo.tsx │ │ └── DepositConfirmationModal.tsx │ │ ├── DepositOpenWallet │ │ └── DepositOpenWallet.tsx │ │ ├── ErgoPayModal │ │ ├── ErgoPayCompatibleWalletLink │ │ │ └── ErgoPayCompatibleWalletLink.tsx │ │ ├── ErgoPayModal.tsx │ │ ├── ErgoPayRequestLoadingContent │ │ │ └── ErgoPayRequestLoadingContent.tsx │ │ ├── ErgoPayTabPaneContent │ │ │ ├── ErgoPayTabPaneContent.tsx │ │ │ ├── ErgoPayTabPaneContentDesktop.tsx │ │ │ └── ErgoPayTabPaneContentMobile.tsx │ │ ├── ErgoPayTxInfoContent │ │ │ └── ErgoPayTxInfoContent.tsx │ │ └── common │ │ │ └── ergopayLinks.ts │ │ ├── LmDepositOpenWallet │ │ └── LmDepositOpenWallet.tsx │ │ ├── LmRedeemOpenWallet │ │ └── LmRedeemOpenWallet.tsx │ │ ├── OperationSettings │ │ └── OperationsSettings.tsx │ │ ├── RedeemConfirmationModal │ │ ├── RedeemConfirmationInfo │ │ │ └── RedeemConfirmationInfo.tsx │ │ └── RedeemConfirmationModal.tsx │ │ ├── RedeemOpenWallet │ │ └── RedeemOpenWallet.tsx │ │ ├── RefundConfirmationModal │ │ ├── RefundConfirmationInfo │ │ │ └── RefundConfirmationInfo.tsx │ │ └── RefundConfirmationModal.tsx │ │ ├── RefundOpenWallet │ │ └── RefundOpenWallet.tsx │ │ ├── SwapCollapse │ │ └── SwapCollapse.tsx │ │ ├── SwapConfirmationModal │ │ ├── SwapConfirmationInfo │ │ │ └── SwapConfirmationInfo.tsx │ │ └── SwapConfirmationModal.tsx │ │ └── SwapOpenWallet │ │ └── SwapOpenWallet.tsx ├── nodespecific.ts ├── pages │ ├── AddLiquidity │ │ └── AddLiquidity.tsx │ ├── AddLiquidityOrCreatePool │ │ └── common │ │ │ └── utils.ts │ ├── CreatePool │ │ ├── CreatePool.tsx │ │ ├── CreatePoolConfirmationModal │ │ │ └── CreatePoolConfirmationModal.tsx │ │ ├── CreatePoolFormModel.ts │ │ ├── FeeSelector │ │ │ ├── FeeBox │ │ │ │ └── FeeBox.tsx │ │ │ └── FeeSelector.tsx │ │ ├── InitialPrice │ │ │ └── InitialPriceInput.tsx │ │ └── Overlay │ │ │ └── Overlay.tsx │ ├── Farms │ │ ├── FarmActionModals │ │ │ └── FarmWithdrawalModal │ │ │ │ └── StakeItem │ │ │ │ └── FarmWithdrawalStakeItem.tsx │ │ ├── FarmGridView │ │ │ ├── FarmCardView │ │ │ │ └── FarmCardView.tsx │ │ │ └── FarmGridView.tsx │ │ ├── FarmGuides │ │ │ └── FarmGuides.tsx │ │ ├── FarmOperationModal │ │ │ ├── FarmOperationModal.tsx │ │ │ └── FarmOperationModalHeader │ │ │ │ └── FarmOperationModalHeader.tsx │ │ ├── FarmTableView │ │ │ ├── FarmTableExpandComponent │ │ │ │ ├── ClaimedRewardsCell │ │ │ │ │ └── ClaimedRewardsCell.tsx │ │ │ │ ├── DistributionCell │ │ │ │ │ └── DistributionCell.tsx │ │ │ │ ├── DistributionFrequencyCell │ │ │ │ │ └── DistributionFrequencyCell.tsx │ │ │ │ ├── FarmActionCell │ │ │ │ │ └── FarmActionCell.tsx │ │ │ │ ├── FarmTableExpandComponent.tsx │ │ │ │ ├── LivePeriodCell │ │ │ │ │ └── LivePeriodCell.tsx │ │ │ │ ├── NextRewardCell │ │ │ │ │ └── NextRewardCell.tsx │ │ │ │ ├── TotalStakedCell │ │ │ │ │ └── TotalStakedCell.tsx │ │ │ │ ├── YourStakeCell │ │ │ │ │ └── YourStakeCell.tsx │ │ │ │ └── common │ │ │ │ │ ├── RewardCell │ │ │ │ │ └── RewardCell.tsx │ │ │ │ │ └── UsdCell │ │ │ │ │ └── UsdCell.tsx │ │ │ ├── FarmTableView.tsx │ │ │ ├── columns │ │ │ │ ├── FarmActionColumn │ │ │ │ │ └── FarmActionColumn.tsx │ │ │ │ ├── FarmAprColumn │ │ │ │ │ └── FarmAprColumn.tsx │ │ │ │ ├── FarmDistributedColumn │ │ │ │ │ └── FarmDistributedColumn.tsx │ │ │ │ ├── FarmPairColumn │ │ │ │ │ └── FarmPairColumn.tsx │ │ │ │ ├── FarmTotalStakedColumn │ │ │ │ │ └── FarmTotalStakedColumn.tsx │ │ │ │ ├── FarmYourStakeColumn │ │ │ │ │ └── FarmYourStakeColumn.tsx │ │ │ │ └── common │ │ │ │ │ └── FarmTagColumn │ │ │ │ │ └── FarmTagColumn.tsx │ │ │ └── common │ │ │ │ └── FarmAction │ │ │ │ └── FarmAction.tsx │ │ ├── FarmTopPanel │ │ │ ├── CreateFarmModal │ │ │ │ ├── ConfirmFarmCreateModal.tsx │ │ │ │ ├── CreateFarmFormModel.ts │ │ │ │ ├── FarmDistributionIntervalInput │ │ │ │ │ └── FarmDistributionIntervalInput.tsx │ │ │ │ ├── FarmPeriodSelector │ │ │ │ │ ├── FarmPeriodSelector.tsx │ │ │ │ │ └── PeriodType.ts │ │ │ │ ├── FarmPoolSelector │ │ │ │ │ └── FarmPoolSelector.tsx │ │ │ │ └── validators │ │ │ │ │ └── validators.ts │ │ │ ├── FarmStateFilter │ │ │ │ └── FarmStateFilter.tsx │ │ │ ├── FarmTopPanel.tsx │ │ │ ├── FarmViewModeSwitch │ │ │ │ ├── FarmViewMode.ts │ │ │ │ └── FarmViewModeSwitch.tsx │ │ │ └── MyFarmsFilter │ │ │ │ └── MyFarmsFilter.tsx │ │ ├── Farms.tsx │ │ └── types │ │ │ ├── FarmTabs.ts │ │ │ └── FarmViewMode.ts │ ├── IspoRewards │ │ └── IspoRewards.tsx │ ├── Liquidity │ │ ├── Liquidity.tsx │ │ ├── common │ │ │ ├── columns │ │ │ │ ├── LockedPositionsColumns │ │ │ │ │ ├── PairColumn │ │ │ │ │ │ └── PairColumn.tsx │ │ │ │ │ ├── ShareColumn │ │ │ │ │ │ └── ShareColumn.tsx │ │ │ │ │ ├── TotalLockedColumn │ │ │ │ │ │ └── TotalLockedColumn.tsx │ │ │ │ │ └── WithdrawableLockedColumn │ │ │ │ │ │ └── WithdrawableLockedColumn.tsx │ │ │ │ └── PoolsOrPositionsColumns │ │ │ │ │ └── columns │ │ │ │ │ ├── ActionsColumn.tsx │ │ │ │ │ ├── AprColumn │ │ │ │ │ ├── AprColumn.tsx │ │ │ │ │ ├── CardanoAprColumnContent │ │ │ │ │ │ ├── CardanoAprColumnContent.tsx │ │ │ │ │ │ └── calculateLbspApr.ts │ │ │ │ │ └── ErgoAprColumnContent │ │ │ │ │ │ └── ErgoAprColumnContent.tsx │ │ │ │ │ ├── PairColumn │ │ │ │ │ └── PairColumn.tsx │ │ │ │ │ └── TvlOrVolume24Column │ │ │ │ │ └── TvlOrVolume24Column.tsx │ │ │ ├── components │ │ │ │ ├── Apr24InfoTooltip │ │ │ │ │ └── Apr24InfoTooltip.tsx │ │ │ │ ├── LiquidityFilter │ │ │ │ │ └── LiquidityFilter.tsx │ │ │ │ └── LockLiquidityDatePicker │ │ │ │ │ ├── LiquidityDatePicker.less │ │ │ │ │ └── LiquidityDatePicker.tsx │ │ │ ├── tableViewStates │ │ │ │ ├── LiquiditySearchState │ │ │ │ │ └── LiquiditySearchState.tsx │ │ │ │ └── PositionEmptyState │ │ │ │ │ └── PositionEmptyState.tsx │ │ │ └── types │ │ │ │ ├── LiquidityActiveStateProps.ts │ │ │ │ ├── LiquidityFilterProps.ts │ │ │ │ ├── LiquidityLayoutProps.ts │ │ │ │ ├── LiquidityLockedPositionsProps.ts │ │ │ │ ├── LiquidityPoolOrPositionDetailsProps.ts │ │ │ │ ├── LiquidityPoolsOverviewProps.ts │ │ │ │ ├── LiquiditySearchProps.ts │ │ │ │ ├── LiquidityState.ts │ │ │ │ ├── LiquidityYourPositionsProps.ts │ │ │ │ └── PoolsOrPositionsTableViewProps.ts │ │ ├── default │ │ │ ├── LiquidityDefaultLayout.tsx │ │ │ ├── common │ │ │ │ ├── PoolOrPositionDetails │ │ │ │ │ └── PoolOrPositionDetails.tsx │ │ │ │ └── PoolsOrPositionsTableView │ │ │ │ │ └── PoolsOrPositionsTableView.tsx │ │ │ └── components │ │ │ │ ├── LockedPositions │ │ │ │ └── LockedPositions.tsx │ │ │ │ ├── PoolsOverview │ │ │ │ ├── PoolDetails │ │ │ │ │ └── PoolDetails.tsx │ │ │ │ └── PoolsOverview.tsx │ │ │ │ └── YourPositions │ │ │ │ ├── PositionDetails │ │ │ │ └── PositionDetails.tsx │ │ │ │ └── YourPositions.tsx │ │ ├── mobile │ │ │ ├── LiquidityMobileLayout.tsx │ │ │ ├── common │ │ │ │ ├── DetailsBox │ │ │ │ │ └── DetailsBox.tsx │ │ │ │ ├── LockedPositions │ │ │ │ │ ├── LockedPositionDetails │ │ │ │ │ │ └── LockedPositionDetails.tsx │ │ │ │ │ └── LockedPositions.tsx │ │ │ │ ├── PoolOrPositionDetails │ │ │ │ │ └── PoolOrPositionDetails.tsx │ │ │ │ └── PoolsOrPositionsTableView │ │ │ │ │ └── PoolsOrPositionsTableView.tsx │ │ │ └── components │ │ │ │ ├── LiquidityStateSelect │ │ │ │ └── LiquidityStateSelect.tsx │ │ │ │ ├── PoolsOverview │ │ │ │ ├── PoolDetails │ │ │ │ │ └── PoolDetails.tsx │ │ │ │ └── PoolsOverview.tsx │ │ │ │ └── YourPositions │ │ │ │ ├── PositionDetails │ │ │ │ └── PositionDetails.tsx │ │ │ │ └── YourPositions.tsx │ │ └── utils.ts │ ├── LockLiquidity │ │ ├── LockLiquidity.tsx │ │ ├── LockLiquidityModel.ts │ │ ├── cardano │ │ │ ├── CardanoLockLiquidity.tsx │ │ │ └── LockLiquidityConfirmationModal │ │ │ │ └── LockLiquidityConfirmationModal.tsx │ │ └── ergo │ │ │ ├── ErgoLockLiquidity.tsx │ │ │ └── LockLiquidityConfirmationModal │ │ │ └── LockLiquidityConfirmationModal.tsx │ ├── PoolOverview │ │ ├── AmmPoolConfidenceAnalytic.ts │ │ ├── LockLiquidity │ │ │ ├── AnalyticOverview │ │ │ │ └── AnalyticOverview.tsx │ │ │ ├── LockLiquidity.less │ │ │ └── LockLiquidity.tsx │ │ ├── PoolInfoView │ │ │ ├── MyLiquidity │ │ │ │ └── MyLiquidity.tsx │ │ │ ├── PoolFeeTag │ │ │ │ └── PoolFeeTag.tsx │ │ │ ├── PoolInfoView.tsx │ │ │ └── TotalLiquidity │ │ │ │ └── TotalLiquidity.tsx │ │ ├── PoolOverview.tsx │ │ ├── PoolRatio │ │ │ └── PoolRatio.tsx │ │ └── PriceHistory │ │ │ ├── Difference │ │ │ └── Difference.tsx │ │ │ ├── PriceHistory.less │ │ │ └── PriceHistory.tsx │ ├── RelockLiquidity │ │ ├── RelockLiquidity.tsx │ │ └── RelockLiquidityConfirmationModal │ │ │ └── RelockLiquidityConfirmationModal.tsx │ ├── RemoveLiquidity │ │ ├── RemoveLiquidity.tsx │ │ └── RemoveLiquidityFormModel.ts │ ├── Rewards │ │ ├── Rewards.tsx │ │ ├── RewardsBugFixing │ │ │ └── RewardsBugFixing.tsx │ │ ├── RewardsDashboard │ │ │ ├── ClaimRewardsButton │ │ │ │ └── ClaimRewardsButton.tsx │ │ │ ├── RewardsDashboard.tsx │ │ │ ├── RewardsDashboardSection │ │ │ │ └── RewardsDashboardSection.tsx │ │ │ └── TotalRewardsSection │ │ │ │ └── TotalRewardsSection.tsx │ │ ├── RewardsError │ │ │ └── RewardsError.tsx │ │ └── Tags │ │ │ ├── RewardInfoTag │ │ │ └── RewardInfoTag.tsx │ │ │ └── RewardStatusTag │ │ │ └── RewardStatusTag.tsx │ ├── Swap │ │ ├── PoolSelector │ │ │ ├── PoolSelector.tsx │ │ │ └── PoolSelectorModal │ │ │ │ ├── PoolItemView │ │ │ │ └── PoolItemView.tsx │ │ │ │ └── PoolSelectorModal.tsx │ │ ├── PriceImpactWarning │ │ │ └── PriceImpactWarning.tsx │ │ ├── Swap.tsx │ │ ├── SwapFormModel.ts │ │ ├── SwapGraph │ │ │ ├── Difference │ │ │ │ └── Difference.tsx │ │ │ ├── SwapGraph.tsx │ │ │ ├── useAggregatedByDateData.ts │ │ │ ├── usePeriodSettings.ts │ │ │ └── useTicks.ts │ │ ├── SwitchButton │ │ │ └── SwitchButton.tsx │ │ └── YieldFarmingBadge │ │ │ ├── YieldFarmingBadge.tsx │ │ │ ├── banner-bg-left.png │ │ │ ├── banner-bg-right.png │ │ │ └── link.svg │ └── WithdrawalLiquidity │ │ ├── WithdrawalLiquidity.tsx │ │ ├── cardano │ │ ├── CardanoWithdrawalLiquidity.tsx │ │ └── WithdrawalLiquidityConfirmationModal │ │ │ └── WithdrawalLiquidityConfirmationModal.tsx │ │ └── ergo │ │ ├── ErgoWithdrawalLiquidity.tsx │ │ └── WithdrawalLiquidityConfirmationModal │ │ └── WithdrawalLiquidityConfirmationModal.tsx ├── services │ ├── amm.ts │ ├── defaultTxAssembler.ts │ ├── explorer.ts │ ├── locker │ │ └── parser.ts │ ├── networkHistory.ts │ ├── new │ │ └── analytics.ts │ ├── notifications │ │ ├── CollateralGuideNotification │ │ │ └── CollateralGuideNotification.tsx │ │ ├── CookiePolicy │ │ │ ├── CookiePolicy.less │ │ │ └── CookiePolicy.tsx │ │ ├── RefundOperation │ │ │ └── RefundOperation.tsx │ │ └── notificationKeys.ts │ ├── number.ts │ ├── poolActions.ts │ └── yoroi │ │ ├── index.ts │ │ └── prover.ts ├── utils │ ├── adaHandle.ts │ ├── ammMath.ts │ ├── ammOperations.ts │ ├── analytics │ │ └── mapper.ts │ ├── checkPool.ts │ ├── cookies.ts │ ├── getListAvailableTokens.ts │ ├── lbsp.ts │ ├── map.ts │ ├── math.ts │ ├── network.ts │ ├── numbers.ts │ ├── osTheme.ts │ ├── pool │ │ └── index.ts │ ├── price.ts │ ├── specialPools.ts │ ├── string │ │ ├── addres.ts │ │ ├── splitStr.ts │ │ ├── string.ts │ │ └── txId.ts │ ├── subjectToId.ts │ ├── transactions.ts │ ├── userAgent.ts │ ├── verification.ts │ └── walletMath.ts ├── vite-env-override.d.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/.github/workflows/crowdin.yml -------------------------------------------------------------------------------- /.github/workflows/dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/.github/workflows/dev.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/crowdin.yml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/index.html -------------------------------------------------------------------------------- /lingui.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/lingui.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/package.json -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/public/og-image.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/spectrum-finance-token-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/public/spectrum-finance-token-logo.svg -------------------------------------------------------------------------------- /public/token-ada.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/public/token-ada.svg -------------------------------------------------------------------------------- /src/@types/dapp-cardano-wallet-web-bridge.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/@types/dapp-cardano-wallet-web-bridge.d.ts -------------------------------------------------------------------------------- /src/@types/dapp-wallet-web-bridge.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/@types/dapp-wallet-web-bridge.d.ts -------------------------------------------------------------------------------- /src/@types/price.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/@types/price.d.ts -------------------------------------------------------------------------------- /src/@types/window.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/@types/window.d.ts -------------------------------------------------------------------------------- /src/@types/worker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/@types/worker.d.ts -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/ApplicationRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/ApplicationRoutes.tsx -------------------------------------------------------------------------------- /src/api/convertToConvenientNetworkAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/api/convertToConvenientNetworkAsset.ts -------------------------------------------------------------------------------- /src/applicationConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/applicationConfig.ts -------------------------------------------------------------------------------- /src/assets/icons/block-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/block-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/checked-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/checked-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/darkmode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/darkmode.svg -------------------------------------------------------------------------------- /src/assets/icons/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/empty.svg -------------------------------------------------------------------------------- /src/assets/icons/ergo-logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/ergo-logo-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/flint-logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/flint-logo-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/icon-copy.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-dots-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/icon-dots-vertical.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/icon-dots.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-explore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/icon-explore.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/icon-logout.svg -------------------------------------------------------------------------------- /src/assets/icons/nautilus-logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/nautilus-logo-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/relock-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/relock-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/social/Discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/social/Discord.svg -------------------------------------------------------------------------------- /src/assets/icons/social/Medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/social/Medium.svg -------------------------------------------------------------------------------- /src/assets/icons/social/Reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/social/Reddit.svg -------------------------------------------------------------------------------- /src/assets/icons/social/Telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/social/Telegram.svg -------------------------------------------------------------------------------- /src/assets/icons/social/Twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/social/Twitter.svg -------------------------------------------------------------------------------- /src/assets/icons/sprite/sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/sprite/sprite.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/token-ada-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/tokens/token-ada-disabled.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/token-ada.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/tokens/token-ada.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/token-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/tokens/token-empty.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/token-erdoge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/tokens/token-erdoge.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/token-erg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/tokens/token-erg.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/token-kushti.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/tokens/token-kushti.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/token-lunadog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/tokens/token-lunadog.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/token-sigrsv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/tokens/token-sigrsv.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/token-sigusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/tokens/token-sigusd.svg -------------------------------------------------------------------------------- /src/assets/icons/verification-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/verification-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/wallet-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/wallet-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/withdrawal-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/withdrawal-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/yoroi-logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/icons/yoroi-logo-icon.svg -------------------------------------------------------------------------------- /src/assets/images/glow-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/images/glow-v2.png -------------------------------------------------------------------------------- /src/assets/images/smartphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/images/smartphone.svg -------------------------------------------------------------------------------- /src/assets/images/snek-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/images/snek-glow.png -------------------------------------------------------------------------------- /src/assets/styles/sizes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/styles/sizes.less -------------------------------------------------------------------------------- /src/assets/styles/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/styles/styles.less -------------------------------------------------------------------------------- /src/assets/styles/themes/dark.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/styles/themes/dark.less -------------------------------------------------------------------------------- /src/assets/styles/themes/hosky.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/styles/themes/hosky.less -------------------------------------------------------------------------------- /src/assets/styles/themes/light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/styles/themes/light.less -------------------------------------------------------------------------------- /src/assets/styles/themes/snek-dark.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/styles/themes/snek-dark.less -------------------------------------------------------------------------------- /src/assets/styles/themes/snek.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/styles/themes/snek.less -------------------------------------------------------------------------------- /src/assets/styles/themes/system.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/styles/themes/system.less -------------------------------------------------------------------------------- /src/assets/styles/variables/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/assets/styles/variables/gradients.less -------------------------------------------------------------------------------- /src/common/constants/erg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/constants/erg.ts -------------------------------------------------------------------------------- /src/common/constants/ispo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/constants/ispo.ts -------------------------------------------------------------------------------- /src/common/constants/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/constants/locales.ts -------------------------------------------------------------------------------- /src/common/constants/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/constants/settings.ts -------------------------------------------------------------------------------- /src/common/constants/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/constants/size.ts -------------------------------------------------------------------------------- /src/common/constants/spf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/constants/spf.ts -------------------------------------------------------------------------------- /src/common/constants/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/constants/url.ts -------------------------------------------------------------------------------- /src/common/constants/usdAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/constants/usdAsset.ts -------------------------------------------------------------------------------- /src/common/hooks/useObservable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/hooks/useObservable.ts -------------------------------------------------------------------------------- /src/common/hooks/useParamsStrict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/hooks/useParamsStrict.ts -------------------------------------------------------------------------------- /src/common/hooks/useSearchParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/hooks/useSearchParams.ts -------------------------------------------------------------------------------- /src/common/initializers/analyticsInitializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/initializers/analyticsInitializer.ts -------------------------------------------------------------------------------- /src/common/initializers/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/initializers/core.ts -------------------------------------------------------------------------------- /src/common/initializers/gaInitializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/initializers/gaInitializer.ts -------------------------------------------------------------------------------- /src/common/initializers/networkDomInitializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/initializers/networkDomInitializer.ts -------------------------------------------------------------------------------- /src/common/initializers/sentryInitializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/initializers/sentryInitializer.ts -------------------------------------------------------------------------------- /src/common/initializers/walletConnectInitializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/initializers/walletConnectInitializer.ts -------------------------------------------------------------------------------- /src/common/models/Address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/models/Address.ts -------------------------------------------------------------------------------- /src/common/models/AmmPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/models/AmmPool.ts -------------------------------------------------------------------------------- /src/common/models/AssetInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/models/AssetInfo.ts -------------------------------------------------------------------------------- /src/common/models/AssetLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/models/AssetLock.ts -------------------------------------------------------------------------------- /src/common/models/Balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/models/Balance.ts -------------------------------------------------------------------------------- /src/common/models/Currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/models/Currency.ts -------------------------------------------------------------------------------- /src/common/models/Farm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/models/Farm.ts -------------------------------------------------------------------------------- /src/common/models/Operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/models/Operation.ts -------------------------------------------------------------------------------- /src/common/models/OperationV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/models/OperationV2.ts -------------------------------------------------------------------------------- /src/common/models/PoolChartData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/models/PoolChartData.ts -------------------------------------------------------------------------------- /src/common/models/Position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/models/Position.ts -------------------------------------------------------------------------------- /src/common/models/Ratio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/models/Ratio.ts -------------------------------------------------------------------------------- /src/common/services/AssetGraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/services/AssetGraph.ts -------------------------------------------------------------------------------- /src/common/services/CurrencyConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/services/CurrencyConverter.ts -------------------------------------------------------------------------------- /src/common/services/DefaultTokenList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/services/DefaultTokenList.ts -------------------------------------------------------------------------------- /src/common/services/ErrorLogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/services/ErrorLogs.ts -------------------------------------------------------------------------------- /src/common/services/NetworkDomManager/NetworkDomManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/services/NetworkDomManager/NetworkDomManager.tsx -------------------------------------------------------------------------------- /src/common/streams/appTick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/streams/appTick.ts -------------------------------------------------------------------------------- /src/common/streams/networkConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/streams/networkConnection.ts -------------------------------------------------------------------------------- /src/common/streams/poolAnalytic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/streams/poolAnalytic.ts -------------------------------------------------------------------------------- /src/common/streams/tabClosing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/streams/tabClosing.ts -------------------------------------------------------------------------------- /src/common/streams/verifiedAssets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/streams/verifiedAssets.ts -------------------------------------------------------------------------------- /src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/types.ts -------------------------------------------------------------------------------- /src/common/utils/Dictionary.ts: -------------------------------------------------------------------------------- 1 | export type Dictionary = { [key: string]: T }; 2 | -------------------------------------------------------------------------------- /src/common/utils/Searchable.ts: -------------------------------------------------------------------------------- 1 | export interface Searchable { 2 | match: (term: string) => boolean; 3 | } 4 | -------------------------------------------------------------------------------- /src/common/utils/amount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/utils/amount.ts -------------------------------------------------------------------------------- /src/common/utils/blocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/utils/blocks.ts -------------------------------------------------------------------------------- /src/common/utils/calculateOutputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/utils/calculateOutputs.ts -------------------------------------------------------------------------------- /src/common/utils/calculateTotalFee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/utils/calculateTotalFee.ts -------------------------------------------------------------------------------- /src/common/utils/comparePoolByTvl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/utils/comparePoolByTvl.ts -------------------------------------------------------------------------------- /src/common/utils/comparePositionByTvl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/utils/comparePositionByTvl.ts -------------------------------------------------------------------------------- /src/common/utils/createFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/utils/createFormatter.ts -------------------------------------------------------------------------------- /src/common/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/utils/env.ts -------------------------------------------------------------------------------- /src/common/utils/isCurrenctAddressValid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/utils/isCurrenctAddressValid.ts -------------------------------------------------------------------------------- /src/common/utils/isDeprecatedPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/utils/isDeprecatedPool.ts -------------------------------------------------------------------------------- /src/common/utils/localStorageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/utils/localStorageManager.ts -------------------------------------------------------------------------------- /src/common/utils/makeId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/utils/makeId.ts -------------------------------------------------------------------------------- /src/common/utils/normalizeAvailableLp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/utils/normalizeAvailableLp.ts -------------------------------------------------------------------------------- /src/common/utils/unpacked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/common/utils/unpacked.ts -------------------------------------------------------------------------------- /src/components/AddLiquidityForm/AddLiquidityForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/AddLiquidityForm/AddLiquidityForm.tsx -------------------------------------------------------------------------------- /src/components/AddLiquidityForm/AddLiquidityFormModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/AddLiquidityForm/AddLiquidityFormModel.ts -------------------------------------------------------------------------------- /src/components/AddLiquidityForm/LowLiquidityWarning/LowLiquidityWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/AddLiquidityForm/LowLiquidityWarning/LowLiquidityWarning.tsx -------------------------------------------------------------------------------- /src/components/AssetIcon/AssetIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/AssetIcon/AssetIcon.tsx -------------------------------------------------------------------------------- /src/components/AssetIconPair/AssetIconPair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/AssetIconPair/AssetIconPair.tsx -------------------------------------------------------------------------------- /src/components/AssetLocksTable/AssetLocksTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/AssetLocksTable/AssetLocksTable.tsx -------------------------------------------------------------------------------- /src/components/AssetLocksTable/cells/PairCell/PairCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/AssetLocksTable/cells/PairCell/PairCell.tsx -------------------------------------------------------------------------------- /src/components/AssetLocksTable/cells/StatusCell/StatusCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/AssetLocksTable/cells/StatusCell/StatusCell.tsx -------------------------------------------------------------------------------- /src/components/AssetLocksTable/cells/UnlockBlockCell/UnlockBlockCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/AssetLocksTable/cells/UnlockBlockCell/UnlockBlockCell.tsx -------------------------------------------------------------------------------- /src/components/AssetLocksTable/cells/UnlockDateCell/UnlockDateCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/AssetLocksTable/cells/UnlockDateCell/UnlockDateCell.tsx -------------------------------------------------------------------------------- /src/components/AssetPairTitle/AssetPairTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/AssetPairTitle/AssetPairTitle.tsx -------------------------------------------------------------------------------- /src/components/AssetTitle/AssetTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/AssetTitle/AssetTitle.tsx -------------------------------------------------------------------------------- /src/components/BadgeCustom/BadgeCustom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/BadgeCustom/BadgeCustom.tsx -------------------------------------------------------------------------------- /src/components/BaseRedeemConfirmationModal/BaseRedeemConfirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/BaseRedeemConfirmationModal/BaseRedeemConfirmationModal.tsx -------------------------------------------------------------------------------- /src/components/BaseSwapCollapse/BaseSwapCollapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/BaseSwapCollapse/BaseSwapCollapse.tsx -------------------------------------------------------------------------------- /src/components/BaseSwapCollapse/RatioView/RatioView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/BaseSwapCollapse/RatioView/RatioView.tsx -------------------------------------------------------------------------------- /src/components/BaseSwapCollapse/SwapInfoItem/SwapInfoItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/BaseSwapCollapse/SwapInfoItem/SwapInfoItem.tsx -------------------------------------------------------------------------------- /src/components/BaseSwapConfirmationModal/BaseSwapConfirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/BaseSwapConfirmationModal/BaseSwapConfirmationModal.tsx -------------------------------------------------------------------------------- /src/components/BoostedPoolTag/BoostedPoolTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/BoostedPoolTag/BoostedPoolTag.tsx -------------------------------------------------------------------------------- /src/components/BoxInfoItem/BoxInfoItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/BoxInfoItem/BoxInfoItem.tsx -------------------------------------------------------------------------------- /src/components/ConfirmationModal/ConfirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/ConfirmationModal/ConfirmationModal.tsx -------------------------------------------------------------------------------- /src/components/ConvenientAssetView/ConvenientAssetView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/ConvenientAssetView/ConvenientAssetView.tsx -------------------------------------------------------------------------------- /src/components/CurrencyPreview/CurrencyPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/CurrencyPreview/CurrencyPreview.tsx -------------------------------------------------------------------------------- /src/components/DeprecatedPoolTag/DeprecatedPoolTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/DeprecatedPoolTag/DeprecatedPoolTag.tsx -------------------------------------------------------------------------------- /src/components/ErrorBoundary/ErrorEventProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/ErrorBoundary/ErrorEventProvider.tsx -------------------------------------------------------------------------------- /src/components/FarmsButton/FarmsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/FarmsButton/FarmsButton.tsx -------------------------------------------------------------------------------- /src/components/FeesView/FeesView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/FeesView/FeesView.tsx -------------------------------------------------------------------------------- /src/components/IOSNotSupportedScreen/IOSNotSupportedScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/IOSNotSupportedScreen/IOSNotSupportedScreen.tsx -------------------------------------------------------------------------------- /src/components/InfoTooltip/InfoTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/InfoTooltip/InfoTooltip.tsx -------------------------------------------------------------------------------- /src/components/InlineGrid/InlineGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/InlineGrid/InlineGrid.tsx -------------------------------------------------------------------------------- /src/components/IsCardano/IsCardano.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/IsCardano/IsCardano.tsx -------------------------------------------------------------------------------- /src/components/IsErgo/IsErgo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/IsErgo/IsErgo.tsx -------------------------------------------------------------------------------- /src/components/LabeledContent/LabeledContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/LabeledContent/LabeledContent.tsx -------------------------------------------------------------------------------- /src/components/LbspBanner/LbspBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/LbspBanner/LbspBanner.tsx -------------------------------------------------------------------------------- /src/components/LbspBanner/LbspTimer/LbspTimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/LbspBanner/LbspTimer/LbspTimer.tsx -------------------------------------------------------------------------------- /src/components/LbspBanner/tokens-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/LbspBanner/tokens-img.png -------------------------------------------------------------------------------- /src/components/LbspCalculatorModal/DurationSlider/DurationSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/LbspCalculatorModal/DurationSlider/DurationSlider.tsx -------------------------------------------------------------------------------- /src/components/LbspCalculatorModal/LbspCalculatorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/LbspCalculatorModal/LbspCalculatorModal.tsx -------------------------------------------------------------------------------- /src/components/LbspCalculatorModal/RewardsBox/RewardsBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/LbspCalculatorModal/RewardsBox/RewardsBox.tsx -------------------------------------------------------------------------------- /src/components/LbspFaqModal/LbspFaqModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/LbspFaqModal/LbspFaqModal.tsx -------------------------------------------------------------------------------- /src/components/LbspPoolTag/LbspPoolTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/LbspPoolTag/LbspPoolTag.tsx -------------------------------------------------------------------------------- /src/components/List/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/List/List.tsx -------------------------------------------------------------------------------- /src/components/List/ListContext/ListContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/List/ListContext/ListContext.ts -------------------------------------------------------------------------------- /src/components/List/ListStateView/ListStateView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/List/ListStateView/ListStateView.tsx -------------------------------------------------------------------------------- /src/components/List/Overlay/Overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/List/Overlay/Overlay.tsx -------------------------------------------------------------------------------- /src/components/List/common/Expand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/List/common/Expand.ts -------------------------------------------------------------------------------- /src/components/List/common/ListItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/List/common/ListItem.ts -------------------------------------------------------------------------------- /src/components/List/common/ListState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/List/common/ListState.ts -------------------------------------------------------------------------------- /src/components/List/utils/constants.ts: -------------------------------------------------------------------------------- 1 | export const BASE_GUTTER = 4; 2 | -------------------------------------------------------------------------------- /src/components/List/utils/getHeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/List/utils/getHeight.ts -------------------------------------------------------------------------------- /src/components/List/utils/getRowHeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/List/utils/getRowHeight.ts -------------------------------------------------------------------------------- /src/components/List/utils/normalizeMeasure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/List/utils/normalizeMeasure.ts -------------------------------------------------------------------------------- /src/components/NetworkHeight/NetworkHeight.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/NetworkHeight/NetworkHeight.less -------------------------------------------------------------------------------- /src/components/NetworkHeight/NetworkHeight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/NetworkHeight/NetworkHeight.tsx -------------------------------------------------------------------------------- /src/components/NewFeatureTag/NewFeatureTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/NewFeatureTag/NewFeatureTag.tsx -------------------------------------------------------------------------------- /src/components/OperationForm/OperationForm.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/OperationForm/OperationForm.less -------------------------------------------------------------------------------- /src/components/OperationForm/OperationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/OperationForm/OperationForm.tsx -------------------------------------------------------------------------------- /src/components/OperationHistoryModal/OperationHistoryModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/OperationHistoryModal/OperationHistoryModal.tsx -------------------------------------------------------------------------------- /src/components/OperationSettings/NitroInput/NitroInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/OperationSettings/NitroInput/NitroInput.tsx -------------------------------------------------------------------------------- /src/components/OperationSettings/OperationSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/OperationSettings/OperationSettings.tsx -------------------------------------------------------------------------------- /src/components/OperationSettings/SlippageInput/SlippageInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/OperationSettings/SlippageInput/SlippageInput.tsx -------------------------------------------------------------------------------- /src/components/OverlayBox/OverlayBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/OverlayBox/OverlayBox.tsx -------------------------------------------------------------------------------- /src/components/Page/Page.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/Page/Page.less -------------------------------------------------------------------------------- /src/components/Page/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/Page/Page.tsx -------------------------------------------------------------------------------- /src/components/Page/PageHeader/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/Page/PageHeader/PageHeader.tsx -------------------------------------------------------------------------------- /src/components/Page/PageSection/PageSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/Page/PageSection/PageSection.tsx -------------------------------------------------------------------------------- /src/components/Page/Tongue/Tongue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/Page/Tongue/Tongue.tsx -------------------------------------------------------------------------------- /src/components/Page/Tongue/TongueArrowButton/TongueArrowButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/Page/Tongue/TongueArrowButton/TongueArrowButton.tsx -------------------------------------------------------------------------------- /src/components/Page/useResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/Page/useResize.ts -------------------------------------------------------------------------------- /src/components/PoolSelector/PoolSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/PoolSelector/PoolSelector.tsx -------------------------------------------------------------------------------- /src/components/PoolSelector/PoolSelectorOverlay/PoolSelectorOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/PoolSelector/PoolSelectorOverlay/PoolSelectorOverlay.tsx -------------------------------------------------------------------------------- /src/components/PoolSelector/PoolView/PoolView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/PoolSelector/PoolView/PoolView.tsx -------------------------------------------------------------------------------- /src/components/PriceImpact/PriceImpact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/PriceImpact/PriceImpact.tsx -------------------------------------------------------------------------------- /src/components/RatioBox/RatioBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/RatioBox/RatioBox.tsx -------------------------------------------------------------------------------- /src/components/RouterTitle/RouteConfigExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/RouterTitle/RouteConfigExtended.ts -------------------------------------------------------------------------------- /src/components/RouterTitle/RouteMatchExtended.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/RouterTitle/RouteMatchExtended.ts -------------------------------------------------------------------------------- /src/components/RouterTitle/RouterTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/RouterTitle/RouterTitle.tsx -------------------------------------------------------------------------------- /src/components/SearchInput/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/SearchInput/SearchInput.tsx -------------------------------------------------------------------------------- /src/components/Section/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/Section/Section.tsx -------------------------------------------------------------------------------- /src/components/SensitiveContent/SensitiveContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/SensitiveContent/SensitiveContent.tsx -------------------------------------------------------------------------------- /src/components/SensitiveContentToggle/SensitiveContentToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/SensitiveContentToggle/SensitiveContentToggle.tsx -------------------------------------------------------------------------------- /src/components/ShareXButton/ShareXButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/ShareXButton/ShareXButton.tsx -------------------------------------------------------------------------------- /src/components/ShareXButton/X.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/ShareXButton/X.svg -------------------------------------------------------------------------------- /src/components/SimpeCollapse/SimpeCollapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/SimpeCollapse/SimpeCollapse.tsx -------------------------------------------------------------------------------- /src/components/SkeletonLoader/ListSkeletonLoadingState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/SkeletonLoader/ListSkeletonLoadingState.tsx -------------------------------------------------------------------------------- /src/components/SkeletonLoader/SkeletonLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/SkeletonLoader/SkeletonLoader.tsx -------------------------------------------------------------------------------- /src/components/SkeletonLoader/makeSkeletonLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/SkeletonLoader/makeSkeletonLoader.tsx -------------------------------------------------------------------------------- /src/components/SocialLinks/SocialLinks.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/SocialLinks/SocialLinks.less -------------------------------------------------------------------------------- /src/components/SocialLinks/SocialLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/SocialLinks/SocialLinks.tsx -------------------------------------------------------------------------------- /src/components/SpfLogo/SpfLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/SpfLogo/SpfLogo.tsx -------------------------------------------------------------------------------- /src/components/SplashModal/SplashModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/SplashModal/SplashModal.tsx -------------------------------------------------------------------------------- /src/components/SubmitButton/SubmitButton.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/SubmitButton/SubmitButton.less -------------------------------------------------------------------------------- /src/components/SubmitButton/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/SubmitButton/SubmitButton.tsx -------------------------------------------------------------------------------- /src/components/TableView/FilterButton/FilterButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/FilterButton/FilterButton.tsx -------------------------------------------------------------------------------- /src/components/TableView/SortButton/SortButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/SortButton/SortButton.tsx -------------------------------------------------------------------------------- /src/components/TableView/TableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/TableView.tsx -------------------------------------------------------------------------------- /src/components/TableView/TableViewAction/TableViewAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/TableViewAction/TableViewAction.tsx -------------------------------------------------------------------------------- /src/components/TableView/TableViewColumn/TableViewColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/TableViewColumn/TableViewColumn.tsx -------------------------------------------------------------------------------- /src/components/TableView/TableViewContent/TableViewContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/TableViewContent/TableViewContent.tsx -------------------------------------------------------------------------------- /src/components/TableView/TableViewContext/TableViewContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/TableViewContext/TableViewContext.ts -------------------------------------------------------------------------------- /src/components/TableView/TableViewDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/TableViewDetails.tsx -------------------------------------------------------------------------------- /src/components/TableView/TableViewHeader/TableViewHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/TableViewHeader/TableViewHeader.tsx -------------------------------------------------------------------------------- /src/components/TableView/TableViewRow/TableViewRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/TableViewRow/TableViewRow.tsx -------------------------------------------------------------------------------- /src/components/TableView/TableViewRowRenderer/TableViewRowRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/TableViewRowRenderer/TableViewRowRenderer.tsx -------------------------------------------------------------------------------- /src/components/TableView/TableViewState/TableViewState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/TableViewState/TableViewState.tsx -------------------------------------------------------------------------------- /src/components/TableView/common/Action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/common/Action.ts -------------------------------------------------------------------------------- /src/components/TableView/common/Column.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/common/Column.ts -------------------------------------------------------------------------------- /src/components/TableView/common/Expand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/common/Expand.ts -------------------------------------------------------------------------------- /src/components/TableView/common/FilterDescription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/common/FilterDescription.ts -------------------------------------------------------------------------------- /src/components/TableView/common/RowRenderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/common/RowRenderer.ts -------------------------------------------------------------------------------- /src/components/TableView/common/Sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/common/Sort.ts -------------------------------------------------------------------------------- /src/components/TableView/common/State.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/common/State.ts -------------------------------------------------------------------------------- /src/components/TableView/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/common/constants.ts -------------------------------------------------------------------------------- /src/components/TableView/common/filterItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/common/filterItem.ts -------------------------------------------------------------------------------- /src/components/TableView/common/sortItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/common/sortItems.ts -------------------------------------------------------------------------------- /src/components/TableView/filters/MultiselectFilter/MultiselectFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TableView/filters/MultiselectFilter/MultiselectFilter.tsx -------------------------------------------------------------------------------- /src/components/ThemeSwitch/ThemeSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/ThemeSwitch/ThemeSwitch.tsx -------------------------------------------------------------------------------- /src/components/ThemeSwitch/hoski-logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/ThemeSwitch/hoski-logo.jpeg -------------------------------------------------------------------------------- /src/components/ThemeSwitch/snek-logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/ThemeSwitch/snek-logo.jpeg -------------------------------------------------------------------------------- /src/components/TitledBox/TitledBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/TitledBox/TitledBox.tsx -------------------------------------------------------------------------------- /src/components/Truncate/Truncate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/Truncate/Truncate.tsx -------------------------------------------------------------------------------- /src/components/UnknownTokenIcon/UnknownTokenIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/UnknownTokenIcon/UnknownTokenIcon.tsx -------------------------------------------------------------------------------- /src/components/UnknownTokenIcon/colorTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/UnknownTokenIcon/colorTable.ts -------------------------------------------------------------------------------- /src/components/VerificationMark/VerificationMark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/VerificationMark/VerificationMark.tsx -------------------------------------------------------------------------------- /src/components/WalletModal/AddressesTab/AddressesTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/WalletModal/AddressesTab/AddressesTab.tsx -------------------------------------------------------------------------------- /src/components/WalletModal/LowBalanceWarning/LowBalanceWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/WalletModal/LowBalanceWarning/LowBalanceWarning.tsx -------------------------------------------------------------------------------- /src/components/WalletModal/WalletActiveAddress/WalletActiveAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/WalletModal/WalletActiveAddress/WalletActiveAddress.tsx -------------------------------------------------------------------------------- /src/components/WalletModal/WalletModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/WalletModal/WalletModal.tsx -------------------------------------------------------------------------------- /src/components/WalletModal/WalletTokens/TokenListItem/TokenListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/WalletModal/WalletTokens/TokenListItem/TokenListItem.tsx -------------------------------------------------------------------------------- /src/components/WalletModal/WalletTokens/WalletTokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/WalletModal/WalletTokens/WalletTokens.tsx -------------------------------------------------------------------------------- /src/components/WalletModal/WalletTotalBalance/WalletTotalBalance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/WalletModal/WalletTotalBalance/WalletTotalBalance.tsx -------------------------------------------------------------------------------- /src/components/common/AppLogo/AppLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/AppLogo/AppLogo.tsx -------------------------------------------------------------------------------- /src/components/common/AppLogo/splash-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/AppLogo/splash-logo.svg -------------------------------------------------------------------------------- /src/components/common/ConnectWalletButton/ConnectWalletButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/ConnectWalletButton/ConnectWalletButton.tsx -------------------------------------------------------------------------------- /src/components/common/ConnectWalletButton/VesprConnectButton/vespr-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/ConnectWalletButton/VesprConnectButton/vespr-icon.svg -------------------------------------------------------------------------------- /src/components/common/CopyButton/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/CopyButton/CopyButton.tsx -------------------------------------------------------------------------------- /src/components/common/DataTag/DataTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/DataTag/DataTag.tsx -------------------------------------------------------------------------------- /src/components/common/DateTimeView/DateTimeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/DateTimeView/DateTimeView.tsx -------------------------------------------------------------------------------- /src/components/common/ExploreButton/ExploreButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/ExploreButton/ExploreButton.tsx -------------------------------------------------------------------------------- /src/components/common/FeeTag/FeeTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/FeeTag/FeeTag.tsx -------------------------------------------------------------------------------- /src/components/common/FormView/FormFeesSection/FormFeesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/FormView/FormFeesSection/FormFeesSection.tsx -------------------------------------------------------------------------------- /src/components/common/FormView/FormPairSection/FormPairSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/FormView/FormPairSection/FormPairSection.tsx -------------------------------------------------------------------------------- /src/components/common/FormView/FormSlider/FormSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/FormView/FormSlider/FormSlider.tsx -------------------------------------------------------------------------------- /src/components/common/FormView/FormSpace/FormSpace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/FormView/FormSpace/FormSpace.tsx -------------------------------------------------------------------------------- /src/components/common/Icons/DotsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Icons/DotsIcon.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/CardanoUpdate/CardanoUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/CardanoUpdate/CardanoUpdate.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/DeprecatedPositions/DeprecatedPosition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/DeprecatedPositions/DeprecatedPosition.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/FooterNavigation/FooterNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/FooterNavigation/FooterNavigation.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/Glow/Glow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Glow/Glow.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/Glow/snek-img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Glow/snek-img-1.png -------------------------------------------------------------------------------- /src/components/common/Layout/Glow/snek-img-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Glow/snek-img-2.png -------------------------------------------------------------------------------- /src/components/common/Layout/Header/Analytics/AnalyticTag/AnalyticTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Header/Analytics/AnalyticTag/AnalyticTag.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/Header/Analytics/Analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Header/Analytics/Analytics.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/Header/BurgerMenu/BurgerMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Header/BurgerMenu/BurgerMenu.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/Header/BurgerMenu/ergopay-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Header/BurgerMenu/ergopay-icon.svg -------------------------------------------------------------------------------- /src/components/common/Layout/Header/ClaimSpfButton/ClaimSpfButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Header/ClaimSpfButton/ClaimSpfButton.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/Header/ClaimSpfButton/bottom-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Header/ClaimSpfButton/bottom-background.svg -------------------------------------------------------------------------------- /src/components/common/Layout/Header/ClaimSpfButton/spf-token.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Header/ClaimSpfButton/spf-token.svg -------------------------------------------------------------------------------- /src/components/common/Layout/Header/ClaimSpfButton/top-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Header/ClaimSpfButton/top-background.svg -------------------------------------------------------------------------------- /src/components/common/Layout/Header/ConnectWallet/ConnectWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Header/ConnectWallet/ConnectWallet.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/Header/Navigation/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Header/Navigation/Navigation.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/Header/NetworkDropdown/NetworkDropdown.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Header/NetworkDropdown/NetworkDropdown.less -------------------------------------------------------------------------------- /src/components/common/Layout/Header/NetworkDropdown/NetworkDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Header/NetworkDropdown/NetworkDropdown.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/Layout.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/NeedUpdateModal/NeedUpdateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/NeedUpdateModal/NeedUpdateModal.tsx -------------------------------------------------------------------------------- /src/components/common/Layout/OperationsHistory/OperationsHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/Layout/OperationsHistory/OperationsHistory.tsx -------------------------------------------------------------------------------- /src/components/common/OptionsButton/OptionsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/OptionsButton/OptionsButton.tsx -------------------------------------------------------------------------------- /src/components/common/TokenControl/AssetAmountInput/AssetAmountInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/TokenControl/AssetAmountInput/AssetAmountInput.tsx -------------------------------------------------------------------------------- /src/components/common/TokenControl/AssetAmountInput/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/TokenControl/AssetAmountInput/format.ts -------------------------------------------------------------------------------- /src/components/common/TokenControl/AssetBalance/AssetBalance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/TokenControl/AssetBalance/AssetBalance.tsx -------------------------------------------------------------------------------- /src/components/common/TokenControl/AssetControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/TokenControl/AssetControl.tsx -------------------------------------------------------------------------------- /src/components/common/TokenControl/AssetSelect/AssetSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/components/common/TokenControl/AssetSelect/AssetSelect.tsx -------------------------------------------------------------------------------- /src/context/AppLoadingContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/context/AppLoadingContext.tsx -------------------------------------------------------------------------------- /src/context/AppicationSettingsContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/context/AppicationSettingsContext.tsx -------------------------------------------------------------------------------- /src/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/context/index.ts -------------------------------------------------------------------------------- /src/gateway/analytics/fireOperationAnalyticsEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/analytics/fireOperationAnalyticsEvent.ts -------------------------------------------------------------------------------- /src/gateway/api/addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/addresses.ts -------------------------------------------------------------------------------- /src/gateway/api/ammPools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/ammPools.ts -------------------------------------------------------------------------------- /src/gateway/api/assetBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/assetBalance.ts -------------------------------------------------------------------------------- /src/gateway/api/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/assets.ts -------------------------------------------------------------------------------- /src/gateway/api/createPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/createPool.ts -------------------------------------------------------------------------------- /src/gateway/api/explorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/explorer.ts -------------------------------------------------------------------------------- /src/gateway/api/getPoolChartData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/getPoolChartData.ts -------------------------------------------------------------------------------- /src/gateway/api/hasNeedRefundOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/hasNeedRefundOperations.ts -------------------------------------------------------------------------------- /src/gateway/api/locks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/locks.ts -------------------------------------------------------------------------------- /src/gateway/api/networkAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/networkAsset.ts -------------------------------------------------------------------------------- /src/gateway/api/networkAssetBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/networkAssetBalance.ts -------------------------------------------------------------------------------- /src/gateway/api/networkContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/networkContext.ts -------------------------------------------------------------------------------- /src/gateway/api/operations/createPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/operations/createPool.ts -------------------------------------------------------------------------------- /src/gateway/api/operations/deposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/operations/deposit.ts -------------------------------------------------------------------------------- /src/gateway/api/operations/lmDeposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/operations/lmDeposit.ts -------------------------------------------------------------------------------- /src/gateway/api/operations/lmRedeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/operations/lmRedeem.ts -------------------------------------------------------------------------------- /src/gateway/api/operations/redeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/operations/redeem.ts -------------------------------------------------------------------------------- /src/gateway/api/operations/refund.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/operations/refund.ts -------------------------------------------------------------------------------- /src/gateway/api/operations/swap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/operations/swap.ts -------------------------------------------------------------------------------- /src/gateway/api/pendingOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/pendingOperations.ts -------------------------------------------------------------------------------- /src/gateway/api/platformStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/platformStats.ts -------------------------------------------------------------------------------- /src/gateway/api/positions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/positions.ts -------------------------------------------------------------------------------- /src/gateway/api/queuedOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/queuedOperation.ts -------------------------------------------------------------------------------- /src/gateway/api/supportedFeatures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/supportedFeatures.ts -------------------------------------------------------------------------------- /src/gateway/api/transactionsHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/transactionsHistory.ts -------------------------------------------------------------------------------- /src/gateway/api/useHandleCreatePoolMaxButtonClick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/useHandleCreatePoolMaxButtonClick.ts -------------------------------------------------------------------------------- /src/gateway/api/useHandleDepositMaxButtonClick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/useHandleDepositMaxButtonClick.ts -------------------------------------------------------------------------------- /src/gateway/api/useHandleSwapMaxButtonClick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/useHandleSwapMaxButtonClick.ts -------------------------------------------------------------------------------- /src/gateway/api/validationFees.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/validationFees.ts -------------------------------------------------------------------------------- /src/gateway/api/wallets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/api/wallets.ts -------------------------------------------------------------------------------- /src/gateway/common/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/common/network.ts -------------------------------------------------------------------------------- /src/gateway/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/settings/settings.ts -------------------------------------------------------------------------------- /src/gateway/utils/exploreAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/utils/exploreAddress.ts -------------------------------------------------------------------------------- /src/gateway/widgets/operationsSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/widgets/operationsSettings.ts -------------------------------------------------------------------------------- /src/gateway/widgets/refundConfirmationInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/widgets/refundConfirmationInfo.ts -------------------------------------------------------------------------------- /src/gateway/widgets/swapCallapse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/gateway/widgets/swapCallapse.ts -------------------------------------------------------------------------------- /src/hooks/useBodyClass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/hooks/useBodyClass.ts -------------------------------------------------------------------------------- /src/hooks/useGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/hooks/useGuard.ts -------------------------------------------------------------------------------- /src/hooks/useInterval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/hooks/useInterval.ts -------------------------------------------------------------------------------- /src/hooks/useLocale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/hooks/useLocale.ts -------------------------------------------------------------------------------- /src/hooks/useMetaThemeColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/hooks/useMetaThemeColor.ts -------------------------------------------------------------------------------- /src/hooks/useQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/hooks/useQuery.ts -------------------------------------------------------------------------------- /src/i18n/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/README.MD -------------------------------------------------------------------------------- /src/i18n/i18n.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/i18n.tsx -------------------------------------------------------------------------------- /src/i18n/locales/ar-SA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/ar-SA.po -------------------------------------------------------------------------------- /src/i18n/locales/cs-CZ.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/cs-CZ.po -------------------------------------------------------------------------------- /src/i18n/locales/de-DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/de-DE.po -------------------------------------------------------------------------------- /src/i18n/locales/en-US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/en-US.po -------------------------------------------------------------------------------- /src/i18n/locales/es-ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/es-ES.po -------------------------------------------------------------------------------- /src/i18n/locales/fr-FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/fr-FR.po -------------------------------------------------------------------------------- /src/i18n/locales/he-IL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/he-IL.po -------------------------------------------------------------------------------- /src/i18n/locales/id-ID.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/id-ID.po -------------------------------------------------------------------------------- /src/i18n/locales/it-IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/it-IT.po -------------------------------------------------------------------------------- /src/i18n/locales/ja-JP.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/ja-JP.po -------------------------------------------------------------------------------- /src/i18n/locales/pt-BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/pt-BR.po -------------------------------------------------------------------------------- /src/i18n/locales/pt-PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/pt-PT.po -------------------------------------------------------------------------------- /src/i18n/locales/ro-RO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/ro-RO.po -------------------------------------------------------------------------------- /src/i18n/locales/sk-SK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/sk-SK.po -------------------------------------------------------------------------------- /src/i18n/locales/tr-TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/tr-TR.po -------------------------------------------------------------------------------- /src/i18n/locales/zh-CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/zh-CN.po -------------------------------------------------------------------------------- /src/i18n/locales/zh-TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/i18n/locales/zh-TW.po -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/mappers/tokenMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/mappers/tokenMapper.ts -------------------------------------------------------------------------------- /src/mappers/varifiedTokensMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/mappers/varifiedTokensMapper.ts -------------------------------------------------------------------------------- /src/mappers/verifiedPoolsMapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/mappers/verifiedPoolsMapper.ts -------------------------------------------------------------------------------- /src/mocks/asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/mocks/asset.ts -------------------------------------------------------------------------------- /src/mocks/pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/mocks/pool.ts -------------------------------------------------------------------------------- /src/network/cardano/api/adaHandle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/adaHandle/index.ts -------------------------------------------------------------------------------- /src/network/cardano/api/adaRatio/adaRatio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/adaRatio/adaRatio.ts -------------------------------------------------------------------------------- /src/network/cardano/api/addresses/addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/addresses/addresses.ts -------------------------------------------------------------------------------- /src/network/cardano/api/ammPools/CardanoAmmPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/ammPools/CardanoAmmPool.ts -------------------------------------------------------------------------------- /src/network/cardano/api/ammPools/ammPools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/ammPools/ammPools.ts -------------------------------------------------------------------------------- /src/network/cardano/api/ammPools/analyticPoolNetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/ammPools/analyticPoolNetwork.ts -------------------------------------------------------------------------------- /src/network/cardano/api/ammPools/utils.ts: -------------------------------------------------------------------------------- 1 | export const a = 1; 2 | -------------------------------------------------------------------------------- /src/network/cardano/api/balance/assetBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/balance/assetBalance.ts -------------------------------------------------------------------------------- /src/network/cardano/api/balance/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/balance/balance.ts -------------------------------------------------------------------------------- /src/network/cardano/api/balance/lpBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/balance/lpBalance.ts -------------------------------------------------------------------------------- /src/network/cardano/api/balance/networkAssetBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/balance/networkAssetBalance.ts -------------------------------------------------------------------------------- /src/network/cardano/api/common/cardanoAssetInfo/getCardanoAssetInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/common/cardanoAssetInfo/getCardanoAssetInfo.ts -------------------------------------------------------------------------------- /src/network/cardano/api/common/cardanoAssetInfo/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/common/cardanoAssetInfo/mocks.ts -------------------------------------------------------------------------------- /src/network/cardano/api/common/cardanoNetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/common/cardanoNetwork.ts -------------------------------------------------------------------------------- /src/network/cardano/api/common/cardanoWasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/common/cardanoWasm.ts -------------------------------------------------------------------------------- /src/network/cardano/api/common/defaultTokenList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/common/defaultTokenList.ts -------------------------------------------------------------------------------- /src/network/cardano/api/common/tokenLocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/common/tokenLocks.ts -------------------------------------------------------------------------------- /src/network/cardano/api/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/const.ts -------------------------------------------------------------------------------- /src/network/cardano/api/lbspWhitelist/lbspWhitelist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/lbspWhitelist/lbspWhitelist.ts -------------------------------------------------------------------------------- /src/network/cardano/api/networkAsset/networkAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/networkAsset/networkAsset.ts -------------------------------------------------------------------------------- /src/network/cardano/api/networkContext/networkContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/networkContext/networkContext.ts -------------------------------------------------------------------------------- /src/network/cardano/api/operations/common/ammTxFeeMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/operations/common/ammTxFeeMapping.ts -------------------------------------------------------------------------------- /src/network/cardano/api/operations/common/inputSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/operations/common/inputSelector.ts -------------------------------------------------------------------------------- /src/network/cardano/api/operations/common/minExecutorReward.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/operations/common/minExecutorReward.ts -------------------------------------------------------------------------------- /src/network/cardano/api/operations/common/submitTxCandidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/operations/common/submitTxCandidate.ts -------------------------------------------------------------------------------- /src/network/cardano/api/operations/common/transactionBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/operations/common/transactionBuilder.ts -------------------------------------------------------------------------------- /src/network/cardano/api/operations/createPool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/operations/createPool.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/operations/deposit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/operations/deposit.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/operations/redeem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/operations/redeem.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/operations/refund.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/operations/refund.ts -------------------------------------------------------------------------------- /src/network/cardano/api/operations/swap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/operations/swap.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/platformStats/platformStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/platformStats/platformStats.ts -------------------------------------------------------------------------------- /src/network/cardano/api/poolChart/poolChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/poolChart/poolChart.ts -------------------------------------------------------------------------------- /src/network/cardano/api/positions/positions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/positions/positions.ts -------------------------------------------------------------------------------- /src/network/cardano/api/rewards/claimRewards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/rewards/claimRewards.ts -------------------------------------------------------------------------------- /src/network/cardano/api/rewards/rewards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/rewards/rewards.ts -------------------------------------------------------------------------------- /src/network/cardano/api/rewards/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/rewards/utils.ts -------------------------------------------------------------------------------- /src/network/cardano/api/tokens/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/tokens/tokens.ts -------------------------------------------------------------------------------- /src/network/cardano/api/transactionHistory/operationsHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/transactionHistory/operationsHistory.ts -------------------------------------------------------------------------------- /src/network/cardano/api/transactionHistory/types/AddLiquidityOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/transactionHistory/types/AddLiquidityOperation.ts -------------------------------------------------------------------------------- /src/network/cardano/api/transactionHistory/types/BaseOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/transactionHistory/types/BaseOperation.ts -------------------------------------------------------------------------------- /src/network/cardano/api/transactionHistory/types/OperationItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/transactionHistory/types/OperationItem.ts -------------------------------------------------------------------------------- /src/network/cardano/api/transactionHistory/types/SwapOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/transactionHistory/types/SwapOperation.ts -------------------------------------------------------------------------------- /src/network/cardano/api/utxos/utxos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/utxos/utxos.ts -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/common/AdditionalData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/common/AdditionalData.ts -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/common/BoxSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/common/BoxSelector.ts -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/common/Wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/common/Wallet.ts -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/common/WalletManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/common/WalletManager.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/common/old/CardanoWalletContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/common/old/CardanoWalletContract.ts -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/common/old/makeCardanoWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/common/old/makeCardanoWallet.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/connectedWalletChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/connectedWalletChange.ts -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/consts.ts -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/eternl/eternl-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/eternl/eternl-icon.svg -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/eternl/eternl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/eternl/eternl.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/exodus/exodus-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/exodus/exodus-icon.svg -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/exodus/exodus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/exodus/exodus.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/flint/flint-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/flint/flint-icon.svg -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/flint/flint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/flint/flint.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/gero/gero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/gero/gero.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/gero/gerowallet-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/gero/gerowallet-icon.svg -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/lace/lace-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/lace/lace-icon.svg -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/lace/lace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/lace/lace.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/nami/nami-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/nami/nami-icon.svg -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/nami/nami.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/nami/nami.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/nufi/nufi-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/nufi/nufi-icon.svg -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/nufi/nufi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/nufi/nufi.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/typhon/typhon-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/typhon/typhon-icon.svg -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/typhon/typhon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/typhon/typhon.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/vespr/vespr-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/vespr/vespr-icon.svg -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/vespr/vespr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/vespr/vespr.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/wallet.ts -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/walletConnect/walletConnect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/walletConnect/walletConnect.tsx -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/walletConnect/wc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/walletConnect/wc-logo.png -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/yoroi/yoroi-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/yoroi/yoroi-icon.svg -------------------------------------------------------------------------------- /src/network/cardano/api/wallet/yoroi/yoroi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/api/wallet/yoroi/yoroi.tsx -------------------------------------------------------------------------------- /src/network/cardano/cardano.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/cardano.ts -------------------------------------------------------------------------------- /src/network/cardano/components/FeesSkeletonLoading/FeesSkeletonLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/components/FeesSkeletonLoading/FeesSkeletonLoading.tsx -------------------------------------------------------------------------------- /src/network/cardano/initialized.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/initialized.ts -------------------------------------------------------------------------------- /src/network/cardano/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/settings/settings.ts -------------------------------------------------------------------------------- /src/network/cardano/utils/cardanoNetworkData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/utils/cardanoNetworkData.ts -------------------------------------------------------------------------------- /src/network/cardano/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/utils/utils.ts -------------------------------------------------------------------------------- /src/network/cardano/widgets/AdaHandle/ActiveAdaHandle/ActiveAdaHandle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/widgets/AdaHandle/ActiveAdaHandle/ActiveAdaHandle.tsx -------------------------------------------------------------------------------- /src/network/cardano/widgets/AdaHandle/AdaHandleModal/AdaHandleModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/widgets/AdaHandle/AdaHandleModal/AdaHandleModal.tsx -------------------------------------------------------------------------------- /src/network/cardano/widgets/AdaHandle/ada-handle-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/widgets/AdaHandle/ada-handle-icon.svg -------------------------------------------------------------------------------- /src/network/cardano/widgets/OperationSettings/OperationsSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/widgets/OperationSettings/OperationsSettings.tsx -------------------------------------------------------------------------------- /src/network/cardano/widgets/SwapCollapse/SwapCollapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/widgets/SwapCollapse/SwapCollapse.tsx -------------------------------------------------------------------------------- /src/network/cardano/widgets/common/useDepositTxInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/widgets/common/useDepositTxInfo.ts -------------------------------------------------------------------------------- /src/network/cardano/widgets/common/useRedeemTxInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/widgets/common/useRedeemTxInfo.ts -------------------------------------------------------------------------------- /src/network/cardano/widgets/common/useSwapTxInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/cardano/widgets/common/useSwapTxInfo.ts -------------------------------------------------------------------------------- /src/network/common/Network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/common/Network.ts -------------------------------------------------------------------------------- /src/network/common/NetworkContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/common/NetworkContext.ts -------------------------------------------------------------------------------- /src/network/common/NetworkData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/common/NetworkData.ts -------------------------------------------------------------------------------- /src/network/common/NetworkOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/common/NetworkOperations.ts -------------------------------------------------------------------------------- /src/network/common/NetworkSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/common/NetworkSettings.ts -------------------------------------------------------------------------------- /src/network/common/NetworkUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/common/NetworkUtils.ts -------------------------------------------------------------------------------- /src/network/common/NetworkWidgets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/common/NetworkWidgets.ts -------------------------------------------------------------------------------- /src/network/common/PlatformStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/common/PlatformStats.ts -------------------------------------------------------------------------------- /src/network/common/PoolChartDataParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/common/PoolChartDataParams.ts -------------------------------------------------------------------------------- /src/network/common/SupportedFeatures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/common/SupportedFeatures.ts -------------------------------------------------------------------------------- /src/network/common/Wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/common/Wallet.ts -------------------------------------------------------------------------------- /src/network/common/WalletManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/common/WalletManager.ts -------------------------------------------------------------------------------- /src/network/common/depositMaxButtonClickForNative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/common/depositMaxButtonClickForNative.ts -------------------------------------------------------------------------------- /src/network/ergo/analytics/ergopay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/analytics/ergopay.ts -------------------------------------------------------------------------------- /src/network/ergo/api/addresses/addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/addresses/addresses.ts -------------------------------------------------------------------------------- /src/network/ergo/api/ammPools/ErgoAmmPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/ammPools/ErgoAmmPool.ts -------------------------------------------------------------------------------- /src/network/ergo/api/ammPools/ammPools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/ammPools/ammPools.ts -------------------------------------------------------------------------------- /src/network/ergo/api/ammPools/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/ammPools/utils.ts -------------------------------------------------------------------------------- /src/network/ergo/api/ammPoolsStats/ammPoolsStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/ammPoolsStats/ammPoolsStats.ts -------------------------------------------------------------------------------- /src/network/ergo/api/assets/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/assets/assets.ts -------------------------------------------------------------------------------- /src/network/ergo/api/balance/assetBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/balance/assetBalance.ts -------------------------------------------------------------------------------- /src/network/ergo/api/balance/assetInfoManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/balance/assetInfoManager.ts -------------------------------------------------------------------------------- /src/network/ergo/api/balance/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/balance/common.ts -------------------------------------------------------------------------------- /src/network/ergo/api/balance/lpBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/balance/lpBalance.ts -------------------------------------------------------------------------------- /src/network/ergo/api/balance/networkAssetBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/balance/networkAssetBalance.ts -------------------------------------------------------------------------------- /src/network/ergo/api/common/AnalyticsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/common/AnalyticsData.ts -------------------------------------------------------------------------------- /src/network/ergo/api/common/assetInfoManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/common/assetInfoManager.ts -------------------------------------------------------------------------------- /src/network/ergo/api/common/availablePoolsOrTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/common/availablePoolsOrTokens.ts -------------------------------------------------------------------------------- /src/network/ergo/api/common/defaultTokenList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/common/defaultTokenList.ts -------------------------------------------------------------------------------- /src/network/ergo/api/common/rawAmmPools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/common/rawAmmPools.ts -------------------------------------------------------------------------------- /src/network/ergo/api/common/rawLmPools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/common/rawLmPools.ts -------------------------------------------------------------------------------- /src/network/ergo/api/common/tokenLocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/common/tokenLocks.ts -------------------------------------------------------------------------------- /src/network/ergo/api/ergoUsdRatio/ergoUsdRatio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/ergoUsdRatio/ergoUsdRatio.ts -------------------------------------------------------------------------------- /src/network/ergo/api/ergopay/getErgopayAddresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/ergopay/getErgopayAddresses.ts -------------------------------------------------------------------------------- /src/network/ergo/api/ergopay/getErgopayRequestId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/ergopay/getErgopayRequestId.ts -------------------------------------------------------------------------------- /src/network/ergo/api/locks/locks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/locks/locks.ts -------------------------------------------------------------------------------- /src/network/ergo/api/networkAsset/networkAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/networkAsset/networkAsset.ts -------------------------------------------------------------------------------- /src/network/ergo/api/networkContext/networkContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/networkContext/networkContext.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/common/mapToOperationOrEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/common/mapToOperationOrEmpty.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/common/toDexOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/common/toDexOperation.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/history/tabManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/history/tabManager.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/history/transactionHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/history/transactionHistory.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/history/transactionHistory.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/history/transactionHistory.worker.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/history/v2/operationsHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/history/v2/operationsHistory.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/history/v2/types/AddLiquidityOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/history/v2/types/AddLiquidityOperation.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/history/v2/types/BaseOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/history/v2/types/BaseOperation.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/history/v2/types/LmDepositOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/history/v2/types/LmDepositOperation.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/history/v2/types/LmRedeemOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/history/v2/types/LmRedeemOperation.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/history/v2/types/LockOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/history/v2/types/LockOperation.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/history/v2/types/OperationItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/history/v2/types/OperationItem.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/history/v2/types/SwapOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/history/v2/types/SwapOperation.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/operations.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/pending/inProgressOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/pending/inProgressOperations.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/pending/pendingOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/pending/pendingOperations.ts -------------------------------------------------------------------------------- /src/network/ergo/api/operations/pending/queuedOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/operations/pending/queuedOperation.ts -------------------------------------------------------------------------------- /src/network/ergo/api/platformStats/platformStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/platformStats/platformStats.ts -------------------------------------------------------------------------------- /src/network/ergo/api/poolChart/poolChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/poolChart/poolChart.ts -------------------------------------------------------------------------------- /src/network/ergo/api/positions/positions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/positions/positions.ts -------------------------------------------------------------------------------- /src/network/ergo/api/spfFaucet/claimSpf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/spfFaucet/claimSpf.ts -------------------------------------------------------------------------------- /src/network/ergo/api/spfFaucet/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/spfFaucet/common.ts -------------------------------------------------------------------------------- /src/network/ergo/api/spfFaucet/spfReward.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/spfFaucet/spfReward.ts -------------------------------------------------------------------------------- /src/network/ergo/api/spfFaucet/spfStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/spfFaucet/spfStatus.ts -------------------------------------------------------------------------------- /src/network/ergo/api/uiFee/uiFee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/uiFee/uiFee.ts -------------------------------------------------------------------------------- /src/network/ergo/api/utxos/utxos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/utxos/utxos.ts -------------------------------------------------------------------------------- /src/network/ergo/api/wallet/common/ErgoWalletContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/wallet/common/ErgoWalletContract.ts -------------------------------------------------------------------------------- /src/network/ergo/api/wallet/connectedWalletChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/wallet/connectedWalletChange.ts -------------------------------------------------------------------------------- /src/network/ergo/api/wallet/ergopay/ergopay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/wallet/ergopay/ergopay.tsx -------------------------------------------------------------------------------- /src/network/ergo/api/wallet/nautilus/connectWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/wallet/nautilus/connectWallet.tsx -------------------------------------------------------------------------------- /src/network/ergo/api/wallet/nautilus/getAddresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/wallet/nautilus/getAddresses.ts -------------------------------------------------------------------------------- /src/network/ergo/api/wallet/nautilus/getUtxos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/wallet/nautilus/getUtxos.ts -------------------------------------------------------------------------------- /src/network/ergo/api/wallet/nautilus/nautilus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/wallet/nautilus/nautilus.tsx -------------------------------------------------------------------------------- /src/network/ergo/api/wallet/nautilus/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/wallet/nautilus/sign.ts -------------------------------------------------------------------------------- /src/network/ergo/api/wallet/nautilus/signInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/wallet/nautilus/signInput.ts -------------------------------------------------------------------------------- /src/network/ergo/api/wallet/nautilus/submitTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/wallet/nautilus/submitTx.ts -------------------------------------------------------------------------------- /src/network/ergo/api/wallet/nautilus/walletSupportedFeatures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/wallet/nautilus/walletSupportedFeatures.ts -------------------------------------------------------------------------------- /src/network/ergo/api/wallet/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/api/wallet/wallet.ts -------------------------------------------------------------------------------- /src/network/ergo/ergo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/ergo.ts -------------------------------------------------------------------------------- /src/network/ergo/initialized.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/initialized.ts -------------------------------------------------------------------------------- /src/network/ergo/lm/api/farms/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/api/farms/analytics.ts -------------------------------------------------------------------------------- /src/network/ergo/lm/api/farms/farms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/api/farms/farms.ts -------------------------------------------------------------------------------- /src/network/ergo/lm/api/farms/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/api/farms/utils.ts -------------------------------------------------------------------------------- /src/network/ergo/lm/api/stakes/stakes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/api/stakes/stakes.ts -------------------------------------------------------------------------------- /src/network/ergo/lm/models/ErgoFarm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/models/ErgoFarm.ts -------------------------------------------------------------------------------- /src/network/ergo/lm/models/Stake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/models/Stake.ts -------------------------------------------------------------------------------- /src/network/ergo/lm/operations/common/inputSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/operations/common/inputSelector.ts -------------------------------------------------------------------------------- /src/network/ergo/lm/operations/common/lmPoolActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/operations/common/lmPoolActions.ts -------------------------------------------------------------------------------- /src/network/ergo/lm/operations/lmDeposit/createLmDepositData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/operations/lmDeposit/createLmDepositData.ts -------------------------------------------------------------------------------- /src/network/ergo/lm/operations/lmDeposit/ergopayLmDeposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/operations/lmDeposit/ergopayLmDeposit.ts -------------------------------------------------------------------------------- /src/network/ergo/lm/operations/lmDeposit/lmDeposit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/operations/lmDeposit/lmDeposit.tsx -------------------------------------------------------------------------------- /src/network/ergo/lm/operations/lmDeposit/walletLmDeposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/operations/lmDeposit/walletLmDeposit.ts -------------------------------------------------------------------------------- /src/network/ergo/lm/operations/lmRedeem/createLmRedeemData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/operations/lmRedeem/createLmRedeemData.ts -------------------------------------------------------------------------------- /src/network/ergo/lm/operations/lmRedeem/egopayLmRedeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/operations/lmRedeem/egopayLmRedeem.ts -------------------------------------------------------------------------------- /src/network/ergo/lm/operations/lmRedeem/lmRedeem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/operations/lmRedeem/lmRedeem.tsx -------------------------------------------------------------------------------- /src/network/ergo/lm/operations/lmRedeem/walletLmRedeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/lm/operations/lmRedeem/walletLmRedeem.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/common/ergopayMessageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/common/ergopayMessageManager.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/common/getInputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/common/getInputs.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/common/getTxContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/common/getTxContext.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/common/makeTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/common/makeTarget.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/common/nativeFeePoolActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/common/nativeFeePoolActions.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/common/proverMediator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/common/proverMediator.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/common/submitErgopayTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/common/submitErgopayTx.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/common/submitTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/common/submitTx.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/createPool/createCreatePoolTxData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/createPool/createCreatePoolTxData.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/createPool/createPool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/createPool/createPool.tsx -------------------------------------------------------------------------------- /src/network/ergo/operations/createPool/useCreatePoolValidators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/createPool/useCreatePoolValidators.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/createPool/walletCreatePool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/createPool/walletCreatePool.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/deposit/deposit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/deposit/deposit.tsx -------------------------------------------------------------------------------- /src/network/ergo/operations/deposit/ergopayDeposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/deposit/ergopayDeposit.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/deposit/nativeFee/createDepositTxData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/deposit/nativeFee/createDepositTxData.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/deposit/nativeFee/ergopayDeposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/deposit/nativeFee/ergopayDeposit.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/deposit/nativeFee/walletDeposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/deposit/nativeFee/walletDeposit.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/deposit/spfFee/createDepositTxData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/deposit/spfFee/createDepositTxData.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/deposit/spfFee/ergopayDeposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/deposit/spfFee/ergopayDeposit.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/deposit/spfFee/walletDeposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/deposit/spfFee/walletDeposit.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/deposit/useDepositValidators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/deposit/useDepositValidators.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/deposit/useHandleCreatePoolMaxButtonClick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/deposit/useHandleCreatePoolMaxButtonClick.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/deposit/useHandleDepositMaxButtonClick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/deposit/useHandleDepositMaxButtonClick.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/deposit/walletDeposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/deposit/walletDeposit.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/redeem/ergopayRedeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/redeem/ergopayRedeem.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/redeem/nativeFee/createRedeemTxData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/redeem/nativeFee/createRedeemTxData.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/redeem/nativeFee/ergopayRedeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/redeem/nativeFee/ergopayRedeem.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/redeem/nativeFee/walletRedeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/redeem/nativeFee/walletRedeem.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/redeem/redeem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/redeem/redeem.tsx -------------------------------------------------------------------------------- /src/network/ergo/operations/redeem/spfFee/createRedeemTxData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/redeem/spfFee/createRedeemTxData.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/redeem/spfFee/ergopayRedeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/redeem/spfFee/ergopayRedeem.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/redeem/spfFee/walletRedeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/redeem/spfFee/walletRedeem.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/redeem/walletRedeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/redeem/walletRedeem.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/refund/createRefundTxData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/refund/createRefundTxData.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/refund/ergopayRefund.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/refund/ergopayRefund.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/refund/refund.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/refund/refund.tsx -------------------------------------------------------------------------------- /src/network/ergo/operations/refund/walletRefund.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/refund/walletRefund.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/swap/ergopaySwap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/swap/ergopaySwap.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/swap/nativeFee/createSwapTxData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/swap/nativeFee/createSwapTxData.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/swap/nativeFee/ergopaySwap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/swap/nativeFee/ergopaySwap.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/swap/nativeFee/walletSwap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/swap/nativeFee/walletSwap.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/swap/spfFee/createSwapTxData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/swap/spfFee/createSwapTxData.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/swap/spfFee/ergopaySwap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/swap/spfFee/ergopaySwap.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/swap/spfFee/walletSwap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/swap/spfFee/walletSwap.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/swap/swap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/swap/swap.tsx -------------------------------------------------------------------------------- /src/network/ergo/operations/swap/useHandleSwapMaxButtonClick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/swap/useHandleSwapMaxButtonClick.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/swap/useSwapValidators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/swap/useSwapValidators.ts -------------------------------------------------------------------------------- /src/network/ergo/operations/swap/walletSwap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/operations/swap/walletSwap.ts -------------------------------------------------------------------------------- /src/network/ergo/settings/executionFee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/settings/executionFee.ts -------------------------------------------------------------------------------- /src/network/ergo/settings/executionFee/executionFee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/settings/executionFee/executionFee.ts -------------------------------------------------------------------------------- /src/network/ergo/settings/executionFee/nativeExecutionFee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/settings/executionFee/nativeExecutionFee.ts -------------------------------------------------------------------------------- /src/network/ergo/settings/executionFee/spfExecutionFee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/settings/executionFee/spfExecutionFee.ts -------------------------------------------------------------------------------- /src/network/ergo/settings/minerFee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/settings/minerFee.ts -------------------------------------------------------------------------------- /src/network/ergo/settings/nitro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/settings/nitro.ts -------------------------------------------------------------------------------- /src/network/ergo/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/settings/settings.ts -------------------------------------------------------------------------------- /src/network/ergo/settings/slippage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/settings/slippage.ts -------------------------------------------------------------------------------- /src/network/ergo/settings/totalFees.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/settings/totalFees.ts -------------------------------------------------------------------------------- /src/network/ergo/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/utils/utils.ts -------------------------------------------------------------------------------- /src/network/ergo/widgets/DepositOpenWallet/DepositOpenWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/widgets/DepositOpenWallet/DepositOpenWallet.tsx -------------------------------------------------------------------------------- /src/network/ergo/widgets/ErgoPayModal/ErgoPayModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/widgets/ErgoPayModal/ErgoPayModal.tsx -------------------------------------------------------------------------------- /src/network/ergo/widgets/ErgoPayModal/common/ergopayLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/widgets/ErgoPayModal/common/ergopayLinks.ts -------------------------------------------------------------------------------- /src/network/ergo/widgets/LmDepositOpenWallet/LmDepositOpenWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/widgets/LmDepositOpenWallet/LmDepositOpenWallet.tsx -------------------------------------------------------------------------------- /src/network/ergo/widgets/LmRedeemOpenWallet/LmRedeemOpenWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/widgets/LmRedeemOpenWallet/LmRedeemOpenWallet.tsx -------------------------------------------------------------------------------- /src/network/ergo/widgets/OperationSettings/OperationsSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/widgets/OperationSettings/OperationsSettings.tsx -------------------------------------------------------------------------------- /src/network/ergo/widgets/RedeemOpenWallet/RedeemOpenWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/widgets/RedeemOpenWallet/RedeemOpenWallet.tsx -------------------------------------------------------------------------------- /src/network/ergo/widgets/RefundOpenWallet/RefundOpenWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/widgets/RefundOpenWallet/RefundOpenWallet.tsx -------------------------------------------------------------------------------- /src/network/ergo/widgets/SwapCollapse/SwapCollapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/widgets/SwapCollapse/SwapCollapse.tsx -------------------------------------------------------------------------------- /src/network/ergo/widgets/SwapConfirmationModal/SwapConfirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/widgets/SwapConfirmationModal/SwapConfirmationModal.tsx -------------------------------------------------------------------------------- /src/network/ergo/widgets/SwapOpenWallet/SwapOpenWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/network/ergo/widgets/SwapOpenWallet/SwapOpenWallet.tsx -------------------------------------------------------------------------------- /src/nodespecific.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/nodespecific.ts -------------------------------------------------------------------------------- /src/pages/AddLiquidity/AddLiquidity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/AddLiquidity/AddLiquidity.tsx -------------------------------------------------------------------------------- /src/pages/AddLiquidityOrCreatePool/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/AddLiquidityOrCreatePool/common/utils.ts -------------------------------------------------------------------------------- /src/pages/CreatePool/CreatePool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/CreatePool/CreatePool.tsx -------------------------------------------------------------------------------- /src/pages/CreatePool/CreatePoolFormModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/CreatePool/CreatePoolFormModel.ts -------------------------------------------------------------------------------- /src/pages/CreatePool/FeeSelector/FeeBox/FeeBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/CreatePool/FeeSelector/FeeBox/FeeBox.tsx -------------------------------------------------------------------------------- /src/pages/CreatePool/FeeSelector/FeeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/CreatePool/FeeSelector/FeeSelector.tsx -------------------------------------------------------------------------------- /src/pages/CreatePool/InitialPrice/InitialPriceInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/CreatePool/InitialPrice/InitialPriceInput.tsx -------------------------------------------------------------------------------- /src/pages/CreatePool/Overlay/Overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/CreatePool/Overlay/Overlay.tsx -------------------------------------------------------------------------------- /src/pages/Farms/FarmGridView/FarmCardView/FarmCardView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmGridView/FarmCardView/FarmCardView.tsx -------------------------------------------------------------------------------- /src/pages/Farms/FarmGridView/FarmGridView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmGridView/FarmGridView.tsx -------------------------------------------------------------------------------- /src/pages/Farms/FarmGuides/FarmGuides.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmGuides/FarmGuides.tsx -------------------------------------------------------------------------------- /src/pages/Farms/FarmOperationModal/FarmOperationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmOperationModal/FarmOperationModal.tsx -------------------------------------------------------------------------------- /src/pages/Farms/FarmTableView/FarmTableView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmTableView/FarmTableView.tsx -------------------------------------------------------------------------------- /src/pages/Farms/FarmTableView/columns/FarmAprColumn/FarmAprColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmTableView/columns/FarmAprColumn/FarmAprColumn.tsx -------------------------------------------------------------------------------- /src/pages/Farms/FarmTableView/columns/FarmPairColumn/FarmPairColumn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmTableView/columns/FarmPairColumn/FarmPairColumn.tsx -------------------------------------------------------------------------------- /src/pages/Farms/FarmTableView/common/FarmAction/FarmAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmTableView/common/FarmAction/FarmAction.tsx -------------------------------------------------------------------------------- /src/pages/Farms/FarmTopPanel/CreateFarmModal/ConfirmFarmCreateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmTopPanel/CreateFarmModal/ConfirmFarmCreateModal.tsx -------------------------------------------------------------------------------- /src/pages/Farms/FarmTopPanel/CreateFarmModal/CreateFarmFormModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmTopPanel/CreateFarmModal/CreateFarmFormModel.ts -------------------------------------------------------------------------------- /src/pages/Farms/FarmTopPanel/CreateFarmModal/validators/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmTopPanel/CreateFarmModal/validators/validators.ts -------------------------------------------------------------------------------- /src/pages/Farms/FarmTopPanel/FarmStateFilter/FarmStateFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmTopPanel/FarmStateFilter/FarmStateFilter.tsx -------------------------------------------------------------------------------- /src/pages/Farms/FarmTopPanel/FarmTopPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmTopPanel/FarmTopPanel.tsx -------------------------------------------------------------------------------- /src/pages/Farms/FarmTopPanel/FarmViewModeSwitch/FarmViewMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmTopPanel/FarmViewModeSwitch/FarmViewMode.ts -------------------------------------------------------------------------------- /src/pages/Farms/FarmTopPanel/FarmViewModeSwitch/FarmViewModeSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmTopPanel/FarmViewModeSwitch/FarmViewModeSwitch.tsx -------------------------------------------------------------------------------- /src/pages/Farms/FarmTopPanel/MyFarmsFilter/MyFarmsFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/FarmTopPanel/MyFarmsFilter/MyFarmsFilter.tsx -------------------------------------------------------------------------------- /src/pages/Farms/Farms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/Farms.tsx -------------------------------------------------------------------------------- /src/pages/Farms/types/FarmTabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/types/FarmTabs.ts -------------------------------------------------------------------------------- /src/pages/Farms/types/FarmViewMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Farms/types/FarmViewMode.ts -------------------------------------------------------------------------------- /src/pages/IspoRewards/IspoRewards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/IspoRewards/IspoRewards.tsx -------------------------------------------------------------------------------- /src/pages/Liquidity/Liquidity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/Liquidity.tsx -------------------------------------------------------------------------------- /src/pages/Liquidity/common/components/LiquidityFilter/LiquidityFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/common/components/LiquidityFilter/LiquidityFilter.tsx -------------------------------------------------------------------------------- /src/pages/Liquidity/common/types/LiquidityActiveStateProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/common/types/LiquidityActiveStateProps.ts -------------------------------------------------------------------------------- /src/pages/Liquidity/common/types/LiquidityFilterProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/common/types/LiquidityFilterProps.ts -------------------------------------------------------------------------------- /src/pages/Liquidity/common/types/LiquidityLayoutProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/common/types/LiquidityLayoutProps.ts -------------------------------------------------------------------------------- /src/pages/Liquidity/common/types/LiquidityLockedPositionsProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/common/types/LiquidityLockedPositionsProps.ts -------------------------------------------------------------------------------- /src/pages/Liquidity/common/types/LiquidityPoolOrPositionDetailsProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/common/types/LiquidityPoolOrPositionDetailsProps.ts -------------------------------------------------------------------------------- /src/pages/Liquidity/common/types/LiquidityPoolsOverviewProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/common/types/LiquidityPoolsOverviewProps.ts -------------------------------------------------------------------------------- /src/pages/Liquidity/common/types/LiquiditySearchProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/common/types/LiquiditySearchProps.ts -------------------------------------------------------------------------------- /src/pages/Liquidity/common/types/LiquidityState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/common/types/LiquidityState.ts -------------------------------------------------------------------------------- /src/pages/Liquidity/common/types/LiquidityYourPositionsProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/common/types/LiquidityYourPositionsProps.ts -------------------------------------------------------------------------------- /src/pages/Liquidity/common/types/PoolsOrPositionsTableViewProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/common/types/PoolsOrPositionsTableViewProps.ts -------------------------------------------------------------------------------- /src/pages/Liquidity/default/LiquidityDefaultLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/default/LiquidityDefaultLayout.tsx -------------------------------------------------------------------------------- /src/pages/Liquidity/default/components/PoolsOverview/PoolsOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/default/components/PoolsOverview/PoolsOverview.tsx -------------------------------------------------------------------------------- /src/pages/Liquidity/default/components/YourPositions/YourPositions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/default/components/YourPositions/YourPositions.tsx -------------------------------------------------------------------------------- /src/pages/Liquidity/mobile/LiquidityMobileLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/mobile/LiquidityMobileLayout.tsx -------------------------------------------------------------------------------- /src/pages/Liquidity/mobile/common/DetailsBox/DetailsBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/mobile/common/DetailsBox/DetailsBox.tsx -------------------------------------------------------------------------------- /src/pages/Liquidity/mobile/common/LockedPositions/LockedPositions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/mobile/common/LockedPositions/LockedPositions.tsx -------------------------------------------------------------------------------- /src/pages/Liquidity/mobile/components/PoolsOverview/PoolsOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/mobile/components/PoolsOverview/PoolsOverview.tsx -------------------------------------------------------------------------------- /src/pages/Liquidity/mobile/components/YourPositions/YourPositions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/mobile/components/YourPositions/YourPositions.tsx -------------------------------------------------------------------------------- /src/pages/Liquidity/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Liquidity/utils.ts -------------------------------------------------------------------------------- /src/pages/LockLiquidity/LockLiquidity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/LockLiquidity/LockLiquidity.tsx -------------------------------------------------------------------------------- /src/pages/LockLiquidity/LockLiquidityModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/LockLiquidity/LockLiquidityModel.ts -------------------------------------------------------------------------------- /src/pages/LockLiquidity/cardano/CardanoLockLiquidity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/LockLiquidity/cardano/CardanoLockLiquidity.tsx -------------------------------------------------------------------------------- /src/pages/LockLiquidity/ergo/ErgoLockLiquidity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/LockLiquidity/ergo/ErgoLockLiquidity.tsx -------------------------------------------------------------------------------- /src/pages/PoolOverview/AmmPoolConfidenceAnalytic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/PoolOverview/AmmPoolConfidenceAnalytic.ts -------------------------------------------------------------------------------- /src/pages/PoolOverview/LockLiquidity/LockLiquidity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/PoolOverview/LockLiquidity/LockLiquidity.less -------------------------------------------------------------------------------- /src/pages/PoolOverview/LockLiquidity/LockLiquidity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/PoolOverview/LockLiquidity/LockLiquidity.tsx -------------------------------------------------------------------------------- /src/pages/PoolOverview/PoolInfoView/MyLiquidity/MyLiquidity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/PoolOverview/PoolInfoView/MyLiquidity/MyLiquidity.tsx -------------------------------------------------------------------------------- /src/pages/PoolOverview/PoolInfoView/PoolFeeTag/PoolFeeTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/PoolOverview/PoolInfoView/PoolFeeTag/PoolFeeTag.tsx -------------------------------------------------------------------------------- /src/pages/PoolOverview/PoolInfoView/PoolInfoView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/PoolOverview/PoolInfoView/PoolInfoView.tsx -------------------------------------------------------------------------------- /src/pages/PoolOverview/PoolInfoView/TotalLiquidity/TotalLiquidity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/PoolOverview/PoolInfoView/TotalLiquidity/TotalLiquidity.tsx -------------------------------------------------------------------------------- /src/pages/PoolOverview/PoolOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/PoolOverview/PoolOverview.tsx -------------------------------------------------------------------------------- /src/pages/PoolOverview/PoolRatio/PoolRatio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/PoolOverview/PoolRatio/PoolRatio.tsx -------------------------------------------------------------------------------- /src/pages/PoolOverview/PriceHistory/Difference/Difference.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/PoolOverview/PriceHistory/Difference/Difference.tsx -------------------------------------------------------------------------------- /src/pages/PoolOverview/PriceHistory/PriceHistory.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/PoolOverview/PriceHistory/PriceHistory.less -------------------------------------------------------------------------------- /src/pages/PoolOverview/PriceHistory/PriceHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/PoolOverview/PriceHistory/PriceHistory.tsx -------------------------------------------------------------------------------- /src/pages/RelockLiquidity/RelockLiquidity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/RelockLiquidity/RelockLiquidity.tsx -------------------------------------------------------------------------------- /src/pages/RemoveLiquidity/RemoveLiquidity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/RemoveLiquidity/RemoveLiquidity.tsx -------------------------------------------------------------------------------- /src/pages/RemoveLiquidity/RemoveLiquidityFormModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/RemoveLiquidity/RemoveLiquidityFormModel.ts -------------------------------------------------------------------------------- /src/pages/Rewards/Rewards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Rewards/Rewards.tsx -------------------------------------------------------------------------------- /src/pages/Rewards/RewardsBugFixing/RewardsBugFixing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Rewards/RewardsBugFixing/RewardsBugFixing.tsx -------------------------------------------------------------------------------- /src/pages/Rewards/RewardsDashboard/RewardsDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Rewards/RewardsDashboard/RewardsDashboard.tsx -------------------------------------------------------------------------------- /src/pages/Rewards/RewardsError/RewardsError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Rewards/RewardsError/RewardsError.tsx -------------------------------------------------------------------------------- /src/pages/Rewards/Tags/RewardInfoTag/RewardInfoTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Rewards/Tags/RewardInfoTag/RewardInfoTag.tsx -------------------------------------------------------------------------------- /src/pages/Rewards/Tags/RewardStatusTag/RewardStatusTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Rewards/Tags/RewardStatusTag/RewardStatusTag.tsx -------------------------------------------------------------------------------- /src/pages/Swap/PoolSelector/PoolSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/PoolSelector/PoolSelector.tsx -------------------------------------------------------------------------------- /src/pages/Swap/PoolSelector/PoolSelectorModal/PoolSelectorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/PoolSelector/PoolSelectorModal/PoolSelectorModal.tsx -------------------------------------------------------------------------------- /src/pages/Swap/PriceImpactWarning/PriceImpactWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/PriceImpactWarning/PriceImpactWarning.tsx -------------------------------------------------------------------------------- /src/pages/Swap/Swap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/Swap.tsx -------------------------------------------------------------------------------- /src/pages/Swap/SwapFormModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/SwapFormModel.ts -------------------------------------------------------------------------------- /src/pages/Swap/SwapGraph/Difference/Difference.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/SwapGraph/Difference/Difference.tsx -------------------------------------------------------------------------------- /src/pages/Swap/SwapGraph/SwapGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/SwapGraph/SwapGraph.tsx -------------------------------------------------------------------------------- /src/pages/Swap/SwapGraph/useAggregatedByDateData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/SwapGraph/useAggregatedByDateData.ts -------------------------------------------------------------------------------- /src/pages/Swap/SwapGraph/usePeriodSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/SwapGraph/usePeriodSettings.ts -------------------------------------------------------------------------------- /src/pages/Swap/SwapGraph/useTicks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/SwapGraph/useTicks.ts -------------------------------------------------------------------------------- /src/pages/Swap/SwitchButton/SwitchButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/SwitchButton/SwitchButton.tsx -------------------------------------------------------------------------------- /src/pages/Swap/YieldFarmingBadge/YieldFarmingBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/YieldFarmingBadge/YieldFarmingBadge.tsx -------------------------------------------------------------------------------- /src/pages/Swap/YieldFarmingBadge/banner-bg-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/YieldFarmingBadge/banner-bg-left.png -------------------------------------------------------------------------------- /src/pages/Swap/YieldFarmingBadge/banner-bg-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/YieldFarmingBadge/banner-bg-right.png -------------------------------------------------------------------------------- /src/pages/Swap/YieldFarmingBadge/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/Swap/YieldFarmingBadge/link.svg -------------------------------------------------------------------------------- /src/pages/WithdrawalLiquidity/WithdrawalLiquidity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/WithdrawalLiquidity/WithdrawalLiquidity.tsx -------------------------------------------------------------------------------- /src/pages/WithdrawalLiquidity/cardano/CardanoWithdrawalLiquidity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/WithdrawalLiquidity/cardano/CardanoWithdrawalLiquidity.tsx -------------------------------------------------------------------------------- /src/pages/WithdrawalLiquidity/ergo/ErgoWithdrawalLiquidity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/pages/WithdrawalLiquidity/ergo/ErgoWithdrawalLiquidity.tsx -------------------------------------------------------------------------------- /src/services/amm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/services/amm.ts -------------------------------------------------------------------------------- /src/services/defaultTxAssembler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/services/defaultTxAssembler.ts -------------------------------------------------------------------------------- /src/services/explorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/services/explorer.ts -------------------------------------------------------------------------------- /src/services/locker/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/services/locker/parser.ts -------------------------------------------------------------------------------- /src/services/networkHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/services/networkHistory.ts -------------------------------------------------------------------------------- /src/services/new/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/services/new/analytics.ts -------------------------------------------------------------------------------- /src/services/notifications/CookiePolicy/CookiePolicy.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/services/notifications/CookiePolicy/CookiePolicy.less -------------------------------------------------------------------------------- /src/services/notifications/CookiePolicy/CookiePolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/services/notifications/CookiePolicy/CookiePolicy.tsx -------------------------------------------------------------------------------- /src/services/notifications/RefundOperation/RefundOperation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/services/notifications/RefundOperation/RefundOperation.tsx -------------------------------------------------------------------------------- /src/services/notifications/notificationKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/services/notifications/notificationKeys.ts -------------------------------------------------------------------------------- /src/services/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/services/number.ts -------------------------------------------------------------------------------- /src/services/poolActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/services/poolActions.ts -------------------------------------------------------------------------------- /src/services/yoroi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/services/yoroi/index.ts -------------------------------------------------------------------------------- /src/services/yoroi/prover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/services/yoroi/prover.ts -------------------------------------------------------------------------------- /src/utils/adaHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/adaHandle.ts -------------------------------------------------------------------------------- /src/utils/ammMath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/ammMath.ts -------------------------------------------------------------------------------- /src/utils/ammOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/ammOperations.ts -------------------------------------------------------------------------------- /src/utils/analytics/mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/analytics/mapper.ts -------------------------------------------------------------------------------- /src/utils/checkPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/checkPool.ts -------------------------------------------------------------------------------- /src/utils/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/cookies.ts -------------------------------------------------------------------------------- /src/utils/getListAvailableTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/getListAvailableTokens.ts -------------------------------------------------------------------------------- /src/utils/lbsp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/lbsp.ts -------------------------------------------------------------------------------- /src/utils/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/map.ts -------------------------------------------------------------------------------- /src/utils/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/math.ts -------------------------------------------------------------------------------- /src/utils/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/network.ts -------------------------------------------------------------------------------- /src/utils/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/numbers.ts -------------------------------------------------------------------------------- /src/utils/osTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/osTheme.ts -------------------------------------------------------------------------------- /src/utils/pool/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/pool/index.ts -------------------------------------------------------------------------------- /src/utils/price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/price.ts -------------------------------------------------------------------------------- /src/utils/specialPools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/specialPools.ts -------------------------------------------------------------------------------- /src/utils/string/addres.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/string/addres.ts -------------------------------------------------------------------------------- /src/utils/string/splitStr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/string/splitStr.ts -------------------------------------------------------------------------------- /src/utils/string/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/string/string.ts -------------------------------------------------------------------------------- /src/utils/string/txId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/string/txId.ts -------------------------------------------------------------------------------- /src/utils/subjectToId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/subjectToId.ts -------------------------------------------------------------------------------- /src/utils/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/transactions.ts -------------------------------------------------------------------------------- /src/utils/userAgent.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/utils/verification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/verification.ts -------------------------------------------------------------------------------- /src/utils/walletMath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/utils/walletMath.ts -------------------------------------------------------------------------------- /src/vite-env-override.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/vite-env-override.d.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spectrum-finance/interface/HEAD/yarn.lock --------------------------------------------------------------------------------