├── .browserslistrc ├── .editorconfig ├── .github └── pull_request_template.md ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc.js ├── Dockerfile ├── Jenkinsfile ├── Jenkinsfile-UCAN ├── Jenkinsfile-dast ├── LICENSE ├── README.md ├── SECURITY.md ├── cypress.json ├── electron.vite.config.ts ├── electron ├── background.ts ├── main │ └── index.ts └── preload │ ├── index.d.ts │ └── index.ts ├── env.json ├── eslint.config.mjs ├── index.html ├── package.json ├── postcss.config.js ├── public ├── .well-known │ └── walletconnect.txt ├── asset-owner │ ├── dark-hero.png │ ├── dark.png │ ├── light-hero.png │ └── light.png ├── browser-notification │ ├── chrome.png │ └── rotate-phone-tg.png ├── card │ ├── sora-card-front.png │ └── sora-card.png ├── env.json ├── favicon.ico ├── marketing.json ├── marketing │ ├── card.png │ ├── google.png │ ├── now_in_telegram.png │ ├── polkaswap.png │ ├── soraV3.png │ └── ton.png ├── point-system │ ├── bridges.svg │ ├── governance.svg │ ├── kensetsu.svg │ ├── liquidity.svg │ ├── network_fee.svg │ ├── orderbook.svg │ ├── referral_rewards.svg │ ├── staking.svg │ └── xor_burned.svg ├── points │ ├── dark │ │ ├── bridge.png │ │ └── referrals.png │ └── light │ │ ├── bridge.png │ │ └── referrals.png ├── polkaswap-share-image.jpg └── wallet │ ├── Fearless.svg │ ├── Metamask.svg │ ├── SubWallet.svg │ ├── TrustWallet.svg │ └── WalletConnect.svg ├── scripts ├── contracts │ └── bridge │ │ ├── Bridge.sol │ │ └── BridgeEVM.sol ├── lang │ ├── fix.ts │ ├── generate.ts │ └── utils.ts └── ucan │ ├── README.md │ ├── generateNftServiceKeypair.js │ ├── package-lock.json │ └── package.json ├── src ├── App.vue ├── abi │ └── ethereum │ │ ├── internal │ │ └── MASTER.json │ │ └── other │ │ ├── BRIDGE.json │ │ ├── ERC20.json │ │ └── moonbeam │ │ └── xTokens.json ├── api │ └── index.ts ├── assets │ ├── fonts │ │ └── polkaswap_icons.ttf │ └── img │ │ ├── header-error.svg │ │ ├── header-wait.svg │ │ ├── invited-users.svg │ │ ├── mobile │ │ ├── app-store-logo.svg │ │ ├── google-play-logo.svg │ │ ├── qr-code.svg │ │ ├── rotate_phone.svg │ │ ├── sora-app-left.png │ │ └── sora-app-right.png │ │ ├── networks │ │ ├── acala.svg │ │ ├── alphanet.svg │ │ ├── astar.svg │ │ ├── avalanche.svg │ │ ├── binance-smart-chain.svg │ │ ├── curio.svg │ │ ├── ethereum-classic.svg │ │ ├── ethereum.svg │ │ ├── karura.svg │ │ ├── klaytn.svg │ │ ├── kusama.svg │ │ ├── liberland.svg │ │ ├── moonbase.svg │ │ ├── moonbeam.svg │ │ ├── polkadot.svg │ │ ├── polygon.svg │ │ ├── rococo.svg │ │ ├── shiden.svg │ │ ├── sora-kusama.svg │ │ ├── sora-polkadot.svg │ │ └── sora.svg │ │ ├── no-results.svg │ │ ├── points │ │ ├── header.png │ │ ├── sora-card.png │ │ └── soratopia.png │ │ ├── pswap-loader.svg │ │ ├── pswap.svg │ │ ├── status-error.svg │ │ ├── status-pending.svg │ │ └── status-success.svg ├── components │ ├── App │ │ ├── Alerts │ │ │ ├── AlertList.vue │ │ │ ├── Alerts.vue │ │ │ └── CreateAlert.vue │ │ ├── BrowserNotification │ │ │ ├── BlockedDialog.vue │ │ │ ├── BlockedRotatePhone.vue │ │ │ ├── EnableDialog.vue │ │ │ └── LocalStorageOverride.vue │ │ ├── Footer │ │ │ ├── AppFooter.vue │ │ │ ├── FooterPopper.vue │ │ │ ├── Indexer │ │ │ │ ├── SelectIndexer.vue │ │ │ │ └── consts.ts │ │ │ ├── NoInternetDialog.vue │ │ │ └── StatisticsDialog.vue │ │ ├── Header │ │ │ ├── AppAccountButton.vue │ │ │ ├── AppDisclaimer.vue │ │ │ ├── AppHeader.vue │ │ │ ├── AppHeaderMenu.vue │ │ │ ├── AppLogoButton.vue │ │ │ └── AppMarketing.vue │ │ ├── Menu │ │ │ ├── AppInfoPopper.vue │ │ │ ├── AppMenu.vue │ │ │ └── SidebarItemContent.vue │ │ ├── MobilePopup.vue │ │ └── Settings │ │ │ ├── Currency │ │ │ └── SelectCurrencyDialog.vue │ │ │ ├── Language │ │ │ └── SelectLanguageDialog.vue │ │ │ ├── Node │ │ │ ├── NodeInfo.vue │ │ │ ├── SelectNode.vue │ │ │ ├── SelectNodeDialog.vue │ │ │ ├── consts.ts │ │ │ └── utils.ts │ │ │ └── Telegram │ │ │ ├── AccelerationAccessDialog.vue │ │ │ └── RotatePhoneDialog.vue │ ├── mixins │ │ ├── AssetsSearchMixin.ts │ │ ├── BridgeHistoryMixin.ts │ │ ├── BridgeMixin.ts │ │ ├── BridgeTransactionMixin.ts │ │ ├── ChartSpecMixin.ts │ │ ├── ConfirmDialogMixin.ts │ │ ├── ExplorePageMixin.ts │ │ ├── IndexerDataFetchMixin.ts │ │ ├── InternalConnectMixin.ts │ │ ├── NetworkFeeDialogMixin.ts │ │ ├── NetworkFormatterMixin.ts │ │ ├── NodeErrorMixin.ts │ │ ├── ScrollableTableMixin.ts │ │ ├── SearchInputMixin.ts │ │ ├── SelectAssetMixin.ts │ │ ├── SelectedTokensRouteMixin.ts │ │ ├── SubscriptionsMixin.ts │ │ ├── SwapAmountsMixin.ts │ │ ├── ThemePaletteMixin.ts │ │ ├── TokenSelectMixin.ts │ │ ├── TranslationMixin.ts │ │ ├── WalletConnectMixin.ts │ │ └── Widget │ │ │ └── WithTokenSelect.ts │ ├── pages │ │ ├── Bridge │ │ │ ├── AccountPanel.vue │ │ │ ├── LimitCard.vue │ │ │ ├── NetworkSelector.vue │ │ │ ├── NodeIcon.vue │ │ │ ├── SelectAddress.vue │ │ │ ├── SelectAsset.vue │ │ │ ├── SelectNetwork.vue │ │ │ ├── SelectSubAccount.vue │ │ │ ├── TransactionDetails.vue │ │ │ └── TransferNotification.vue │ │ ├── Burn │ │ │ └── BurnDialog.vue │ │ ├── Moonpay │ │ │ ├── BridgeInitMixin.ts │ │ │ ├── Confirmation.vue │ │ │ ├── Moonpay.vue │ │ │ ├── MoonpayHistory.vue │ │ │ ├── Notification.vue │ │ │ └── consts.ts │ │ ├── OrderBook │ │ │ ├── BookChartsWidget.vue │ │ │ ├── BookWidget.vue │ │ │ ├── BuySell.vue │ │ │ ├── Dialogs │ │ │ │ ├── CancelOrders.vue │ │ │ │ ├── CustomisePage.vue │ │ │ │ └── PlaceOrder.vue │ │ │ ├── HistoryOrderWidget.vue │ │ │ ├── MarketTradesWidget.vue │ │ │ ├── Popovers │ │ │ │ └── PairListPopover.vue │ │ │ ├── SetLimitOrderWidget.vue │ │ │ ├── Tables │ │ │ │ ├── AllOrders.vue │ │ │ │ ├── OpenOrders.vue │ │ │ │ └── OrderTable.vue │ │ │ ├── TransactionDetails.vue │ │ │ └── common │ │ │ │ └── ErrorButton.vue │ │ ├── PointSystem │ │ │ ├── FirstTxCard.vue │ │ │ ├── PointCard.vue │ │ │ ├── ProgressCard.vue │ │ │ ├── TaskCard.vue │ │ │ └── TaskDialog.vue │ │ ├── Referrals │ │ │ ├── ConfirmBonding.vue │ │ │ └── ConfirmInviteUser.vue │ │ ├── Rewards │ │ │ ├── AmountHeader.vue │ │ │ ├── AmountTable.vue │ │ │ ├── GradientBox.vue │ │ │ └── ItemTooltip.vue │ │ ├── SoraCard │ │ │ ├── ConfirmationInfo.vue │ │ │ ├── Dashboard │ │ │ │ └── Dashboard.vue │ │ │ ├── SoraCardIntroPage.vue │ │ │ ├── SoraCardKYC.vue │ │ │ ├── common │ │ │ │ └── BalanceIndicator.vue │ │ │ └── steps │ │ │ │ ├── Email.vue │ │ │ │ ├── Guidance.vue │ │ │ │ ├── KycView.vue │ │ │ │ ├── Payment.vue │ │ │ │ ├── Phone.vue │ │ │ │ ├── SelectCountryDialog.vue │ │ │ │ ├── TermsAndConditions.vue │ │ │ │ └── ToSDialog.vue │ │ ├── Stats │ │ │ ├── BarChart.vue │ │ │ ├── NetworkStats.vue │ │ │ └── TvlChart.vue │ │ └── Swap │ │ │ ├── Confirm.vue │ │ │ ├── LossWarningDialog.vue │ │ │ ├── Settings │ │ │ ├── MarketAlgorithm │ │ │ │ ├── Header.vue │ │ │ │ └── MarketAlgorithm.vue │ │ │ └── Settings.vue │ │ │ ├── StatusActionBadge.vue │ │ │ ├── TransactionDetails.vue │ │ │ └── Widget │ │ │ ├── Distribution.vue │ │ │ ├── Form.vue │ │ │ ├── TransactionDetails.vue │ │ │ └── Transactions.vue │ └── shared │ │ ├── Button │ │ ├── SortButton.vue │ │ └── SvgIconButton │ │ │ ├── Icons │ │ │ ├── Candle.vue │ │ │ └── Line.vue │ │ │ ├── SvgIconButton.vue │ │ │ └── icons.ts │ │ ├── Chart │ │ └── ChartSkeleton.vue │ │ ├── Dialog │ │ ├── ConfirmBridgeTransaction.vue │ │ ├── NetworkFeeWarning.vue │ │ ├── PaymentError.vue │ │ ├── SelectProvider.vue │ │ └── SelectSoraAccount.vue │ │ ├── GenericPageHeader.vue │ │ ├── Input │ │ ├── TokenInput.vue │ │ └── TokenSelectButton.vue │ │ ├── LinksDropdown.vue │ │ ├── Logo │ │ ├── CedeStore.vue │ │ ├── Moonpay.vue │ │ ├── Polkaswap.vue │ │ ├── Sora.vue │ │ └── Web3.vue │ │ ├── PairTokenLogo.vue │ │ ├── PoolInfo.vue │ │ ├── PriceChange.vue │ │ ├── ResponsiveTabs.vue │ │ ├── SelectAsset │ │ ├── List.vue │ │ └── SelectToken.vue │ │ ├── Settings │ │ ├── SlippageTolerance.vue │ │ └── Tabs.vue │ │ ├── Skeleton │ │ └── DataRow.vue │ │ ├── Stats │ │ └── StatsFilter.vue │ │ ├── StatusBadge.vue │ │ ├── TokensRow.vue │ │ ├── TransactionDetails.vue │ │ ├── ValueStatusWrapper.vue │ │ └── Widget │ │ ├── Base.vue │ │ ├── Customise.vue │ │ ├── Grid.vue │ │ ├── IFrame.vue │ │ ├── PriceChart.vue │ │ ├── SupplyChart.vue │ │ └── TokenPriceChart.vue ├── consts │ ├── evm.ts │ ├── index.ts │ ├── layout.ts │ ├── pointSystem.ts │ ├── snapshots.ts │ └── sub.ts ├── indexer │ └── queries │ │ ├── accountLiquidity │ │ └── liquidity.ts │ │ ├── asset │ │ ├── assets.ts │ │ ├── price.ts │ │ └── supply.ts │ │ ├── burnXor.ts │ │ ├── network │ │ ├── stats.ts │ │ ├── tvl.ts │ │ └── volume.ts │ │ ├── orderBook │ │ ├── orderBook.ts │ │ ├── orderBooks.ts │ │ ├── orders.ts │ │ └── price.ts │ │ ├── pointSystem.ts │ │ ├── pool │ │ ├── apy.ts │ │ ├── pools.ts │ │ ├── price.ts │ │ └── tvl.ts │ │ ├── referrals.ts │ │ ├── staking │ │ └── nominators.ts │ │ └── vault │ │ ├── events.ts │ │ └── vaults.ts ├── lang │ ├── card │ │ ├── cs.json │ │ ├── de.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fr.json │ │ ├── id.json │ │ ├── it.json │ │ ├── nl.json │ │ ├── pl.json │ │ ├── ru.json │ │ ├── sr.json │ │ ├── vi.json │ │ └── zh_CN.json │ ├── cs.json │ ├── de.json │ ├── en.json │ ├── es.json │ ├── fr.json │ ├── id.json │ ├── index.ts │ ├── it.json │ ├── messages.ts │ ├── nl.json │ ├── pl.json │ ├── ru.json │ ├── sr.json │ ├── vi.json │ └── zh_CN.json ├── main.ts ├── modules │ ├── dashboard │ │ ├── components │ │ │ ├── BurnDialog.vue │ │ │ ├── CreateNftToken.vue │ │ │ ├── CreateSimpleToken.vue │ │ │ ├── CreateTokenDialog.vue │ │ │ ├── MintDialog.vue │ │ │ └── SendTokenDialog.vue │ │ ├── consts.ts │ │ ├── router.ts │ │ ├── types │ │ │ └── index.ts │ │ └── views │ │ │ ├── AssetOwner.vue │ │ │ └── AssetOwnerDetails.vue │ ├── pool │ │ ├── components │ │ │ ├── AddLiquidity │ │ │ │ ├── Confirm.vue │ │ │ │ ├── Dialog.vue │ │ │ │ ├── Form.vue │ │ │ │ └── TransactionDetails.vue │ │ │ └── RemoveLiquidity │ │ │ │ ├── Confirm.vue │ │ │ │ ├── Dialog.vue │ │ │ │ ├── Form.vue │ │ │ │ └── TransactionDetails.vue │ │ ├── consts.ts │ │ ├── mixins │ │ │ ├── BaseTokenPair.ts │ │ │ └── PoolApy.ts │ │ ├── router.ts │ │ └── views │ │ │ ├── Pool.vue │ │ │ └── PoolContainer.vue │ ├── staking │ │ ├── consts.ts │ │ ├── demeter │ │ │ ├── components │ │ │ │ ├── CalculatorButton.vue │ │ │ │ ├── CalculatorDialog.vue │ │ │ │ ├── CalculatorIcon.vue │ │ │ │ ├── ClaimDialog.vue │ │ │ │ ├── DialogTitle.vue │ │ │ │ ├── PoolCard.vue │ │ │ │ ├── StakeDialog.vue │ │ │ │ └── StatusBadge.vue │ │ │ ├── consts.ts │ │ │ ├── mixins │ │ │ │ ├── AprMixin.ts │ │ │ │ ├── BasePageMixin.ts │ │ │ │ ├── PageMixin.ts │ │ │ │ ├── PoolCardMixin.ts │ │ │ │ └── PoolStatusMixin.ts │ │ │ ├── types.ts │ │ │ └── views │ │ │ │ ├── DataContainer.vue │ │ │ │ └── Pool.vue │ │ ├── router.ts │ │ ├── sora │ │ │ ├── components │ │ │ │ ├── AllWithdrawsDialog.vue │ │ │ │ ├── BackButton.vue │ │ │ │ ├── ClaimRewardsDialog.vue │ │ │ │ ├── EraCountdown.vue │ │ │ │ ├── PendingRewardsDialog.vue │ │ │ │ ├── SelectValidatorsMode.vue │ │ │ │ ├── StakeDialog.vue │ │ │ │ ├── StakingHeader.vue │ │ │ │ ├── StatusBadge.vue │ │ │ │ ├── ValidatorAvatar.vue │ │ │ │ ├── ValidatorsAttentionDialog.vue │ │ │ │ ├── ValidatorsDialog.vue │ │ │ │ ├── ValidatorsFilterDialog.vue │ │ │ │ ├── ValidatorsList.vue │ │ │ │ └── WithdrawDialog.vue │ │ │ ├── consts.ts │ │ │ ├── mixins │ │ │ │ ├── StakingMixin.ts │ │ │ │ └── ValidatorsMixin.ts │ │ │ ├── types.ts │ │ │ └── views │ │ │ │ ├── DataContainer.vue │ │ │ │ ├── Overview.vue │ │ │ │ ├── SelectValidators.vue │ │ │ │ └── ValidatorsType.vue │ │ └── views │ │ │ └── Staking.vue │ └── vault │ │ ├── components │ │ ├── AddCollateralDialog.vue │ │ ├── BorrowMoreDialog.vue │ │ ├── CloseVaultDialog.vue │ │ ├── CreateVaultDialog.vue │ │ ├── ExploreCollaterals.vue │ │ ├── ExploreOverallStats.vue │ │ ├── LtvProgressBar.vue │ │ ├── PositionStatus.vue │ │ ├── PrevNextInfoLine.vue │ │ ├── RepayDebtDialog.vue │ │ └── VaultDetailsHistory.vue │ │ ├── consts.ts │ │ ├── router.ts │ │ ├── types.ts │ │ ├── util.ts │ │ └── views │ │ ├── VaultDetails.vue │ │ ├── Vaults.vue │ │ └── VaultsContainer.vue ├── plugins │ ├── countryFlagEmoji.ts │ ├── days-js-duration.ts │ ├── echarts.ts │ ├── index.ts │ ├── soramitsuUI.ts │ └── wallet.ts ├── redirect.ts ├── router │ └── index.ts ├── store │ ├── addLiquidity │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── assets │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── bridge │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── consts.ts │ ├── dashboard │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── decorators.ts │ ├── demeterFarming │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── index.ts │ ├── moonpay │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── orderBook │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── pool │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── referrals │ │ ├── actions.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── removeLiquidity │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── rewards │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── router │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── settings │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── soraCard │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── staking │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── swap │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ ├── types.ts │ ├── vault │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts │ └── web3 │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── state.ts │ │ └── types.ts ├── styles │ ├── _breakpoints.scss │ ├── _layout.scss │ ├── _mixins.scss │ ├── _typography.scss │ ├── common.scss │ ├── index.ts │ ├── normalize.css │ └── soramitsu-variables.scss ├── types │ ├── bridge.ts │ ├── card.ts │ ├── chart.ts │ ├── customEvent.ts │ ├── evm │ │ └── provider.ts │ ├── filters.ts │ ├── formats.ts │ ├── index.d.ts │ ├── indexers.ts │ ├── intl.d.ts │ ├── layout.ts │ ├── networkSnapshots.ts │ ├── nodes.ts │ ├── orderBook.ts │ ├── pointSystem.ts │ ├── rewards.ts │ ├── shims-svg.d.ts │ ├── shims-tsx.d.ts │ ├── shims-vue.d.ts │ └── tabs.ts ├── utils │ ├── bridge │ │ ├── common │ │ │ ├── classes.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── eth │ │ │ ├── api.ts │ │ │ ├── classes │ │ │ │ ├── history.ts │ │ │ │ └── reducers.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── evm │ │ │ ├── api.ts │ │ │ ├── classes │ │ │ │ └── reducers.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ └── sub │ │ │ ├── api.ts │ │ │ ├── classes │ │ │ ├── adapter.ts │ │ │ ├── adapters │ │ │ │ ├── parachain │ │ │ │ │ ├── acala.ts │ │ │ │ │ ├── astar.ts │ │ │ │ │ ├── common │ │ │ │ │ │ └── assetRegistry.ts │ │ │ │ │ ├── curio.ts │ │ │ │ │ ├── moonbase.ts │ │ │ │ │ ├── parachain.ts │ │ │ │ │ └── sora.ts │ │ │ │ ├── relaychain │ │ │ │ │ ├── alphanet.ts │ │ │ │ │ └── relaychain.ts │ │ │ │ ├── standalone │ │ │ │ │ └── liberland.ts │ │ │ │ └── substrate.ts │ │ │ ├── history.ts │ │ │ └── reducers.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ ├── card.ts │ ├── connection │ │ ├── evm │ │ │ ├── providers.ts │ │ │ └── walletconnect.ts │ │ └── index.ts │ ├── error.ts │ ├── ethers-util.ts │ ├── index.ts │ ├── moonpay.ts │ ├── orderBook.ts │ ├── pointSystem.ts │ ├── regexp.ts │ ├── rpc.ts │ ├── storage.ts │ ├── subscriptions.ts │ ├── swap.ts │ ├── switchTheme.ts │ └── telegram.ts └── views │ ├── AddLiquidity.vue │ ├── AssetOwnerContainer.vue │ ├── Bridge.vue │ ├── BridgeContainer.vue │ ├── BridgeTransaction.vue │ ├── BridgeTransactionsHistory.vue │ ├── Burn.vue │ ├── CedeStore.vue │ ├── DepositOptions.vue │ ├── DepositTxHistory.vue │ ├── Explore │ ├── Books.vue │ ├── Container.vue │ ├── Demeter.vue │ ├── Pools.vue │ └── Tokens.vue │ ├── OrderBook.vue │ ├── PointSystem.vue │ ├── PointSystemV2.vue │ ├── PointSystemWrapper.vue │ ├── ReferralBonding.vue │ ├── ReferralProgram.vue │ ├── Rewards.vue │ ├── RewardsTabs.vue │ ├── SoraCard.vue │ ├── StakingContainer.vue │ ├── Stats.vue │ ├── Swap.vue │ └── Wallet.vue ├── tests ├── e2e │ ├── .eslintrc.js │ ├── plugins │ │ └── index.js │ ├── specs │ │ └── test.js │ └── support │ │ ├── commands.js │ │ └── index.js ├── mocks │ ├── account.ts │ ├── components │ │ └── SwapInfo.ts │ ├── liquidity.ts │ ├── swap.ts │ └── tokens.ts ├── translation │ └── Translation.spec.ts └── utils │ └── index.ts ├── tsconfig.json ├── vite.config.ts ├── vitest.config.ts ├── vitest.workspace.ts └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /Jenkinsfile-UCAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/Jenkinsfile-UCAN -------------------------------------------------------------------------------- /Jenkinsfile-dast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/Jenkinsfile-dast -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/cypress.json -------------------------------------------------------------------------------- /electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/electron.vite.config.ts -------------------------------------------------------------------------------- /electron/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/electron/background.ts -------------------------------------------------------------------------------- /electron/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/electron/main/index.ts -------------------------------------------------------------------------------- /electron/preload/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/electron/preload/index.d.ts -------------------------------------------------------------------------------- /electron/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/electron/preload/index.ts -------------------------------------------------------------------------------- /env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/env.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.well-known/walletconnect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/.well-known/walletconnect.txt -------------------------------------------------------------------------------- /public/asset-owner/dark-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/asset-owner/dark-hero.png -------------------------------------------------------------------------------- /public/asset-owner/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/asset-owner/dark.png -------------------------------------------------------------------------------- /public/asset-owner/light-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/asset-owner/light-hero.png -------------------------------------------------------------------------------- /public/asset-owner/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/asset-owner/light.png -------------------------------------------------------------------------------- /public/browser-notification/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/browser-notification/chrome.png -------------------------------------------------------------------------------- /public/browser-notification/rotate-phone-tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/browser-notification/rotate-phone-tg.png -------------------------------------------------------------------------------- /public/card/sora-card-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/card/sora-card-front.png -------------------------------------------------------------------------------- /public/card/sora-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/card/sora-card.png -------------------------------------------------------------------------------- /public/env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/env.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/marketing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/marketing.json -------------------------------------------------------------------------------- /public/marketing/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/marketing/card.png -------------------------------------------------------------------------------- /public/marketing/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/marketing/google.png -------------------------------------------------------------------------------- /public/marketing/now_in_telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/marketing/now_in_telegram.png -------------------------------------------------------------------------------- /public/marketing/polkaswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/marketing/polkaswap.png -------------------------------------------------------------------------------- /public/marketing/soraV3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/marketing/soraV3.png -------------------------------------------------------------------------------- /public/marketing/ton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/marketing/ton.png -------------------------------------------------------------------------------- /public/point-system/bridges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/point-system/bridges.svg -------------------------------------------------------------------------------- /public/point-system/governance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/point-system/governance.svg -------------------------------------------------------------------------------- /public/point-system/kensetsu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/point-system/kensetsu.svg -------------------------------------------------------------------------------- /public/point-system/liquidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/point-system/liquidity.svg -------------------------------------------------------------------------------- /public/point-system/network_fee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/point-system/network_fee.svg -------------------------------------------------------------------------------- /public/point-system/orderbook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/point-system/orderbook.svg -------------------------------------------------------------------------------- /public/point-system/referral_rewards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/point-system/referral_rewards.svg -------------------------------------------------------------------------------- /public/point-system/staking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/point-system/staking.svg -------------------------------------------------------------------------------- /public/point-system/xor_burned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/point-system/xor_burned.svg -------------------------------------------------------------------------------- /public/points/dark/bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/points/dark/bridge.png -------------------------------------------------------------------------------- /public/points/dark/referrals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/points/dark/referrals.png -------------------------------------------------------------------------------- /public/points/light/bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/points/light/bridge.png -------------------------------------------------------------------------------- /public/points/light/referrals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/points/light/referrals.png -------------------------------------------------------------------------------- /public/polkaswap-share-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/polkaswap-share-image.jpg -------------------------------------------------------------------------------- /public/wallet/Fearless.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/wallet/Fearless.svg -------------------------------------------------------------------------------- /public/wallet/Metamask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/wallet/Metamask.svg -------------------------------------------------------------------------------- /public/wallet/SubWallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/wallet/SubWallet.svg -------------------------------------------------------------------------------- /public/wallet/TrustWallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/wallet/TrustWallet.svg -------------------------------------------------------------------------------- /public/wallet/WalletConnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/public/wallet/WalletConnect.svg -------------------------------------------------------------------------------- /scripts/contracts/bridge/Bridge.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/scripts/contracts/bridge/Bridge.sol -------------------------------------------------------------------------------- /scripts/contracts/bridge/BridgeEVM.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/scripts/contracts/bridge/BridgeEVM.sol -------------------------------------------------------------------------------- /scripts/lang/fix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/scripts/lang/fix.ts -------------------------------------------------------------------------------- /scripts/lang/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/scripts/lang/generate.ts -------------------------------------------------------------------------------- /scripts/lang/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/scripts/lang/utils.ts -------------------------------------------------------------------------------- /scripts/ucan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/scripts/ucan/README.md -------------------------------------------------------------------------------- /scripts/ucan/generateNftServiceKeypair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/scripts/ucan/generateNftServiceKeypair.js -------------------------------------------------------------------------------- /scripts/ucan/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/scripts/ucan/package-lock.json -------------------------------------------------------------------------------- /scripts/ucan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/scripts/ucan/package.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/abi/ethereum/internal/MASTER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/abi/ethereum/internal/MASTER.json -------------------------------------------------------------------------------- /src/abi/ethereum/other/BRIDGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/abi/ethereum/other/BRIDGE.json -------------------------------------------------------------------------------- /src/abi/ethereum/other/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/abi/ethereum/other/ERC20.json -------------------------------------------------------------------------------- /src/abi/ethereum/other/moonbeam/xTokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/abi/ethereum/other/moonbeam/xTokens.json -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/assets/fonts/polkaswap_icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/fonts/polkaswap_icons.ttf -------------------------------------------------------------------------------- /src/assets/img/header-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/header-error.svg -------------------------------------------------------------------------------- /src/assets/img/header-wait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/header-wait.svg -------------------------------------------------------------------------------- /src/assets/img/invited-users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/invited-users.svg -------------------------------------------------------------------------------- /src/assets/img/mobile/app-store-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/mobile/app-store-logo.svg -------------------------------------------------------------------------------- /src/assets/img/mobile/google-play-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/mobile/google-play-logo.svg -------------------------------------------------------------------------------- /src/assets/img/mobile/qr-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/mobile/qr-code.svg -------------------------------------------------------------------------------- /src/assets/img/mobile/rotate_phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/mobile/rotate_phone.svg -------------------------------------------------------------------------------- /src/assets/img/mobile/sora-app-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/mobile/sora-app-left.png -------------------------------------------------------------------------------- /src/assets/img/mobile/sora-app-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/mobile/sora-app-right.png -------------------------------------------------------------------------------- /src/assets/img/networks/acala.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/acala.svg -------------------------------------------------------------------------------- /src/assets/img/networks/alphanet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/alphanet.svg -------------------------------------------------------------------------------- /src/assets/img/networks/astar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/astar.svg -------------------------------------------------------------------------------- /src/assets/img/networks/avalanche.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/avalanche.svg -------------------------------------------------------------------------------- /src/assets/img/networks/binance-smart-chain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/binance-smart-chain.svg -------------------------------------------------------------------------------- /src/assets/img/networks/curio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/curio.svg -------------------------------------------------------------------------------- /src/assets/img/networks/ethereum-classic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/ethereum-classic.svg -------------------------------------------------------------------------------- /src/assets/img/networks/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/ethereum.svg -------------------------------------------------------------------------------- /src/assets/img/networks/karura.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/karura.svg -------------------------------------------------------------------------------- /src/assets/img/networks/klaytn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/klaytn.svg -------------------------------------------------------------------------------- /src/assets/img/networks/kusama.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/kusama.svg -------------------------------------------------------------------------------- /src/assets/img/networks/liberland.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/liberland.svg -------------------------------------------------------------------------------- /src/assets/img/networks/moonbase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/moonbase.svg -------------------------------------------------------------------------------- /src/assets/img/networks/moonbeam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/moonbeam.svg -------------------------------------------------------------------------------- /src/assets/img/networks/polkadot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/polkadot.svg -------------------------------------------------------------------------------- /src/assets/img/networks/polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/polygon.svg -------------------------------------------------------------------------------- /src/assets/img/networks/rococo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/rococo.svg -------------------------------------------------------------------------------- /src/assets/img/networks/shiden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/shiden.svg -------------------------------------------------------------------------------- /src/assets/img/networks/sora-kusama.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/sora-kusama.svg -------------------------------------------------------------------------------- /src/assets/img/networks/sora-polkadot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/sora-polkadot.svg -------------------------------------------------------------------------------- /src/assets/img/networks/sora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/networks/sora.svg -------------------------------------------------------------------------------- /src/assets/img/no-results.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/no-results.svg -------------------------------------------------------------------------------- /src/assets/img/points/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/points/header.png -------------------------------------------------------------------------------- /src/assets/img/points/sora-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/points/sora-card.png -------------------------------------------------------------------------------- /src/assets/img/points/soratopia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/points/soratopia.png -------------------------------------------------------------------------------- /src/assets/img/pswap-loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/pswap-loader.svg -------------------------------------------------------------------------------- /src/assets/img/pswap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/pswap.svg -------------------------------------------------------------------------------- /src/assets/img/status-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/status-error.svg -------------------------------------------------------------------------------- /src/assets/img/status-pending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/status-pending.svg -------------------------------------------------------------------------------- /src/assets/img/status-success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/assets/img/status-success.svg -------------------------------------------------------------------------------- /src/components/App/Alerts/AlertList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Alerts/AlertList.vue -------------------------------------------------------------------------------- /src/components/App/Alerts/Alerts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Alerts/Alerts.vue -------------------------------------------------------------------------------- /src/components/App/Alerts/CreateAlert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Alerts/CreateAlert.vue -------------------------------------------------------------------------------- /src/components/App/BrowserNotification/BlockedDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/BrowserNotification/BlockedDialog.vue -------------------------------------------------------------------------------- /src/components/App/BrowserNotification/BlockedRotatePhone.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/BrowserNotification/BlockedRotatePhone.vue -------------------------------------------------------------------------------- /src/components/App/BrowserNotification/EnableDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/BrowserNotification/EnableDialog.vue -------------------------------------------------------------------------------- /src/components/App/BrowserNotification/LocalStorageOverride.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/BrowserNotification/LocalStorageOverride.vue -------------------------------------------------------------------------------- /src/components/App/Footer/AppFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Footer/AppFooter.vue -------------------------------------------------------------------------------- /src/components/App/Footer/FooterPopper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Footer/FooterPopper.vue -------------------------------------------------------------------------------- /src/components/App/Footer/Indexer/SelectIndexer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Footer/Indexer/SelectIndexer.vue -------------------------------------------------------------------------------- /src/components/App/Footer/Indexer/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Footer/Indexer/consts.ts -------------------------------------------------------------------------------- /src/components/App/Footer/NoInternetDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Footer/NoInternetDialog.vue -------------------------------------------------------------------------------- /src/components/App/Footer/StatisticsDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Footer/StatisticsDialog.vue -------------------------------------------------------------------------------- /src/components/App/Header/AppAccountButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Header/AppAccountButton.vue -------------------------------------------------------------------------------- /src/components/App/Header/AppDisclaimer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Header/AppDisclaimer.vue -------------------------------------------------------------------------------- /src/components/App/Header/AppHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Header/AppHeader.vue -------------------------------------------------------------------------------- /src/components/App/Header/AppHeaderMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Header/AppHeaderMenu.vue -------------------------------------------------------------------------------- /src/components/App/Header/AppLogoButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Header/AppLogoButton.vue -------------------------------------------------------------------------------- /src/components/App/Header/AppMarketing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Header/AppMarketing.vue -------------------------------------------------------------------------------- /src/components/App/Menu/AppInfoPopper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Menu/AppInfoPopper.vue -------------------------------------------------------------------------------- /src/components/App/Menu/AppMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Menu/AppMenu.vue -------------------------------------------------------------------------------- /src/components/App/Menu/SidebarItemContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Menu/SidebarItemContent.vue -------------------------------------------------------------------------------- /src/components/App/MobilePopup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/MobilePopup.vue -------------------------------------------------------------------------------- /src/components/App/Settings/Currency/SelectCurrencyDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Settings/Currency/SelectCurrencyDialog.vue -------------------------------------------------------------------------------- /src/components/App/Settings/Language/SelectLanguageDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Settings/Language/SelectLanguageDialog.vue -------------------------------------------------------------------------------- /src/components/App/Settings/Node/NodeInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Settings/Node/NodeInfo.vue -------------------------------------------------------------------------------- /src/components/App/Settings/Node/SelectNode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Settings/Node/SelectNode.vue -------------------------------------------------------------------------------- /src/components/App/Settings/Node/SelectNodeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Settings/Node/SelectNodeDialog.vue -------------------------------------------------------------------------------- /src/components/App/Settings/Node/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Settings/Node/consts.ts -------------------------------------------------------------------------------- /src/components/App/Settings/Node/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Settings/Node/utils.ts -------------------------------------------------------------------------------- /src/components/App/Settings/Telegram/AccelerationAccessDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Settings/Telegram/AccelerationAccessDialog.vue -------------------------------------------------------------------------------- /src/components/App/Settings/Telegram/RotatePhoneDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/App/Settings/Telegram/RotatePhoneDialog.vue -------------------------------------------------------------------------------- /src/components/mixins/AssetsSearchMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/AssetsSearchMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/BridgeHistoryMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/BridgeHistoryMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/BridgeMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/BridgeMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/BridgeTransactionMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/BridgeTransactionMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/ChartSpecMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/ChartSpecMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/ConfirmDialogMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/ConfirmDialogMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/ExplorePageMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/ExplorePageMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/IndexerDataFetchMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/IndexerDataFetchMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/InternalConnectMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/InternalConnectMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/NetworkFeeDialogMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/NetworkFeeDialogMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/NetworkFormatterMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/NetworkFormatterMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/NodeErrorMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/NodeErrorMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/ScrollableTableMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/ScrollableTableMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/SearchInputMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/SearchInputMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/SelectAssetMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/SelectAssetMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/SelectedTokensRouteMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/SelectedTokensRouteMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/SubscriptionsMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/SubscriptionsMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/SwapAmountsMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/SwapAmountsMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/ThemePaletteMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/ThemePaletteMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/TokenSelectMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/TokenSelectMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/TranslationMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/TranslationMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/WalletConnectMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/WalletConnectMixin.ts -------------------------------------------------------------------------------- /src/components/mixins/Widget/WithTokenSelect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/mixins/Widget/WithTokenSelect.ts -------------------------------------------------------------------------------- /src/components/pages/Bridge/AccountPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Bridge/AccountPanel.vue -------------------------------------------------------------------------------- /src/components/pages/Bridge/LimitCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Bridge/LimitCard.vue -------------------------------------------------------------------------------- /src/components/pages/Bridge/NetworkSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Bridge/NetworkSelector.vue -------------------------------------------------------------------------------- /src/components/pages/Bridge/NodeIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Bridge/NodeIcon.vue -------------------------------------------------------------------------------- /src/components/pages/Bridge/SelectAddress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Bridge/SelectAddress.vue -------------------------------------------------------------------------------- /src/components/pages/Bridge/SelectAsset.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Bridge/SelectAsset.vue -------------------------------------------------------------------------------- /src/components/pages/Bridge/SelectNetwork.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Bridge/SelectNetwork.vue -------------------------------------------------------------------------------- /src/components/pages/Bridge/SelectSubAccount.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Bridge/SelectSubAccount.vue -------------------------------------------------------------------------------- /src/components/pages/Bridge/TransactionDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Bridge/TransactionDetails.vue -------------------------------------------------------------------------------- /src/components/pages/Bridge/TransferNotification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Bridge/TransferNotification.vue -------------------------------------------------------------------------------- /src/components/pages/Burn/BurnDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Burn/BurnDialog.vue -------------------------------------------------------------------------------- /src/components/pages/Moonpay/BridgeInitMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Moonpay/BridgeInitMixin.ts -------------------------------------------------------------------------------- /src/components/pages/Moonpay/Confirmation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Moonpay/Confirmation.vue -------------------------------------------------------------------------------- /src/components/pages/Moonpay/Moonpay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Moonpay/Moonpay.vue -------------------------------------------------------------------------------- /src/components/pages/Moonpay/MoonpayHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Moonpay/MoonpayHistory.vue -------------------------------------------------------------------------------- /src/components/pages/Moonpay/Notification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Moonpay/Notification.vue -------------------------------------------------------------------------------- /src/components/pages/Moonpay/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Moonpay/consts.ts -------------------------------------------------------------------------------- /src/components/pages/OrderBook/BookChartsWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/BookChartsWidget.vue -------------------------------------------------------------------------------- /src/components/pages/OrderBook/BookWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/BookWidget.vue -------------------------------------------------------------------------------- /src/components/pages/OrderBook/BuySell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/BuySell.vue -------------------------------------------------------------------------------- /src/components/pages/OrderBook/Dialogs/CancelOrders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/Dialogs/CancelOrders.vue -------------------------------------------------------------------------------- /src/components/pages/OrderBook/Dialogs/CustomisePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/Dialogs/CustomisePage.vue -------------------------------------------------------------------------------- /src/components/pages/OrderBook/Dialogs/PlaceOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/Dialogs/PlaceOrder.vue -------------------------------------------------------------------------------- /src/components/pages/OrderBook/HistoryOrderWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/HistoryOrderWidget.vue -------------------------------------------------------------------------------- /src/components/pages/OrderBook/MarketTradesWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/MarketTradesWidget.vue -------------------------------------------------------------------------------- /src/components/pages/OrderBook/Popovers/PairListPopover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/Popovers/PairListPopover.vue -------------------------------------------------------------------------------- /src/components/pages/OrderBook/SetLimitOrderWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/SetLimitOrderWidget.vue -------------------------------------------------------------------------------- /src/components/pages/OrderBook/Tables/AllOrders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/Tables/AllOrders.vue -------------------------------------------------------------------------------- /src/components/pages/OrderBook/Tables/OpenOrders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/Tables/OpenOrders.vue -------------------------------------------------------------------------------- /src/components/pages/OrderBook/Tables/OrderTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/Tables/OrderTable.vue -------------------------------------------------------------------------------- /src/components/pages/OrderBook/TransactionDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/TransactionDetails.vue -------------------------------------------------------------------------------- /src/components/pages/OrderBook/common/ErrorButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/OrderBook/common/ErrorButton.vue -------------------------------------------------------------------------------- /src/components/pages/PointSystem/FirstTxCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/PointSystem/FirstTxCard.vue -------------------------------------------------------------------------------- /src/components/pages/PointSystem/PointCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/PointSystem/PointCard.vue -------------------------------------------------------------------------------- /src/components/pages/PointSystem/ProgressCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/PointSystem/ProgressCard.vue -------------------------------------------------------------------------------- /src/components/pages/PointSystem/TaskCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/PointSystem/TaskCard.vue -------------------------------------------------------------------------------- /src/components/pages/PointSystem/TaskDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/PointSystem/TaskDialog.vue -------------------------------------------------------------------------------- /src/components/pages/Referrals/ConfirmBonding.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Referrals/ConfirmBonding.vue -------------------------------------------------------------------------------- /src/components/pages/Referrals/ConfirmInviteUser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Referrals/ConfirmInviteUser.vue -------------------------------------------------------------------------------- /src/components/pages/Rewards/AmountHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Rewards/AmountHeader.vue -------------------------------------------------------------------------------- /src/components/pages/Rewards/AmountTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Rewards/AmountTable.vue -------------------------------------------------------------------------------- /src/components/pages/Rewards/GradientBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Rewards/GradientBox.vue -------------------------------------------------------------------------------- /src/components/pages/Rewards/ItemTooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Rewards/ItemTooltip.vue -------------------------------------------------------------------------------- /src/components/pages/SoraCard/ConfirmationInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/SoraCard/ConfirmationInfo.vue -------------------------------------------------------------------------------- /src/components/pages/SoraCard/Dashboard/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/SoraCard/Dashboard/Dashboard.vue -------------------------------------------------------------------------------- /src/components/pages/SoraCard/SoraCardIntroPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/SoraCard/SoraCardIntroPage.vue -------------------------------------------------------------------------------- /src/components/pages/SoraCard/SoraCardKYC.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/SoraCard/SoraCardKYC.vue -------------------------------------------------------------------------------- /src/components/pages/SoraCard/common/BalanceIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/SoraCard/common/BalanceIndicator.vue -------------------------------------------------------------------------------- /src/components/pages/SoraCard/steps/Email.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/SoraCard/steps/Email.vue -------------------------------------------------------------------------------- /src/components/pages/SoraCard/steps/Guidance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/SoraCard/steps/Guidance.vue -------------------------------------------------------------------------------- /src/components/pages/SoraCard/steps/KycView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/SoraCard/steps/KycView.vue -------------------------------------------------------------------------------- /src/components/pages/SoraCard/steps/Payment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/SoraCard/steps/Payment.vue -------------------------------------------------------------------------------- /src/components/pages/SoraCard/steps/Phone.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/SoraCard/steps/Phone.vue -------------------------------------------------------------------------------- /src/components/pages/SoraCard/steps/SelectCountryDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/SoraCard/steps/SelectCountryDialog.vue -------------------------------------------------------------------------------- /src/components/pages/SoraCard/steps/TermsAndConditions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/SoraCard/steps/TermsAndConditions.vue -------------------------------------------------------------------------------- /src/components/pages/SoraCard/steps/ToSDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/SoraCard/steps/ToSDialog.vue -------------------------------------------------------------------------------- /src/components/pages/Stats/BarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Stats/BarChart.vue -------------------------------------------------------------------------------- /src/components/pages/Stats/NetworkStats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Stats/NetworkStats.vue -------------------------------------------------------------------------------- /src/components/pages/Stats/TvlChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Stats/TvlChart.vue -------------------------------------------------------------------------------- /src/components/pages/Swap/Confirm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Swap/Confirm.vue -------------------------------------------------------------------------------- /src/components/pages/Swap/LossWarningDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Swap/LossWarningDialog.vue -------------------------------------------------------------------------------- /src/components/pages/Swap/Settings/MarketAlgorithm/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Swap/Settings/MarketAlgorithm/Header.vue -------------------------------------------------------------------------------- /src/components/pages/Swap/Settings/MarketAlgorithm/MarketAlgorithm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Swap/Settings/MarketAlgorithm/MarketAlgorithm.vue -------------------------------------------------------------------------------- /src/components/pages/Swap/Settings/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Swap/Settings/Settings.vue -------------------------------------------------------------------------------- /src/components/pages/Swap/StatusActionBadge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Swap/StatusActionBadge.vue -------------------------------------------------------------------------------- /src/components/pages/Swap/TransactionDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Swap/TransactionDetails.vue -------------------------------------------------------------------------------- /src/components/pages/Swap/Widget/Distribution.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Swap/Widget/Distribution.vue -------------------------------------------------------------------------------- /src/components/pages/Swap/Widget/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Swap/Widget/Form.vue -------------------------------------------------------------------------------- /src/components/pages/Swap/Widget/TransactionDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Swap/Widget/TransactionDetails.vue -------------------------------------------------------------------------------- /src/components/pages/Swap/Widget/Transactions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/pages/Swap/Widget/Transactions.vue -------------------------------------------------------------------------------- /src/components/shared/Button/SortButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Button/SortButton.vue -------------------------------------------------------------------------------- /src/components/shared/Button/SvgIconButton/Icons/Candle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Button/SvgIconButton/Icons/Candle.vue -------------------------------------------------------------------------------- /src/components/shared/Button/SvgIconButton/Icons/Line.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Button/SvgIconButton/Icons/Line.vue -------------------------------------------------------------------------------- /src/components/shared/Button/SvgIconButton/SvgIconButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Button/SvgIconButton/SvgIconButton.vue -------------------------------------------------------------------------------- /src/components/shared/Button/SvgIconButton/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Button/SvgIconButton/icons.ts -------------------------------------------------------------------------------- /src/components/shared/Chart/ChartSkeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Chart/ChartSkeleton.vue -------------------------------------------------------------------------------- /src/components/shared/Dialog/ConfirmBridgeTransaction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Dialog/ConfirmBridgeTransaction.vue -------------------------------------------------------------------------------- /src/components/shared/Dialog/NetworkFeeWarning.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Dialog/NetworkFeeWarning.vue -------------------------------------------------------------------------------- /src/components/shared/Dialog/PaymentError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Dialog/PaymentError.vue -------------------------------------------------------------------------------- /src/components/shared/Dialog/SelectProvider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Dialog/SelectProvider.vue -------------------------------------------------------------------------------- /src/components/shared/Dialog/SelectSoraAccount.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Dialog/SelectSoraAccount.vue -------------------------------------------------------------------------------- /src/components/shared/GenericPageHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/GenericPageHeader.vue -------------------------------------------------------------------------------- /src/components/shared/Input/TokenInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Input/TokenInput.vue -------------------------------------------------------------------------------- /src/components/shared/Input/TokenSelectButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Input/TokenSelectButton.vue -------------------------------------------------------------------------------- /src/components/shared/LinksDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/LinksDropdown.vue -------------------------------------------------------------------------------- /src/components/shared/Logo/CedeStore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Logo/CedeStore.vue -------------------------------------------------------------------------------- /src/components/shared/Logo/Moonpay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Logo/Moonpay.vue -------------------------------------------------------------------------------- /src/components/shared/Logo/Polkaswap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Logo/Polkaswap.vue -------------------------------------------------------------------------------- /src/components/shared/Logo/Sora.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Logo/Sora.vue -------------------------------------------------------------------------------- /src/components/shared/Logo/Web3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Logo/Web3.vue -------------------------------------------------------------------------------- /src/components/shared/PairTokenLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/PairTokenLogo.vue -------------------------------------------------------------------------------- /src/components/shared/PoolInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/PoolInfo.vue -------------------------------------------------------------------------------- /src/components/shared/PriceChange.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/PriceChange.vue -------------------------------------------------------------------------------- /src/components/shared/ResponsiveTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/ResponsiveTabs.vue -------------------------------------------------------------------------------- /src/components/shared/SelectAsset/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/SelectAsset/List.vue -------------------------------------------------------------------------------- /src/components/shared/SelectAsset/SelectToken.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/SelectAsset/SelectToken.vue -------------------------------------------------------------------------------- /src/components/shared/Settings/SlippageTolerance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Settings/SlippageTolerance.vue -------------------------------------------------------------------------------- /src/components/shared/Settings/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Settings/Tabs.vue -------------------------------------------------------------------------------- /src/components/shared/Skeleton/DataRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Skeleton/DataRow.vue -------------------------------------------------------------------------------- /src/components/shared/Stats/StatsFilter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Stats/StatsFilter.vue -------------------------------------------------------------------------------- /src/components/shared/StatusBadge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/StatusBadge.vue -------------------------------------------------------------------------------- /src/components/shared/TokensRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/TokensRow.vue -------------------------------------------------------------------------------- /src/components/shared/TransactionDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/TransactionDetails.vue -------------------------------------------------------------------------------- /src/components/shared/ValueStatusWrapper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/ValueStatusWrapper.vue -------------------------------------------------------------------------------- /src/components/shared/Widget/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Widget/Base.vue -------------------------------------------------------------------------------- /src/components/shared/Widget/Customise.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Widget/Customise.vue -------------------------------------------------------------------------------- /src/components/shared/Widget/Grid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Widget/Grid.vue -------------------------------------------------------------------------------- /src/components/shared/Widget/IFrame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Widget/IFrame.vue -------------------------------------------------------------------------------- /src/components/shared/Widget/PriceChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Widget/PriceChart.vue -------------------------------------------------------------------------------- /src/components/shared/Widget/SupplyChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Widget/SupplyChart.vue -------------------------------------------------------------------------------- /src/components/shared/Widget/TokenPriceChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/components/shared/Widget/TokenPriceChart.vue -------------------------------------------------------------------------------- /src/consts/evm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/consts/evm.ts -------------------------------------------------------------------------------- /src/consts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/consts/index.ts -------------------------------------------------------------------------------- /src/consts/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/consts/layout.ts -------------------------------------------------------------------------------- /src/consts/pointSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/consts/pointSystem.ts -------------------------------------------------------------------------------- /src/consts/snapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/consts/snapshots.ts -------------------------------------------------------------------------------- /src/consts/sub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/consts/sub.ts -------------------------------------------------------------------------------- /src/indexer/queries/accountLiquidity/liquidity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/accountLiquidity/liquidity.ts -------------------------------------------------------------------------------- /src/indexer/queries/asset/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/asset/assets.ts -------------------------------------------------------------------------------- /src/indexer/queries/asset/price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/asset/price.ts -------------------------------------------------------------------------------- /src/indexer/queries/asset/supply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/asset/supply.ts -------------------------------------------------------------------------------- /src/indexer/queries/burnXor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/burnXor.ts -------------------------------------------------------------------------------- /src/indexer/queries/network/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/network/stats.ts -------------------------------------------------------------------------------- /src/indexer/queries/network/tvl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/network/tvl.ts -------------------------------------------------------------------------------- /src/indexer/queries/network/volume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/network/volume.ts -------------------------------------------------------------------------------- /src/indexer/queries/orderBook/orderBook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/orderBook/orderBook.ts -------------------------------------------------------------------------------- /src/indexer/queries/orderBook/orderBooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/orderBook/orderBooks.ts -------------------------------------------------------------------------------- /src/indexer/queries/orderBook/orders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/orderBook/orders.ts -------------------------------------------------------------------------------- /src/indexer/queries/orderBook/price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/orderBook/price.ts -------------------------------------------------------------------------------- /src/indexer/queries/pointSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/pointSystem.ts -------------------------------------------------------------------------------- /src/indexer/queries/pool/apy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/pool/apy.ts -------------------------------------------------------------------------------- /src/indexer/queries/pool/pools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/pool/pools.ts -------------------------------------------------------------------------------- /src/indexer/queries/pool/price.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/pool/price.ts -------------------------------------------------------------------------------- /src/indexer/queries/pool/tvl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/pool/tvl.ts -------------------------------------------------------------------------------- /src/indexer/queries/referrals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/referrals.ts -------------------------------------------------------------------------------- /src/indexer/queries/staking/nominators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/staking/nominators.ts -------------------------------------------------------------------------------- /src/indexer/queries/vault/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/vault/events.ts -------------------------------------------------------------------------------- /src/indexer/queries/vault/vaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/indexer/queries/vault/vaults.ts -------------------------------------------------------------------------------- /src/lang/card/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/card/cs.json -------------------------------------------------------------------------------- /src/lang/card/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/card/de.json -------------------------------------------------------------------------------- /src/lang/card/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/card/en.json -------------------------------------------------------------------------------- /src/lang/card/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/card/es.json -------------------------------------------------------------------------------- /src/lang/card/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/card/fr.json -------------------------------------------------------------------------------- /src/lang/card/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/card/id.json -------------------------------------------------------------------------------- /src/lang/card/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/card/it.json -------------------------------------------------------------------------------- /src/lang/card/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/card/nl.json -------------------------------------------------------------------------------- /src/lang/card/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/card/pl.json -------------------------------------------------------------------------------- /src/lang/card/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/card/ru.json -------------------------------------------------------------------------------- /src/lang/card/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/card/sr.json -------------------------------------------------------------------------------- /src/lang/card/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/card/vi.json -------------------------------------------------------------------------------- /src/lang/card/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/card/zh_CN.json -------------------------------------------------------------------------------- /src/lang/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/cs.json -------------------------------------------------------------------------------- /src/lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/de.json -------------------------------------------------------------------------------- /src/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/en.json -------------------------------------------------------------------------------- /src/lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/es.json -------------------------------------------------------------------------------- /src/lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/fr.json -------------------------------------------------------------------------------- /src/lang/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/id.json -------------------------------------------------------------------------------- /src/lang/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/index.ts -------------------------------------------------------------------------------- /src/lang/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/it.json -------------------------------------------------------------------------------- /src/lang/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/messages.ts -------------------------------------------------------------------------------- /src/lang/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/nl.json -------------------------------------------------------------------------------- /src/lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/pl.json -------------------------------------------------------------------------------- /src/lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/ru.json -------------------------------------------------------------------------------- /src/lang/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/sr.json -------------------------------------------------------------------------------- /src/lang/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/vi.json -------------------------------------------------------------------------------- /src/lang/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/lang/zh_CN.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/BurnDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/dashboard/components/BurnDialog.vue -------------------------------------------------------------------------------- /src/modules/dashboard/components/CreateNftToken.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/dashboard/components/CreateNftToken.vue -------------------------------------------------------------------------------- /src/modules/dashboard/components/CreateSimpleToken.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/dashboard/components/CreateSimpleToken.vue -------------------------------------------------------------------------------- /src/modules/dashboard/components/CreateTokenDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/dashboard/components/CreateTokenDialog.vue -------------------------------------------------------------------------------- /src/modules/dashboard/components/MintDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/dashboard/components/MintDialog.vue -------------------------------------------------------------------------------- /src/modules/dashboard/components/SendTokenDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/dashboard/components/SendTokenDialog.vue -------------------------------------------------------------------------------- /src/modules/dashboard/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/dashboard/consts.ts -------------------------------------------------------------------------------- /src/modules/dashboard/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/dashboard/router.ts -------------------------------------------------------------------------------- /src/modules/dashboard/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/dashboard/types/index.ts -------------------------------------------------------------------------------- /src/modules/dashboard/views/AssetOwner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/dashboard/views/AssetOwner.vue -------------------------------------------------------------------------------- /src/modules/dashboard/views/AssetOwnerDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/dashboard/views/AssetOwnerDetails.vue -------------------------------------------------------------------------------- /src/modules/pool/components/AddLiquidity/Confirm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/pool/components/AddLiquidity/Confirm.vue -------------------------------------------------------------------------------- /src/modules/pool/components/AddLiquidity/Dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/pool/components/AddLiquidity/Dialog.vue -------------------------------------------------------------------------------- /src/modules/pool/components/AddLiquidity/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/pool/components/AddLiquidity/Form.vue -------------------------------------------------------------------------------- /src/modules/pool/components/AddLiquidity/TransactionDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/pool/components/AddLiquidity/TransactionDetails.vue -------------------------------------------------------------------------------- /src/modules/pool/components/RemoveLiquidity/Confirm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/pool/components/RemoveLiquidity/Confirm.vue -------------------------------------------------------------------------------- /src/modules/pool/components/RemoveLiquidity/Dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/pool/components/RemoveLiquidity/Dialog.vue -------------------------------------------------------------------------------- /src/modules/pool/components/RemoveLiquidity/Form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/pool/components/RemoveLiquidity/Form.vue -------------------------------------------------------------------------------- /src/modules/pool/components/RemoveLiquidity/TransactionDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/pool/components/RemoveLiquidity/TransactionDetails.vue -------------------------------------------------------------------------------- /src/modules/pool/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/pool/consts.ts -------------------------------------------------------------------------------- /src/modules/pool/mixins/BaseTokenPair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/pool/mixins/BaseTokenPair.ts -------------------------------------------------------------------------------- /src/modules/pool/mixins/PoolApy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/pool/mixins/PoolApy.ts -------------------------------------------------------------------------------- /src/modules/pool/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/pool/router.ts -------------------------------------------------------------------------------- /src/modules/pool/views/Pool.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/pool/views/Pool.vue -------------------------------------------------------------------------------- /src/modules/pool/views/PoolContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/pool/views/PoolContainer.vue -------------------------------------------------------------------------------- /src/modules/staking/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/consts.ts -------------------------------------------------------------------------------- /src/modules/staking/demeter/components/CalculatorButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/components/CalculatorButton.vue -------------------------------------------------------------------------------- /src/modules/staking/demeter/components/CalculatorDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/components/CalculatorDialog.vue -------------------------------------------------------------------------------- /src/modules/staking/demeter/components/CalculatorIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/components/CalculatorIcon.vue -------------------------------------------------------------------------------- /src/modules/staking/demeter/components/ClaimDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/components/ClaimDialog.vue -------------------------------------------------------------------------------- /src/modules/staking/demeter/components/DialogTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/components/DialogTitle.vue -------------------------------------------------------------------------------- /src/modules/staking/demeter/components/PoolCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/components/PoolCard.vue -------------------------------------------------------------------------------- /src/modules/staking/demeter/components/StakeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/components/StakeDialog.vue -------------------------------------------------------------------------------- /src/modules/staking/demeter/components/StatusBadge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/components/StatusBadge.vue -------------------------------------------------------------------------------- /src/modules/staking/demeter/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/consts.ts -------------------------------------------------------------------------------- /src/modules/staking/demeter/mixins/AprMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/mixins/AprMixin.ts -------------------------------------------------------------------------------- /src/modules/staking/demeter/mixins/BasePageMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/mixins/BasePageMixin.ts -------------------------------------------------------------------------------- /src/modules/staking/demeter/mixins/PageMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/mixins/PageMixin.ts -------------------------------------------------------------------------------- /src/modules/staking/demeter/mixins/PoolCardMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/mixins/PoolCardMixin.ts -------------------------------------------------------------------------------- /src/modules/staking/demeter/mixins/PoolStatusMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/mixins/PoolStatusMixin.ts -------------------------------------------------------------------------------- /src/modules/staking/demeter/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/types.ts -------------------------------------------------------------------------------- /src/modules/staking/demeter/views/DataContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/views/DataContainer.vue -------------------------------------------------------------------------------- /src/modules/staking/demeter/views/Pool.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/demeter/views/Pool.vue -------------------------------------------------------------------------------- /src/modules/staking/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/router.ts -------------------------------------------------------------------------------- /src/modules/staking/sora/components/AllWithdrawsDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/AllWithdrawsDialog.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/components/BackButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/BackButton.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/components/ClaimRewardsDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/ClaimRewardsDialog.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/components/EraCountdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/EraCountdown.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/components/PendingRewardsDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/PendingRewardsDialog.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/components/SelectValidatorsMode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/SelectValidatorsMode.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/components/StakeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/StakeDialog.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/components/StakingHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/StakingHeader.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/components/StatusBadge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/StatusBadge.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/components/ValidatorAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/ValidatorAvatar.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/components/ValidatorsAttentionDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/ValidatorsAttentionDialog.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/components/ValidatorsDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/ValidatorsDialog.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/components/ValidatorsFilterDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/ValidatorsFilterDialog.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/components/ValidatorsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/ValidatorsList.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/components/WithdrawDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/components/WithdrawDialog.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/consts.ts -------------------------------------------------------------------------------- /src/modules/staking/sora/mixins/StakingMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/mixins/StakingMixin.ts -------------------------------------------------------------------------------- /src/modules/staking/sora/mixins/ValidatorsMixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/mixins/ValidatorsMixin.ts -------------------------------------------------------------------------------- /src/modules/staking/sora/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/types.ts -------------------------------------------------------------------------------- /src/modules/staking/sora/views/DataContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/views/DataContainer.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/views/Overview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/views/Overview.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/views/SelectValidators.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/views/SelectValidators.vue -------------------------------------------------------------------------------- /src/modules/staking/sora/views/ValidatorsType.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/sora/views/ValidatorsType.vue -------------------------------------------------------------------------------- /src/modules/staking/views/Staking.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/staking/views/Staking.vue -------------------------------------------------------------------------------- /src/modules/vault/components/AddCollateralDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/components/AddCollateralDialog.vue -------------------------------------------------------------------------------- /src/modules/vault/components/BorrowMoreDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/components/BorrowMoreDialog.vue -------------------------------------------------------------------------------- /src/modules/vault/components/CloseVaultDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/components/CloseVaultDialog.vue -------------------------------------------------------------------------------- /src/modules/vault/components/CreateVaultDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/components/CreateVaultDialog.vue -------------------------------------------------------------------------------- /src/modules/vault/components/ExploreCollaterals.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/components/ExploreCollaterals.vue -------------------------------------------------------------------------------- /src/modules/vault/components/ExploreOverallStats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/components/ExploreOverallStats.vue -------------------------------------------------------------------------------- /src/modules/vault/components/LtvProgressBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/components/LtvProgressBar.vue -------------------------------------------------------------------------------- /src/modules/vault/components/PositionStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/components/PositionStatus.vue -------------------------------------------------------------------------------- /src/modules/vault/components/PrevNextInfoLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/components/PrevNextInfoLine.vue -------------------------------------------------------------------------------- /src/modules/vault/components/RepayDebtDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/components/RepayDebtDialog.vue -------------------------------------------------------------------------------- /src/modules/vault/components/VaultDetailsHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/components/VaultDetailsHistory.vue -------------------------------------------------------------------------------- /src/modules/vault/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/consts.ts -------------------------------------------------------------------------------- /src/modules/vault/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/router.ts -------------------------------------------------------------------------------- /src/modules/vault/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/types.ts -------------------------------------------------------------------------------- /src/modules/vault/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/util.ts -------------------------------------------------------------------------------- /src/modules/vault/views/VaultDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/views/VaultDetails.vue -------------------------------------------------------------------------------- /src/modules/vault/views/Vaults.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/views/Vaults.vue -------------------------------------------------------------------------------- /src/modules/vault/views/VaultsContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/modules/vault/views/VaultsContainer.vue -------------------------------------------------------------------------------- /src/plugins/countryFlagEmoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/plugins/countryFlagEmoji.ts -------------------------------------------------------------------------------- /src/plugins/days-js-duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/plugins/days-js-duration.ts -------------------------------------------------------------------------------- /src/plugins/echarts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/plugins/echarts.ts -------------------------------------------------------------------------------- /src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/plugins/index.ts -------------------------------------------------------------------------------- /src/plugins/soramitsuUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/plugins/soramitsuUI.ts -------------------------------------------------------------------------------- /src/plugins/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/plugins/wallet.ts -------------------------------------------------------------------------------- /src/redirect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/redirect.ts -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/store/addLiquidity/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/addLiquidity/actions.ts -------------------------------------------------------------------------------- /src/store/addLiquidity/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/addLiquidity/getters.ts -------------------------------------------------------------------------------- /src/store/addLiquidity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/addLiquidity/index.ts -------------------------------------------------------------------------------- /src/store/addLiquidity/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/addLiquidity/mutations.ts -------------------------------------------------------------------------------- /src/store/addLiquidity/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/addLiquidity/state.ts -------------------------------------------------------------------------------- /src/store/addLiquidity/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/addLiquidity/types.ts -------------------------------------------------------------------------------- /src/store/assets/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/assets/actions.ts -------------------------------------------------------------------------------- /src/store/assets/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/assets/getters.ts -------------------------------------------------------------------------------- /src/store/assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/assets/index.ts -------------------------------------------------------------------------------- /src/store/assets/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/assets/mutations.ts -------------------------------------------------------------------------------- /src/store/assets/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/assets/state.ts -------------------------------------------------------------------------------- /src/store/assets/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/assets/types.ts -------------------------------------------------------------------------------- /src/store/bridge/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/bridge/actions.ts -------------------------------------------------------------------------------- /src/store/bridge/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/bridge/getters.ts -------------------------------------------------------------------------------- /src/store/bridge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/bridge/index.ts -------------------------------------------------------------------------------- /src/store/bridge/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/bridge/mutations.ts -------------------------------------------------------------------------------- /src/store/bridge/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/bridge/state.ts -------------------------------------------------------------------------------- /src/store/bridge/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/bridge/types.ts -------------------------------------------------------------------------------- /src/store/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/consts.ts -------------------------------------------------------------------------------- /src/store/dashboard/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/dashboard/actions.ts -------------------------------------------------------------------------------- /src/store/dashboard/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/dashboard/getters.ts -------------------------------------------------------------------------------- /src/store/dashboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/dashboard/index.ts -------------------------------------------------------------------------------- /src/store/dashboard/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/dashboard/mutations.ts -------------------------------------------------------------------------------- /src/store/dashboard/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/dashboard/state.ts -------------------------------------------------------------------------------- /src/store/dashboard/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/dashboard/types.ts -------------------------------------------------------------------------------- /src/store/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/decorators.ts -------------------------------------------------------------------------------- /src/store/demeterFarming/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/demeterFarming/actions.ts -------------------------------------------------------------------------------- /src/store/demeterFarming/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/demeterFarming/getters.ts -------------------------------------------------------------------------------- /src/store/demeterFarming/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/demeterFarming/index.ts -------------------------------------------------------------------------------- /src/store/demeterFarming/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/demeterFarming/mutations.ts -------------------------------------------------------------------------------- /src/store/demeterFarming/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/demeterFarming/state.ts -------------------------------------------------------------------------------- /src/store/demeterFarming/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/demeterFarming/types.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/moonpay/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/moonpay/actions.ts -------------------------------------------------------------------------------- /src/store/moonpay/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/moonpay/index.ts -------------------------------------------------------------------------------- /src/store/moonpay/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/moonpay/mutations.ts -------------------------------------------------------------------------------- /src/store/moonpay/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/moonpay/state.ts -------------------------------------------------------------------------------- /src/store/moonpay/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/moonpay/types.ts -------------------------------------------------------------------------------- /src/store/orderBook/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/orderBook/actions.ts -------------------------------------------------------------------------------- /src/store/orderBook/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/orderBook/getters.ts -------------------------------------------------------------------------------- /src/store/orderBook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/orderBook/index.ts -------------------------------------------------------------------------------- /src/store/orderBook/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/orderBook/mutations.ts -------------------------------------------------------------------------------- /src/store/orderBook/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/orderBook/state.ts -------------------------------------------------------------------------------- /src/store/orderBook/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/orderBook/types.ts -------------------------------------------------------------------------------- /src/store/pool/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/pool/actions.ts -------------------------------------------------------------------------------- /src/store/pool/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/pool/getters.ts -------------------------------------------------------------------------------- /src/store/pool/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/pool/index.ts -------------------------------------------------------------------------------- /src/store/pool/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/pool/mutations.ts -------------------------------------------------------------------------------- /src/store/pool/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/pool/state.ts -------------------------------------------------------------------------------- /src/store/pool/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/pool/types.ts -------------------------------------------------------------------------------- /src/store/referrals/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/referrals/actions.ts -------------------------------------------------------------------------------- /src/store/referrals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/referrals/index.ts -------------------------------------------------------------------------------- /src/store/referrals/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/referrals/mutations.ts -------------------------------------------------------------------------------- /src/store/referrals/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/referrals/state.ts -------------------------------------------------------------------------------- /src/store/referrals/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/referrals/types.ts -------------------------------------------------------------------------------- /src/store/removeLiquidity/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/removeLiquidity/actions.ts -------------------------------------------------------------------------------- /src/store/removeLiquidity/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/removeLiquidity/getters.ts -------------------------------------------------------------------------------- /src/store/removeLiquidity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/removeLiquidity/index.ts -------------------------------------------------------------------------------- /src/store/removeLiquidity/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/removeLiquidity/mutations.ts -------------------------------------------------------------------------------- /src/store/removeLiquidity/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/removeLiquidity/state.ts -------------------------------------------------------------------------------- /src/store/removeLiquidity/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/removeLiquidity/types.ts -------------------------------------------------------------------------------- /src/store/rewards/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/rewards/actions.ts -------------------------------------------------------------------------------- /src/store/rewards/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/rewards/getters.ts -------------------------------------------------------------------------------- /src/store/rewards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/rewards/index.ts -------------------------------------------------------------------------------- /src/store/rewards/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/rewards/mutations.ts -------------------------------------------------------------------------------- /src/store/rewards/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/rewards/state.ts -------------------------------------------------------------------------------- /src/store/rewards/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/rewards/types.ts -------------------------------------------------------------------------------- /src/store/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/router/index.ts -------------------------------------------------------------------------------- /src/store/router/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/router/mutations.ts -------------------------------------------------------------------------------- /src/store/router/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/router/state.ts -------------------------------------------------------------------------------- /src/store/router/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/router/types.ts -------------------------------------------------------------------------------- /src/store/settings/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/settings/actions.ts -------------------------------------------------------------------------------- /src/store/settings/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/settings/getters.ts -------------------------------------------------------------------------------- /src/store/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/settings/index.ts -------------------------------------------------------------------------------- /src/store/settings/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/settings/mutations.ts -------------------------------------------------------------------------------- /src/store/settings/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/settings/state.ts -------------------------------------------------------------------------------- /src/store/settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/settings/types.ts -------------------------------------------------------------------------------- /src/store/soraCard/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/soraCard/actions.ts -------------------------------------------------------------------------------- /src/store/soraCard/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/soraCard/getters.ts -------------------------------------------------------------------------------- /src/store/soraCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/soraCard/index.ts -------------------------------------------------------------------------------- /src/store/soraCard/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/soraCard/mutations.ts -------------------------------------------------------------------------------- /src/store/soraCard/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/soraCard/state.ts -------------------------------------------------------------------------------- /src/store/soraCard/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/soraCard/types.ts -------------------------------------------------------------------------------- /src/store/staking/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/staking/actions.ts -------------------------------------------------------------------------------- /src/store/staking/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/staking/getters.ts -------------------------------------------------------------------------------- /src/store/staking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/staking/index.ts -------------------------------------------------------------------------------- /src/store/staking/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/staking/mutations.ts -------------------------------------------------------------------------------- /src/store/staking/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/staking/state.ts -------------------------------------------------------------------------------- /src/store/staking/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/staking/types.ts -------------------------------------------------------------------------------- /src/store/swap/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/swap/actions.ts -------------------------------------------------------------------------------- /src/store/swap/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/swap/getters.ts -------------------------------------------------------------------------------- /src/store/swap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/swap/index.ts -------------------------------------------------------------------------------- /src/store/swap/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/swap/mutations.ts -------------------------------------------------------------------------------- /src/store/swap/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/swap/state.ts -------------------------------------------------------------------------------- /src/store/swap/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/swap/types.ts -------------------------------------------------------------------------------- /src/store/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/types.ts -------------------------------------------------------------------------------- /src/store/vault/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/vault/actions.ts -------------------------------------------------------------------------------- /src/store/vault/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/vault/getters.ts -------------------------------------------------------------------------------- /src/store/vault/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/vault/index.ts -------------------------------------------------------------------------------- /src/store/vault/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/vault/mutations.ts -------------------------------------------------------------------------------- /src/store/vault/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/vault/state.ts -------------------------------------------------------------------------------- /src/store/vault/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/vault/types.ts -------------------------------------------------------------------------------- /src/store/web3/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/web3/actions.ts -------------------------------------------------------------------------------- /src/store/web3/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/web3/getters.ts -------------------------------------------------------------------------------- /src/store/web3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/web3/index.ts -------------------------------------------------------------------------------- /src/store/web3/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/web3/mutations.ts -------------------------------------------------------------------------------- /src/store/web3/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/web3/state.ts -------------------------------------------------------------------------------- /src/store/web3/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/store/web3/types.ts -------------------------------------------------------------------------------- /src/styles/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/styles/_breakpoints.scss -------------------------------------------------------------------------------- /src/styles/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/styles/_layout.scss -------------------------------------------------------------------------------- /src/styles/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/styles/_mixins.scss -------------------------------------------------------------------------------- /src/styles/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/styles/_typography.scss -------------------------------------------------------------------------------- /src/styles/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/styles/common.scss -------------------------------------------------------------------------------- /src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/styles/index.ts -------------------------------------------------------------------------------- /src/styles/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/styles/normalize.css -------------------------------------------------------------------------------- /src/styles/soramitsu-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/styles/soramitsu-variables.scss -------------------------------------------------------------------------------- /src/types/bridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/bridge.ts -------------------------------------------------------------------------------- /src/types/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/card.ts -------------------------------------------------------------------------------- /src/types/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/chart.ts -------------------------------------------------------------------------------- /src/types/customEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/customEvent.ts -------------------------------------------------------------------------------- /src/types/evm/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/evm/provider.ts -------------------------------------------------------------------------------- /src/types/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/filters.ts -------------------------------------------------------------------------------- /src/types/formats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/formats.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /src/types/indexers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/indexers.ts -------------------------------------------------------------------------------- /src/types/intl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/intl.d.ts -------------------------------------------------------------------------------- /src/types/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/layout.ts -------------------------------------------------------------------------------- /src/types/networkSnapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/networkSnapshots.ts -------------------------------------------------------------------------------- /src/types/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/nodes.ts -------------------------------------------------------------------------------- /src/types/orderBook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/orderBook.ts -------------------------------------------------------------------------------- /src/types/pointSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/pointSystem.ts -------------------------------------------------------------------------------- /src/types/rewards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/rewards.ts -------------------------------------------------------------------------------- /src/types/shims-svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/shims-svg.d.ts -------------------------------------------------------------------------------- /src/types/shims-tsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/shims-tsx.d.ts -------------------------------------------------------------------------------- /src/types/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/shims-vue.d.ts -------------------------------------------------------------------------------- /src/types/tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/types/tabs.ts -------------------------------------------------------------------------------- /src/utils/bridge/common/classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/common/classes.ts -------------------------------------------------------------------------------- /src/utils/bridge/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/common/types.ts -------------------------------------------------------------------------------- /src/utils/bridge/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/common/utils.ts -------------------------------------------------------------------------------- /src/utils/bridge/eth/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/eth/api.ts -------------------------------------------------------------------------------- /src/utils/bridge/eth/classes/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/eth/classes/history.ts -------------------------------------------------------------------------------- /src/utils/bridge/eth/classes/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/eth/classes/reducers.ts -------------------------------------------------------------------------------- /src/utils/bridge/eth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/eth/index.ts -------------------------------------------------------------------------------- /src/utils/bridge/eth/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/eth/utils.ts -------------------------------------------------------------------------------- /src/utils/bridge/evm/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/evm/api.ts -------------------------------------------------------------------------------- /src/utils/bridge/evm/classes/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/evm/classes/reducers.ts -------------------------------------------------------------------------------- /src/utils/bridge/evm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/evm/index.ts -------------------------------------------------------------------------------- /src/utils/bridge/evm/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/evm/utils.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/api.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/classes/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/classes/adapter.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/classes/adapters/parachain/acala.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/classes/adapters/parachain/acala.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/classes/adapters/parachain/astar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/classes/adapters/parachain/astar.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/classes/adapters/parachain/common/assetRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/classes/adapters/parachain/common/assetRegistry.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/classes/adapters/parachain/curio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/classes/adapters/parachain/curio.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/classes/adapters/parachain/moonbase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/classes/adapters/parachain/moonbase.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/classes/adapters/parachain/parachain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/classes/adapters/parachain/parachain.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/classes/adapters/parachain/sora.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/classes/adapters/parachain/sora.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/classes/adapters/relaychain/alphanet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/classes/adapters/relaychain/alphanet.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/classes/adapters/relaychain/relaychain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/classes/adapters/relaychain/relaychain.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/classes/adapters/standalone/liberland.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/classes/adapters/standalone/liberland.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/classes/adapters/substrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/classes/adapters/substrate.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/classes/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/classes/history.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/classes/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/classes/reducers.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/index.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/types.ts -------------------------------------------------------------------------------- /src/utils/bridge/sub/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/bridge/sub/utils.ts -------------------------------------------------------------------------------- /src/utils/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/card.ts -------------------------------------------------------------------------------- /src/utils/connection/evm/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/connection/evm/providers.ts -------------------------------------------------------------------------------- /src/utils/connection/evm/walletconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/connection/evm/walletconnect.ts -------------------------------------------------------------------------------- /src/utils/connection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/connection/index.ts -------------------------------------------------------------------------------- /src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/error.ts -------------------------------------------------------------------------------- /src/utils/ethers-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/ethers-util.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/moonpay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/moonpay.ts -------------------------------------------------------------------------------- /src/utils/orderBook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/orderBook.ts -------------------------------------------------------------------------------- /src/utils/pointSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/pointSystem.ts -------------------------------------------------------------------------------- /src/utils/regexp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/regexp.ts -------------------------------------------------------------------------------- /src/utils/rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/rpc.ts -------------------------------------------------------------------------------- /src/utils/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/storage.ts -------------------------------------------------------------------------------- /src/utils/subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/subscriptions.ts -------------------------------------------------------------------------------- /src/utils/swap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/swap.ts -------------------------------------------------------------------------------- /src/utils/switchTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/switchTheme.ts -------------------------------------------------------------------------------- /src/utils/telegram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/utils/telegram.ts -------------------------------------------------------------------------------- /src/views/AddLiquidity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/AddLiquidity.vue -------------------------------------------------------------------------------- /src/views/AssetOwnerContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/AssetOwnerContainer.vue -------------------------------------------------------------------------------- /src/views/Bridge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/Bridge.vue -------------------------------------------------------------------------------- /src/views/BridgeContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/BridgeContainer.vue -------------------------------------------------------------------------------- /src/views/BridgeTransaction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/BridgeTransaction.vue -------------------------------------------------------------------------------- /src/views/BridgeTransactionsHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/BridgeTransactionsHistory.vue -------------------------------------------------------------------------------- /src/views/Burn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/Burn.vue -------------------------------------------------------------------------------- /src/views/CedeStore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/CedeStore.vue -------------------------------------------------------------------------------- /src/views/DepositOptions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/DepositOptions.vue -------------------------------------------------------------------------------- /src/views/DepositTxHistory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/DepositTxHistory.vue -------------------------------------------------------------------------------- /src/views/Explore/Books.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/Explore/Books.vue -------------------------------------------------------------------------------- /src/views/Explore/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/Explore/Container.vue -------------------------------------------------------------------------------- /src/views/Explore/Demeter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/Explore/Demeter.vue -------------------------------------------------------------------------------- /src/views/Explore/Pools.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/Explore/Pools.vue -------------------------------------------------------------------------------- /src/views/Explore/Tokens.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/Explore/Tokens.vue -------------------------------------------------------------------------------- /src/views/OrderBook.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/OrderBook.vue -------------------------------------------------------------------------------- /src/views/PointSystem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/PointSystem.vue -------------------------------------------------------------------------------- /src/views/PointSystemV2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/PointSystemV2.vue -------------------------------------------------------------------------------- /src/views/PointSystemWrapper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/PointSystemWrapper.vue -------------------------------------------------------------------------------- /src/views/ReferralBonding.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/ReferralBonding.vue -------------------------------------------------------------------------------- /src/views/ReferralProgram.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/ReferralProgram.vue -------------------------------------------------------------------------------- /src/views/Rewards.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/Rewards.vue -------------------------------------------------------------------------------- /src/views/RewardsTabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/RewardsTabs.vue -------------------------------------------------------------------------------- /src/views/SoraCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/SoraCard.vue -------------------------------------------------------------------------------- /src/views/StakingContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/StakingContainer.vue -------------------------------------------------------------------------------- /src/views/Stats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/Stats.vue -------------------------------------------------------------------------------- /src/views/Swap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/Swap.vue -------------------------------------------------------------------------------- /src/views/Wallet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/src/views/Wallet.vue -------------------------------------------------------------------------------- /tests/e2e/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/tests/e2e/.eslintrc.js -------------------------------------------------------------------------------- /tests/e2e/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/tests/e2e/plugins/index.js -------------------------------------------------------------------------------- /tests/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/tests/e2e/specs/test.js -------------------------------------------------------------------------------- /tests/e2e/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/tests/e2e/support/commands.js -------------------------------------------------------------------------------- /tests/e2e/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/tests/e2e/support/index.js -------------------------------------------------------------------------------- /tests/mocks/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/tests/mocks/account.ts -------------------------------------------------------------------------------- /tests/mocks/components/SwapInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/tests/mocks/components/SwapInfo.ts -------------------------------------------------------------------------------- /tests/mocks/liquidity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/tests/mocks/liquidity.ts -------------------------------------------------------------------------------- /tests/mocks/swap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/tests/mocks/swap.ts -------------------------------------------------------------------------------- /tests/mocks/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/tests/mocks/tokens.ts -------------------------------------------------------------------------------- /tests/translation/Translation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/tests/translation/Translation.spec.ts -------------------------------------------------------------------------------- /tests/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/tests/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /vitest.workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/vitest.workspace.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrongBlue0703/polkaswap-exchange-web/HEAD/yarn.lock --------------------------------------------------------------------------------