├── .commitlintrc.json ├── .env ├── .eslintignore ├── .eslintrc.cjs ├── .firebaserc ├── .gitattributes ├── .github └── workflows │ ├── e2e.yml │ ├── feature.yml │ ├── lint-pr-title.yml │ ├── production.yml │ ├── pull_request_template.md │ ├── release.yml │ ├── secrets_scanner.yaml │ └── version.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .npmrc ├── .releaserc ├── DEPLOYMENT.md ├── Dockerfile ├── LICENSE ├── README.md ├── app.vue ├── assets ├── .DS_Store └── css │ ├── _mixins.scss │ ├── style.scss │ └── tailwind.css ├── components ├── .DS_Store ├── BridgeFromEthereumButton.vue ├── ConnectWalletBlock.vue ├── EcosystemBlock.vue ├── address │ ├── AddressAvatar.vue │ ├── AddressCard.vue │ └── AddressCardLoader.vue ├── animations │ ├── EcosystemLogotypes.vue │ └── TransactionProgress.vue ├── auth │ └── PrividiumAuthModal.vue ├── common │ ├── Alert.vue │ ├── Badge.vue │ ├── CardWithLineButtons.vue │ ├── Checkbox.vue │ ├── CheckboxWithText.vue │ ├── CircleLoader.vue │ ├── ContentBlock.vue │ ├── ContentLoader.vue │ ├── EmptyBlock.vue │ ├── ErrorBlock.vue │ ├── HeightTransition.vue │ ├── ImageLoader.vue │ ├── LineButtonsGroup.vue │ ├── Modal.vue │ ├── QrAddressInput.vue │ ├── QrCodeStyled.vue │ ├── QrInput.vue │ ├── QrUploadIconButton.vue │ ├── SmallInput.vue │ ├── Spinner.vue │ ├── Timer.vue │ ├── TotalBalance.vue │ ├── button │ │ ├── Button.vue │ │ ├── ButtonBack.vue │ │ ├── ButtonGroup.vue │ │ ├── Dropdown.vue │ │ ├── Label.vue │ │ ├── Line.vue │ │ ├── LineBodyInfo.vue │ │ ├── LineWithImg.vue │ │ ├── TopInfo.vue │ │ ├── TopLink.vue │ │ └── UnderlineText.vue │ └── input │ │ ├── ErrorMessage.vue │ │ ├── InputLine.vue │ │ ├── Search.vue │ │ ├── TransactionAddress.vue │ │ └── TransactionAmount.vue ├── destination │ ├── DestinationItem.vue │ ├── DestinationLabel.vue │ └── IconContainer.vue ├── footer │ └── Footer.vue ├── header │ ├── AccountDropdown.vue │ ├── AccountDropdownButton.vue │ ├── Header.vue │ ├── HelpModal.vue │ ├── MobileAccountNavigation.vue │ ├── MobileMainNavigation.vue │ ├── MobileNavigation.vue │ └── NetworkDropdown.vue ├── icons │ ├── Discord.vue │ ├── Era.vue │ ├── Ethereum.vue │ ├── GitHub.vue │ ├── Twitter.vue │ └── zkSync.vue ├── loaders │ └── Connecting.vue ├── modal │ ├── ConnectingWalletError.vue │ ├── LegalNotice.vue │ ├── NetworkChangedWarning.vue │ └── transaction │ │ ├── DepositUnavailable.vue │ │ └── WithdrawalUnavailable.vue ├── network │ ├── DeprecationAlert.vue │ └── NetworkSelectModal.vue ├── page │ ├── BackButton.vue │ └── Title.vue ├── token │ ├── TokenBalance.vue │ ├── TokenBalanceLoader.vue │ ├── TokenImage.vue │ ├── TokenLine.vue │ └── TokenSelectModal.vue ├── transaction │ ├── AllowancePanel.vue │ ├── CustomBridge.vue │ ├── EthereumTransactionFooter.vue │ ├── FeeDetails.vue │ ├── NativeBridge.vue │ ├── TransactionFooter.vue │ ├── TransactionHashButton.vue │ ├── TransactionProgress.vue │ ├── TransferLineItem.vue │ ├── TransferWithdrawalLineItem.vue │ ├── WithdrawalsAvailableForClaimAlert.vue │ ├── buttonUnderline │ │ ├── ConfirmTransaction.vue │ │ └── ContinueInWallet.vue │ ├── lineItem │ │ ├── TokenAmount.vue │ │ ├── TotalPrice.vue │ │ └── TransactionLineItem.vue │ └── summary │ │ ├── AddressEntry.vue │ │ └── TokenEntry.vue └── typography │ └── CategoryLabel.vue ├── composables ├── transaction │ ├── useAllowance.ts │ └── useNativeAllowance.ts ├── useColorMode.ts ├── useCopy.ts ├── useEnsName.ts ├── useInterval.ts ├── useIsBeforeDate.ts ├── useObservable.ts ├── usePortalRuntimeConfig.ts ├── usePromise.ts ├── useScreening.ts ├── useSentryLogger.ts ├── useSingleLoading.ts ├── useStaticConfig.ts ├── useTimedCache.ts └── zksync │ ├── deposit │ ├── useEcosystemBanner.ts │ ├── useFee.ts │ └── useTransaction.ts │ ├── useFee.ts │ ├── usePaginatedRequest.ts │ ├── useTransaction.ts │ └── useWithdrawalFinalization.ts ├── data ├── abis │ ├── ierc20Abi.ts │ ├── l1BridgeAbi.ts │ └── nativeTokenVaultAbi.ts ├── customBridgeTokens.ts ├── meta.ts ├── networks.ts ├── prividium.ts ├── wagmi.ts └── wallets.ts ├── error.vue ├── firebase.json ├── hyperchains ├── .gitignore ├── README.md ├── config.json └── example.config.json ├── layouts └── default.vue ├── nuxt.config.ts ├── package.json ├── pages ├── assets.vue ├── balances.vue ├── bridge │ ├── index.vue │ └── withdraw.vue ├── index.vue ├── on-ramp │ └── index.vue ├── receive-methods.vue ├── receive.vue ├── send-methods.vue ├── send.vue ├── transaction │ └── [hash].vue └── transfers.vue ├── plugins ├── alwaysRun.client.ts ├── qr.client.ts ├── redirects.client.ts ├── sentry.client.ts └── tooltip.client.ts ├── public ├── config.js ├── icon.png ├── img │ ├── banxa.svg │ ├── binance.svg │ ├── ecosystem │ │ ├── 1inch.svg │ │ ├── clave.svg │ │ ├── gravity.svg │ │ ├── layerswap.svg │ │ ├── lido.svg │ │ ├── mase.svg │ │ ├── pudgy_penguin.svg │ │ ├── quarkid.svg │ │ ├── ramp.svg │ │ ├── rocket_pool.svg │ │ └── uniswap.svg │ ├── era.svg │ ├── eth.svg │ ├── ethereum.svg │ ├── ezkalibur.svg │ ├── faucet.svg │ ├── izumi.svg │ ├── maverick-protocol.svg │ ├── moonpay.svg │ ├── multichain.svg │ ├── mute.svg │ ├── orbiter.svg │ ├── ramp.svg │ ├── rhino.svg │ ├── spacefi.svg │ ├── symbiosis.svg │ ├── syncswap.svg │ ├── txsync.png │ ├── velocore.svg │ ├── vesync.svg │ ├── zigzag.svg │ └── zksync-lite.svg ├── logo.svg └── preview.png ├── scripts ├── create-release-assets.sh ├── hyperchains │ ├── common.ts │ ├── configure.ts │ ├── create.ts │ ├── empty-check.ts │ └── utils.ts ├── tsconfig.json └── updateBridgeMetaTags.ts ├── store ├── contacts.ts ├── destinations.ts ├── ens.ts ├── ethereumBalance.ts ├── network.ts ├── on-ramp │ ├── on-ramp.ts │ ├── order-processing.ts │ ├── quotes.ts │ └── routes.ts ├── onboard.ts ├── preferences.ts ├── prividium.ts └── zksync │ ├── ethereumBalance.ts │ ├── provider.ts │ ├── tokens.ts │ ├── transactionStatus.ts │ ├── transfersHistory.ts │ ├── wallet.ts │ └── withdrawals.ts ├── tailwind.config.js ├── tests └── e2e │ ├── README.md │ ├── cucumber.mjs │ ├── features │ ├── actions │ │ └── mainPage │ │ │ ├── actions-menu.feature │ │ │ └── faucet │ │ │ └── actions-faucet.feature │ ├── artifacts │ │ ├── assetsPage │ │ │ ├── artifacts-emptyWallet.feature │ │ │ └── artifacts-richWallet.feature │ │ ├── bridgePage │ │ │ └── artifacts.feature │ │ ├── contactsPage │ │ │ └── artifacts.feature │ │ ├── depositPage │ │ │ └── artifacts-deposits.feature │ │ ├── mainPage │ │ │ ├── artifacts-404.feature │ │ │ ├── artifacts-header.feature │ │ │ ├── artifacts-menuitems.feature │ │ │ └── artifacts-upperNavigarionMenu.feature │ │ ├── swapPage │ │ │ └── artifacts-swap.feature │ │ ├── transactionsPage │ │ │ └── artifacts-transactions.feature │ │ ├── transferPage │ │ │ └── atrifacts-transfers.feature │ │ ├── whereToSendPage │ │ │ └── artifacts.feature │ │ └── withdrawPage │ │ │ └── artifacts-withdraw.feature │ ├── contacts │ │ └── сontacts.feature │ ├── navigation │ │ └── navigation.feature │ ├── redirection │ │ ├── depositPage │ │ │ └── redirection.feature │ │ ├── loginPage │ │ │ └── redirection.feature │ │ └── mainPage │ │ │ └── redirection.feature │ └── transactions │ │ ├── deposit │ │ ├── bridge-deposit-with-blockchain.feature │ │ ├── deposit-empty-wallet.feature │ │ ├── deposit-no-blockchain.feature │ │ ├── deposit-with-blockchain.feature │ │ └── deposit-with-revoke.feature │ │ ├── transfer.feature │ │ └── withdraw.feature │ ├── package.json │ ├── src │ ├── data │ │ └── data.ts │ ├── helpers │ │ └── helper.ts │ ├── pages │ │ ├── base.page.ts │ │ ├── contacts.page.ts │ │ ├── login.page.ts │ │ ├── main.page.ts │ │ ├── metamask.page.ts │ │ └── revoke.page.ts │ ├── steps │ │ └── portal.steps.ts │ └── support │ │ ├── common-hooks.ts │ │ ├── config.ts │ │ ├── custom-world.ts │ │ └── reporters │ │ └── allure-reporter.js │ ├── tsconfig.json │ └── utils │ ├── metamaskDownloader.mjs │ └── metamaskId.json ├── tsconfig.json ├── types ├── dompurify.d.ts └── index.d.ts ├── utils ├── analytics.ts ├── constants.ts ├── doc-links.ts ├── formatters.ts ├── helpers.ts ├── logger.ts ├── mappers.ts ├── sentry-logger.ts └── transitions.ts └── views ├── on-ramp ├── ActiveTransactionsAlert.vue ├── CompletedView.vue ├── FormView.vue ├── LoadingTransition.vue ├── MiddlePanel.vue ├── ProcessStatusIcon.vue ├── ProcessingView.vue ├── QuoteFilter.vue ├── QuotePreview.vue ├── QuotesList.vue ├── SelectTokenModal.vue └── TransactionsView.vue └── transactions ├── Deposit.vue ├── DepositSubmitted.vue ├── Receive.vue ├── Transfer.vue ├── TransferSubmitted.vue └── WithdrawalSubmitted.vue /.commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.commitlintrc.json -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.env -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.github/workflows/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.github/workflows/feature.yml -------------------------------------------------------------------------------- /.github/workflows/lint-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.github/workflows/lint-pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.github/workflows/production.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.github/workflows/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/secrets_scanner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.github/workflows/secrets_scanner.yaml -------------------------------------------------------------------------------- /.github/workflows/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.github/workflows/version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | strict-peer-dependencies=false 3 | -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/.releaserc -------------------------------------------------------------------------------- /DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/DEPLOYMENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/README.md -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/app.vue -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/css/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/assets/css/_mixins.scss -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/assets/css/style.scss -------------------------------------------------------------------------------- /assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/assets/css/tailwind.css -------------------------------------------------------------------------------- /components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/.DS_Store -------------------------------------------------------------------------------- /components/BridgeFromEthereumButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/BridgeFromEthereumButton.vue -------------------------------------------------------------------------------- /components/ConnectWalletBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/ConnectWalletBlock.vue -------------------------------------------------------------------------------- /components/EcosystemBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/EcosystemBlock.vue -------------------------------------------------------------------------------- /components/address/AddressAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/address/AddressAvatar.vue -------------------------------------------------------------------------------- /components/address/AddressCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/address/AddressCard.vue -------------------------------------------------------------------------------- /components/address/AddressCardLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/address/AddressCardLoader.vue -------------------------------------------------------------------------------- /components/animations/EcosystemLogotypes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/animations/EcosystemLogotypes.vue -------------------------------------------------------------------------------- /components/animations/TransactionProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/animations/TransactionProgress.vue -------------------------------------------------------------------------------- /components/auth/PrividiumAuthModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/auth/PrividiumAuthModal.vue -------------------------------------------------------------------------------- /components/common/Alert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/Alert.vue -------------------------------------------------------------------------------- /components/common/Badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/Badge.vue -------------------------------------------------------------------------------- /components/common/CardWithLineButtons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/CardWithLineButtons.vue -------------------------------------------------------------------------------- /components/common/Checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/Checkbox.vue -------------------------------------------------------------------------------- /components/common/CheckboxWithText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/CheckboxWithText.vue -------------------------------------------------------------------------------- /components/common/CircleLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/CircleLoader.vue -------------------------------------------------------------------------------- /components/common/ContentBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/ContentBlock.vue -------------------------------------------------------------------------------- /components/common/ContentLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/ContentLoader.vue -------------------------------------------------------------------------------- /components/common/EmptyBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/EmptyBlock.vue -------------------------------------------------------------------------------- /components/common/ErrorBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/ErrorBlock.vue -------------------------------------------------------------------------------- /components/common/HeightTransition.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/HeightTransition.vue -------------------------------------------------------------------------------- /components/common/ImageLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/ImageLoader.vue -------------------------------------------------------------------------------- /components/common/LineButtonsGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/LineButtonsGroup.vue -------------------------------------------------------------------------------- /components/common/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/Modal.vue -------------------------------------------------------------------------------- /components/common/QrAddressInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/QrAddressInput.vue -------------------------------------------------------------------------------- /components/common/QrCodeStyled.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/QrCodeStyled.vue -------------------------------------------------------------------------------- /components/common/QrInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/QrInput.vue -------------------------------------------------------------------------------- /components/common/QrUploadIconButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/QrUploadIconButton.vue -------------------------------------------------------------------------------- /components/common/SmallInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/SmallInput.vue -------------------------------------------------------------------------------- /components/common/Spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/Spinner.vue -------------------------------------------------------------------------------- /components/common/Timer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/Timer.vue -------------------------------------------------------------------------------- /components/common/TotalBalance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/TotalBalance.vue -------------------------------------------------------------------------------- /components/common/button/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/button/Button.vue -------------------------------------------------------------------------------- /components/common/button/ButtonBack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/button/ButtonBack.vue -------------------------------------------------------------------------------- /components/common/button/ButtonGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/button/ButtonGroup.vue -------------------------------------------------------------------------------- /components/common/button/Dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/button/Dropdown.vue -------------------------------------------------------------------------------- /components/common/button/Label.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/button/Label.vue -------------------------------------------------------------------------------- /components/common/button/Line.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/button/Line.vue -------------------------------------------------------------------------------- /components/common/button/LineBodyInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/button/LineBodyInfo.vue -------------------------------------------------------------------------------- /components/common/button/LineWithImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/button/LineWithImg.vue -------------------------------------------------------------------------------- /components/common/button/TopInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/button/TopInfo.vue -------------------------------------------------------------------------------- /components/common/button/TopLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/button/TopLink.vue -------------------------------------------------------------------------------- /components/common/button/UnderlineText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/button/UnderlineText.vue -------------------------------------------------------------------------------- /components/common/input/ErrorMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/input/ErrorMessage.vue -------------------------------------------------------------------------------- /components/common/input/InputLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/input/InputLine.vue -------------------------------------------------------------------------------- /components/common/input/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/input/Search.vue -------------------------------------------------------------------------------- /components/common/input/TransactionAddress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/input/TransactionAddress.vue -------------------------------------------------------------------------------- /components/common/input/TransactionAmount.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/common/input/TransactionAmount.vue -------------------------------------------------------------------------------- /components/destination/DestinationItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/destination/DestinationItem.vue -------------------------------------------------------------------------------- /components/destination/DestinationLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/destination/DestinationLabel.vue -------------------------------------------------------------------------------- /components/destination/IconContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/destination/IconContainer.vue -------------------------------------------------------------------------------- /components/footer/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/footer/Footer.vue -------------------------------------------------------------------------------- /components/header/AccountDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/header/AccountDropdown.vue -------------------------------------------------------------------------------- /components/header/AccountDropdownButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/header/AccountDropdownButton.vue -------------------------------------------------------------------------------- /components/header/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/header/Header.vue -------------------------------------------------------------------------------- /components/header/HelpModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/header/HelpModal.vue -------------------------------------------------------------------------------- /components/header/MobileAccountNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/header/MobileAccountNavigation.vue -------------------------------------------------------------------------------- /components/header/MobileMainNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/header/MobileMainNavigation.vue -------------------------------------------------------------------------------- /components/header/MobileNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/header/MobileNavigation.vue -------------------------------------------------------------------------------- /components/header/NetworkDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/header/NetworkDropdown.vue -------------------------------------------------------------------------------- /components/icons/Discord.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/icons/Discord.vue -------------------------------------------------------------------------------- /components/icons/Era.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/icons/Era.vue -------------------------------------------------------------------------------- /components/icons/Ethereum.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/icons/Ethereum.vue -------------------------------------------------------------------------------- /components/icons/GitHub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/icons/GitHub.vue -------------------------------------------------------------------------------- /components/icons/Twitter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/icons/Twitter.vue -------------------------------------------------------------------------------- /components/icons/zkSync.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/icons/zkSync.vue -------------------------------------------------------------------------------- /components/loaders/Connecting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/loaders/Connecting.vue -------------------------------------------------------------------------------- /components/modal/ConnectingWalletError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/modal/ConnectingWalletError.vue -------------------------------------------------------------------------------- /components/modal/LegalNotice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/modal/LegalNotice.vue -------------------------------------------------------------------------------- /components/modal/NetworkChangedWarning.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/modal/NetworkChangedWarning.vue -------------------------------------------------------------------------------- /components/modal/transaction/DepositUnavailable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/modal/transaction/DepositUnavailable.vue -------------------------------------------------------------------------------- /components/modal/transaction/WithdrawalUnavailable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/modal/transaction/WithdrawalUnavailable.vue -------------------------------------------------------------------------------- /components/network/DeprecationAlert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/network/DeprecationAlert.vue -------------------------------------------------------------------------------- /components/network/NetworkSelectModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/network/NetworkSelectModal.vue -------------------------------------------------------------------------------- /components/page/BackButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/page/BackButton.vue -------------------------------------------------------------------------------- /components/page/Title.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/page/Title.vue -------------------------------------------------------------------------------- /components/token/TokenBalance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/token/TokenBalance.vue -------------------------------------------------------------------------------- /components/token/TokenBalanceLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/token/TokenBalanceLoader.vue -------------------------------------------------------------------------------- /components/token/TokenImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/token/TokenImage.vue -------------------------------------------------------------------------------- /components/token/TokenLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/token/TokenLine.vue -------------------------------------------------------------------------------- /components/token/TokenSelectModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/token/TokenSelectModal.vue -------------------------------------------------------------------------------- /components/transaction/AllowancePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/AllowancePanel.vue -------------------------------------------------------------------------------- /components/transaction/CustomBridge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/CustomBridge.vue -------------------------------------------------------------------------------- /components/transaction/EthereumTransactionFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/EthereumTransactionFooter.vue -------------------------------------------------------------------------------- /components/transaction/FeeDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/FeeDetails.vue -------------------------------------------------------------------------------- /components/transaction/NativeBridge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/NativeBridge.vue -------------------------------------------------------------------------------- /components/transaction/TransactionFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/TransactionFooter.vue -------------------------------------------------------------------------------- /components/transaction/TransactionHashButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/TransactionHashButton.vue -------------------------------------------------------------------------------- /components/transaction/TransactionProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/TransactionProgress.vue -------------------------------------------------------------------------------- /components/transaction/TransferLineItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/TransferLineItem.vue -------------------------------------------------------------------------------- /components/transaction/TransferWithdrawalLineItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/TransferWithdrawalLineItem.vue -------------------------------------------------------------------------------- /components/transaction/WithdrawalsAvailableForClaimAlert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/WithdrawalsAvailableForClaimAlert.vue -------------------------------------------------------------------------------- /components/transaction/buttonUnderline/ConfirmTransaction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/buttonUnderline/ConfirmTransaction.vue -------------------------------------------------------------------------------- /components/transaction/buttonUnderline/ContinueInWallet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/buttonUnderline/ContinueInWallet.vue -------------------------------------------------------------------------------- /components/transaction/lineItem/TokenAmount.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/lineItem/TokenAmount.vue -------------------------------------------------------------------------------- /components/transaction/lineItem/TotalPrice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/lineItem/TotalPrice.vue -------------------------------------------------------------------------------- /components/transaction/lineItem/TransactionLineItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/lineItem/TransactionLineItem.vue -------------------------------------------------------------------------------- /components/transaction/summary/AddressEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/summary/AddressEntry.vue -------------------------------------------------------------------------------- /components/transaction/summary/TokenEntry.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/transaction/summary/TokenEntry.vue -------------------------------------------------------------------------------- /components/typography/CategoryLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/components/typography/CategoryLabel.vue -------------------------------------------------------------------------------- /composables/transaction/useAllowance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/transaction/useAllowance.ts -------------------------------------------------------------------------------- /composables/transaction/useNativeAllowance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/transaction/useNativeAllowance.ts -------------------------------------------------------------------------------- /composables/useColorMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/useColorMode.ts -------------------------------------------------------------------------------- /composables/useCopy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/useCopy.ts -------------------------------------------------------------------------------- /composables/useEnsName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/useEnsName.ts -------------------------------------------------------------------------------- /composables/useInterval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/useInterval.ts -------------------------------------------------------------------------------- /composables/useIsBeforeDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/useIsBeforeDate.ts -------------------------------------------------------------------------------- /composables/useObservable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/useObservable.ts -------------------------------------------------------------------------------- /composables/usePortalRuntimeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/usePortalRuntimeConfig.ts -------------------------------------------------------------------------------- /composables/usePromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/usePromise.ts -------------------------------------------------------------------------------- /composables/useScreening.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/useScreening.ts -------------------------------------------------------------------------------- /composables/useSentryLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/useSentryLogger.ts -------------------------------------------------------------------------------- /composables/useSingleLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/useSingleLoading.ts -------------------------------------------------------------------------------- /composables/useStaticConfig.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /composables/useTimedCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/useTimedCache.ts -------------------------------------------------------------------------------- /composables/zksync/deposit/useEcosystemBanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/zksync/deposit/useEcosystemBanner.ts -------------------------------------------------------------------------------- /composables/zksync/deposit/useFee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/zksync/deposit/useFee.ts -------------------------------------------------------------------------------- /composables/zksync/deposit/useTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/zksync/deposit/useTransaction.ts -------------------------------------------------------------------------------- /composables/zksync/useFee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/zksync/useFee.ts -------------------------------------------------------------------------------- /composables/zksync/usePaginatedRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/zksync/usePaginatedRequest.ts -------------------------------------------------------------------------------- /composables/zksync/useTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/zksync/useTransaction.ts -------------------------------------------------------------------------------- /composables/zksync/useWithdrawalFinalization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/composables/zksync/useWithdrawalFinalization.ts -------------------------------------------------------------------------------- /data/abis/ierc20Abi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/data/abis/ierc20Abi.ts -------------------------------------------------------------------------------- /data/abis/l1BridgeAbi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/data/abis/l1BridgeAbi.ts -------------------------------------------------------------------------------- /data/abis/nativeTokenVaultAbi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/data/abis/nativeTokenVaultAbi.ts -------------------------------------------------------------------------------- /data/customBridgeTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/data/customBridgeTokens.ts -------------------------------------------------------------------------------- /data/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/data/meta.ts -------------------------------------------------------------------------------- /data/networks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/data/networks.ts -------------------------------------------------------------------------------- /data/prividium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/data/prividium.ts -------------------------------------------------------------------------------- /data/wagmi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/data/wagmi.ts -------------------------------------------------------------------------------- /data/wallets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/data/wallets.ts -------------------------------------------------------------------------------- /error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/error.vue -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/firebase.json -------------------------------------------------------------------------------- /hyperchains/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/hyperchains/.gitignore -------------------------------------------------------------------------------- /hyperchains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/hyperchains/README.md -------------------------------------------------------------------------------- /hyperchains/config.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /hyperchains/example.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/hyperchains/example.config.json -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/package.json -------------------------------------------------------------------------------- /pages/assets.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/pages/assets.vue -------------------------------------------------------------------------------- /pages/balances.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/pages/balances.vue -------------------------------------------------------------------------------- /pages/bridge/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/pages/bridge/index.vue -------------------------------------------------------------------------------- /pages/bridge/withdraw.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/pages/bridge/withdraw.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/on-ramp/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/pages/on-ramp/index.vue -------------------------------------------------------------------------------- /pages/receive-methods.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/pages/receive-methods.vue -------------------------------------------------------------------------------- /pages/receive.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/pages/receive.vue -------------------------------------------------------------------------------- /pages/send-methods.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/pages/send-methods.vue -------------------------------------------------------------------------------- /pages/send.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/pages/send.vue -------------------------------------------------------------------------------- /pages/transaction/[hash].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/pages/transaction/[hash].vue -------------------------------------------------------------------------------- /pages/transfers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/pages/transfers.vue -------------------------------------------------------------------------------- /plugins/alwaysRun.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/plugins/alwaysRun.client.ts -------------------------------------------------------------------------------- /plugins/qr.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/plugins/qr.client.ts -------------------------------------------------------------------------------- /plugins/redirects.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/plugins/redirects.client.ts -------------------------------------------------------------------------------- /plugins/sentry.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/plugins/sentry.client.ts -------------------------------------------------------------------------------- /plugins/tooltip.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/plugins/tooltip.client.ts -------------------------------------------------------------------------------- /public/config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/img/banxa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/banxa.svg -------------------------------------------------------------------------------- /public/img/binance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/binance.svg -------------------------------------------------------------------------------- /public/img/ecosystem/1inch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/ecosystem/1inch.svg -------------------------------------------------------------------------------- /public/img/ecosystem/clave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/ecosystem/clave.svg -------------------------------------------------------------------------------- /public/img/ecosystem/gravity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/ecosystem/gravity.svg -------------------------------------------------------------------------------- /public/img/ecosystem/layerswap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/ecosystem/layerswap.svg -------------------------------------------------------------------------------- /public/img/ecosystem/lido.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/ecosystem/lido.svg -------------------------------------------------------------------------------- /public/img/ecosystem/mase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/ecosystem/mase.svg -------------------------------------------------------------------------------- /public/img/ecosystem/pudgy_penguin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/ecosystem/pudgy_penguin.svg -------------------------------------------------------------------------------- /public/img/ecosystem/quarkid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/ecosystem/quarkid.svg -------------------------------------------------------------------------------- /public/img/ecosystem/ramp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/ecosystem/ramp.svg -------------------------------------------------------------------------------- /public/img/ecosystem/rocket_pool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/ecosystem/rocket_pool.svg -------------------------------------------------------------------------------- /public/img/ecosystem/uniswap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/ecosystem/uniswap.svg -------------------------------------------------------------------------------- /public/img/era.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/era.svg -------------------------------------------------------------------------------- /public/img/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/eth.svg -------------------------------------------------------------------------------- /public/img/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/ethereum.svg -------------------------------------------------------------------------------- /public/img/ezkalibur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/ezkalibur.svg -------------------------------------------------------------------------------- /public/img/faucet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/faucet.svg -------------------------------------------------------------------------------- /public/img/izumi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/izumi.svg -------------------------------------------------------------------------------- /public/img/maverick-protocol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/maverick-protocol.svg -------------------------------------------------------------------------------- /public/img/moonpay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/moonpay.svg -------------------------------------------------------------------------------- /public/img/multichain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/multichain.svg -------------------------------------------------------------------------------- /public/img/mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/mute.svg -------------------------------------------------------------------------------- /public/img/orbiter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/orbiter.svg -------------------------------------------------------------------------------- /public/img/ramp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/ramp.svg -------------------------------------------------------------------------------- /public/img/rhino.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/rhino.svg -------------------------------------------------------------------------------- /public/img/spacefi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/spacefi.svg -------------------------------------------------------------------------------- /public/img/symbiosis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/symbiosis.svg -------------------------------------------------------------------------------- /public/img/syncswap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/syncswap.svg -------------------------------------------------------------------------------- /public/img/txsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/txsync.png -------------------------------------------------------------------------------- /public/img/velocore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/velocore.svg -------------------------------------------------------------------------------- /public/img/vesync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/vesync.svg -------------------------------------------------------------------------------- /public/img/zigzag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/zigzag.svg -------------------------------------------------------------------------------- /public/img/zksync-lite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/img/zksync-lite.svg -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/public/preview.png -------------------------------------------------------------------------------- /scripts/create-release-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/scripts/create-release-assets.sh -------------------------------------------------------------------------------- /scripts/hyperchains/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/scripts/hyperchains/common.ts -------------------------------------------------------------------------------- /scripts/hyperchains/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/scripts/hyperchains/configure.ts -------------------------------------------------------------------------------- /scripts/hyperchains/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/scripts/hyperchains/create.ts -------------------------------------------------------------------------------- /scripts/hyperchains/empty-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/scripts/hyperchains/empty-check.ts -------------------------------------------------------------------------------- /scripts/hyperchains/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/scripts/hyperchains/utils.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /scripts/updateBridgeMetaTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/scripts/updateBridgeMetaTags.ts -------------------------------------------------------------------------------- /store/contacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/contacts.ts -------------------------------------------------------------------------------- /store/destinations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/destinations.ts -------------------------------------------------------------------------------- /store/ens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/ens.ts -------------------------------------------------------------------------------- /store/ethereumBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/ethereumBalance.ts -------------------------------------------------------------------------------- /store/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/network.ts -------------------------------------------------------------------------------- /store/on-ramp/on-ramp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/on-ramp/on-ramp.ts -------------------------------------------------------------------------------- /store/on-ramp/order-processing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/on-ramp/order-processing.ts -------------------------------------------------------------------------------- /store/on-ramp/quotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/on-ramp/quotes.ts -------------------------------------------------------------------------------- /store/on-ramp/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/on-ramp/routes.ts -------------------------------------------------------------------------------- /store/onboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/onboard.ts -------------------------------------------------------------------------------- /store/preferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/preferences.ts -------------------------------------------------------------------------------- /store/prividium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/prividium.ts -------------------------------------------------------------------------------- /store/zksync/ethereumBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/zksync/ethereumBalance.ts -------------------------------------------------------------------------------- /store/zksync/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/zksync/provider.ts -------------------------------------------------------------------------------- /store/zksync/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/zksync/tokens.ts -------------------------------------------------------------------------------- /store/zksync/transactionStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/zksync/transactionStatus.ts -------------------------------------------------------------------------------- /store/zksync/transfersHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/zksync/transfersHistory.ts -------------------------------------------------------------------------------- /store/zksync/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/zksync/wallet.ts -------------------------------------------------------------------------------- /store/zksync/withdrawals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/store/zksync/withdrawals.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/README.md -------------------------------------------------------------------------------- /tests/e2e/cucumber.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/cucumber.mjs -------------------------------------------------------------------------------- /tests/e2e/features/actions/mainPage/actions-menu.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/actions/mainPage/actions-menu.feature -------------------------------------------------------------------------------- /tests/e2e/features/actions/mainPage/faucet/actions-faucet.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/actions/mainPage/faucet/actions-faucet.feature -------------------------------------------------------------------------------- /tests/e2e/features/artifacts/assetsPage/artifacts-emptyWallet.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/artifacts/assetsPage/artifacts-emptyWallet.feature -------------------------------------------------------------------------------- /tests/e2e/features/artifacts/assetsPage/artifacts-richWallet.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/artifacts/assetsPage/artifacts-richWallet.feature -------------------------------------------------------------------------------- /tests/e2e/features/artifacts/bridgePage/artifacts.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/artifacts/bridgePage/artifacts.feature -------------------------------------------------------------------------------- /tests/e2e/features/artifacts/contactsPage/artifacts.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/artifacts/contactsPage/artifacts.feature -------------------------------------------------------------------------------- /tests/e2e/features/artifacts/depositPage/artifacts-deposits.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/artifacts/depositPage/artifacts-deposits.feature -------------------------------------------------------------------------------- /tests/e2e/features/artifacts/mainPage/artifacts-404.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/artifacts/mainPage/artifacts-404.feature -------------------------------------------------------------------------------- /tests/e2e/features/artifacts/mainPage/artifacts-header.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/artifacts/mainPage/artifacts-header.feature -------------------------------------------------------------------------------- /tests/e2e/features/artifacts/mainPage/artifacts-menuitems.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/artifacts/mainPage/artifacts-menuitems.feature -------------------------------------------------------------------------------- /tests/e2e/features/artifacts/mainPage/artifacts-upperNavigarionMenu.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/artifacts/mainPage/artifacts-upperNavigarionMenu.feature -------------------------------------------------------------------------------- /tests/e2e/features/artifacts/swapPage/artifacts-swap.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/artifacts/swapPage/artifacts-swap.feature -------------------------------------------------------------------------------- /tests/e2e/features/artifacts/transactionsPage/artifacts-transactions.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/artifacts/transactionsPage/artifacts-transactions.feature -------------------------------------------------------------------------------- /tests/e2e/features/artifacts/transferPage/atrifacts-transfers.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/artifacts/transferPage/atrifacts-transfers.feature -------------------------------------------------------------------------------- /tests/e2e/features/artifacts/whereToSendPage/artifacts.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/artifacts/whereToSendPage/artifacts.feature -------------------------------------------------------------------------------- /tests/e2e/features/artifacts/withdrawPage/artifacts-withdraw.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/artifacts/withdrawPage/artifacts-withdraw.feature -------------------------------------------------------------------------------- /tests/e2e/features/contacts/сontacts.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/contacts/сontacts.feature -------------------------------------------------------------------------------- /tests/e2e/features/navigation/navigation.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/navigation/navigation.feature -------------------------------------------------------------------------------- /tests/e2e/features/redirection/depositPage/redirection.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/redirection/depositPage/redirection.feature -------------------------------------------------------------------------------- /tests/e2e/features/redirection/loginPage/redirection.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/redirection/loginPage/redirection.feature -------------------------------------------------------------------------------- /tests/e2e/features/redirection/mainPage/redirection.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/redirection/mainPage/redirection.feature -------------------------------------------------------------------------------- /tests/e2e/features/transactions/deposit/bridge-deposit-with-blockchain.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/transactions/deposit/bridge-deposit-with-blockchain.feature -------------------------------------------------------------------------------- /tests/e2e/features/transactions/deposit/deposit-empty-wallet.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/transactions/deposit/deposit-empty-wallet.feature -------------------------------------------------------------------------------- /tests/e2e/features/transactions/deposit/deposit-no-blockchain.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/transactions/deposit/deposit-no-blockchain.feature -------------------------------------------------------------------------------- /tests/e2e/features/transactions/deposit/deposit-with-blockchain.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/transactions/deposit/deposit-with-blockchain.feature -------------------------------------------------------------------------------- /tests/e2e/features/transactions/deposit/deposit-with-revoke.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/transactions/deposit/deposit-with-revoke.feature -------------------------------------------------------------------------------- /tests/e2e/features/transactions/transfer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/transactions/transfer.feature -------------------------------------------------------------------------------- /tests/e2e/features/transactions/withdraw.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/features/transactions/withdraw.feature -------------------------------------------------------------------------------- /tests/e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/package.json -------------------------------------------------------------------------------- /tests/e2e/src/data/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/src/data/data.ts -------------------------------------------------------------------------------- /tests/e2e/src/helpers/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/src/helpers/helper.ts -------------------------------------------------------------------------------- /tests/e2e/src/pages/base.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/src/pages/base.page.ts -------------------------------------------------------------------------------- /tests/e2e/src/pages/contacts.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/src/pages/contacts.page.ts -------------------------------------------------------------------------------- /tests/e2e/src/pages/login.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/src/pages/login.page.ts -------------------------------------------------------------------------------- /tests/e2e/src/pages/main.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/src/pages/main.page.ts -------------------------------------------------------------------------------- /tests/e2e/src/pages/metamask.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/src/pages/metamask.page.ts -------------------------------------------------------------------------------- /tests/e2e/src/pages/revoke.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/src/pages/revoke.page.ts -------------------------------------------------------------------------------- /tests/e2e/src/steps/portal.steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/src/steps/portal.steps.ts -------------------------------------------------------------------------------- /tests/e2e/src/support/common-hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/src/support/common-hooks.ts -------------------------------------------------------------------------------- /tests/e2e/src/support/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/src/support/config.ts -------------------------------------------------------------------------------- /tests/e2e/src/support/custom-world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/src/support/custom-world.ts -------------------------------------------------------------------------------- /tests/e2e/src/support/reporters/allure-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/src/support/reporters/allure-reporter.js -------------------------------------------------------------------------------- /tests/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/utils/metamaskDownloader.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/utils/metamaskDownloader.mjs -------------------------------------------------------------------------------- /tests/e2e/utils/metamaskId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/tests/e2e/utils/metamaskId.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./.nuxt/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /types/dompurify.d.ts: -------------------------------------------------------------------------------- 1 | declare module "dompurify"; 2 | -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /utils/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/utils/analytics.ts -------------------------------------------------------------------------------- /utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/utils/constants.ts -------------------------------------------------------------------------------- /utils/doc-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/utils/doc-links.ts -------------------------------------------------------------------------------- /utils/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/utils/formatters.ts -------------------------------------------------------------------------------- /utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/utils/helpers.ts -------------------------------------------------------------------------------- /utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/utils/logger.ts -------------------------------------------------------------------------------- /utils/mappers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/utils/mappers.ts -------------------------------------------------------------------------------- /utils/sentry-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/utils/sentry-logger.ts -------------------------------------------------------------------------------- /utils/transitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/utils/transitions.ts -------------------------------------------------------------------------------- /views/on-ramp/ActiveTransactionsAlert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/on-ramp/ActiveTransactionsAlert.vue -------------------------------------------------------------------------------- /views/on-ramp/CompletedView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/on-ramp/CompletedView.vue -------------------------------------------------------------------------------- /views/on-ramp/FormView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/on-ramp/FormView.vue -------------------------------------------------------------------------------- /views/on-ramp/LoadingTransition.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/on-ramp/LoadingTransition.vue -------------------------------------------------------------------------------- /views/on-ramp/MiddlePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/on-ramp/MiddlePanel.vue -------------------------------------------------------------------------------- /views/on-ramp/ProcessStatusIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/on-ramp/ProcessStatusIcon.vue -------------------------------------------------------------------------------- /views/on-ramp/ProcessingView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/on-ramp/ProcessingView.vue -------------------------------------------------------------------------------- /views/on-ramp/QuoteFilter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/on-ramp/QuoteFilter.vue -------------------------------------------------------------------------------- /views/on-ramp/QuotePreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/on-ramp/QuotePreview.vue -------------------------------------------------------------------------------- /views/on-ramp/QuotesList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/on-ramp/QuotesList.vue -------------------------------------------------------------------------------- /views/on-ramp/SelectTokenModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/on-ramp/SelectTokenModal.vue -------------------------------------------------------------------------------- /views/on-ramp/TransactionsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/on-ramp/TransactionsView.vue -------------------------------------------------------------------------------- /views/transactions/Deposit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/transactions/Deposit.vue -------------------------------------------------------------------------------- /views/transactions/DepositSubmitted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/transactions/DepositSubmitted.vue -------------------------------------------------------------------------------- /views/transactions/Receive.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/transactions/Receive.vue -------------------------------------------------------------------------------- /views/transactions/Transfer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/transactions/Transfer.vue -------------------------------------------------------------------------------- /views/transactions/TransferSubmitted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/transactions/TransferSubmitted.vue -------------------------------------------------------------------------------- /views/transactions/WithdrawalSubmitted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matter-labs/dapp-portal/HEAD/views/transactions/WithdrawalSubmitted.vue --------------------------------------------------------------------------------