├── .env.example ├── .eslintignore ├── .eslintrc ├── .github ├── issue_template │ ├── bug_report_task.md │ └── common_task.md ├── pull_request_template.md └── workflows │ ├── check-branch.yml │ ├── pr-check.yml │ └── smoke-test.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── .yarn ├── plugins │ └── @yarnpkg │ │ └── plugin-outdated.cjs └── releases │ └── yarn-4.6.0.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── jest.config.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── celo-hero.jpg ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fonts │ ├── founders-grotesk-medium.woff2 │ ├── inter-variable.ttf │ ├── roboto-mono-v13-latin-300.woff │ ├── roboto-mono-v13-latin-300.woff2 │ ├── roboto-mono-v13-latin-500.woff │ ├── roboto-mono-v13-latin-500.woff2 │ ├── roboto-mono-v13-latin-regular.woff │ ├── roboto-mono-v13-latin-regular.woff2 │ ├── roboto-v29-latin-100.woff │ ├── roboto-v29-latin-100.woff2 │ ├── roboto-v29-latin-300.woff │ ├── roboto-v29-latin-300.woff2 │ ├── roboto-v29-latin-500.woff │ ├── roboto-v29-latin-500.woff2 │ ├── roboto-v29-latin-700.woff │ ├── roboto-v29-latin-700.woff2 │ ├── roboto-v29-latin-regular.woff │ └── roboto-v29-latin-regular.woff2 ├── glyph.png ├── logo.png ├── mstile-150x150.png ├── safari-pinned-tab.svg ├── site.webmanifest ├── tokens │ ├── CELO.svg │ ├── PUSO.svg │ ├── USDC.svg │ ├── USDT.svg │ ├── axlEUROC.svg │ ├── axlUSDC.svg │ ├── cAUD.svg │ ├── cCAD.svg │ ├── cCHF.svg │ ├── cCOP.svg │ ├── cEUR.svg │ ├── cGBP.svg │ ├── cGHS.svg │ ├── cJPY.svg │ ├── cKES.svg │ ├── cNGN.svg │ ├── cREAL.svg │ ├── cUSD.svg │ ├── cZAR.svg │ └── eXOF.svg └── wallets │ ├── celo-terminal.svg │ └── celo-wallet.svg ├── sentry.edge.config.ts ├── sentry.server.config.ts ├── setupTests.ts ├── src ├── animations │ ├── Mentoloader_blue.json │ └── Mentoloader_green.json ├── components │ ├── Chevron.tsx │ ├── Errors.tsx │ ├── Identicon.tsx │ ├── TxSuccessToast.tsx │ ├── animation │ │ ├── Fade.tsx │ │ ├── LogoSpinner.tsx │ │ ├── Spinner.module.css │ │ └── Spinner.tsx │ ├── buttons │ │ ├── 3DButton.tsx │ │ ├── BackButton.tsx │ │ ├── BorderedButton.tsx │ │ ├── IconButton.tsx │ │ ├── RefreshButton.tsx │ │ ├── SolidButton.tsx │ │ ├── SwitchButton.module.css │ │ ├── SwitchButton.tsx │ │ └── TextLink.tsx │ ├── input │ │ ├── RadioInput.module.css │ │ ├── RadioInput.tsx │ │ ├── Select.tsx │ │ └── TokenSelectField.tsx │ ├── nav │ │ ├── BalancesSummary.tsx │ │ ├── BottomGrid.tsx │ │ ├── ConnectButton.tsx │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── NavBar.tsx │ │ ├── NetworkModal.tsx │ │ ├── TopBlur.tsx │ │ ├── nav.module.css │ │ └── navLinks.ts │ └── tooltip │ │ └── Tooltip.tsx ├── config │ ├── celoWallets.tsx │ ├── chains.ts │ ├── config.ts │ ├── consts.ts │ ├── links.ts │ ├── tokens.ts │ └── wallets.ts ├── features │ ├── accounts │ │ ├── accountSlice.ts │ │ └── fetchBalances.ts │ ├── blocks │ │ ├── blockSlice.ts │ │ ├── fetchLatestBlock.ts │ │ └── types.ts │ ├── chart │ │ ├── PriceChart.module.css │ │ ├── PriceChartCelo.tsx │ │ ├── ReactFrappeChart.tsx │ │ ├── fetchPrices.ts │ │ ├── tokenPriceSlice.ts │ │ ├── types.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ ├── polling │ │ └── PollingWorker.tsx │ ├── providers.ts │ ├── sdk.ts │ ├── store │ │ ├── hooks.ts │ │ └── store.ts │ └── swap │ │ ├── SwapConfirm.tsx │ │ ├── SwapForm.tsx │ │ ├── components │ │ ├── AmountField.tsx │ │ ├── ReverseTokenButton.tsx │ │ ├── SettingsMenu.tsx │ │ ├── SlippageRow.tsx │ │ ├── SubmitButton.tsx │ │ ├── SwapFormInputs.tsx │ │ └── TokenSelectFieldWrapper.tsx │ │ ├── hooks │ │ ├── useAllowance.tsx │ │ ├── useApproveTransaction.ts │ │ ├── useFormValidator.ts │ │ ├── useSwapAllowance.ts │ │ ├── useSwapQuote.ts │ │ ├── useSwapState.ts │ │ ├── useSwapTransaction.ts │ │ ├── useTokenBalance.ts │ │ └── useTokenOptions.ts │ │ ├── swapSlice.ts │ │ ├── types.ts │ │ ├── utils.test.ts │ │ └── utils.ts ├── global.d.ts ├── images │ ├── background │ │ ├── background_blur.svg │ │ ├── background_blur_dark.svg │ │ ├── background_tiles_dark.png │ │ └── background_tiles_light.png │ ├── icons │ │ ├── arrow-down-circle-fill.svg │ │ ├── arrow-down-short.svg │ │ ├── arrow-left-circle.svg │ │ ├── arrow-repeat.svg │ │ ├── arrow-right-circle.svg │ │ ├── arrow-right-short.svg │ │ ├── chevron-down.svg │ │ ├── clipboard-plus-dark.svg │ │ ├── clipboard-plus.svg │ │ ├── copy-stack.svg │ │ ├── cube-dark.svg │ │ ├── cube.svg │ │ ├── gear.svg │ │ ├── gear_new.svg │ │ ├── gear_new_white.svg │ │ ├── hamburger.svg │ │ ├── info-circle.svg │ │ ├── logout-dark.svg │ │ ├── logout.svg │ │ ├── moon.svg │ │ ├── not_found.svg │ │ ├── plus-circle-fill.svg │ │ ├── plus.svg │ │ ├── sad_face.svg │ │ ├── sliders.svg │ │ ├── sun.svg │ │ ├── wallet-dark.svg │ │ ├── wallet.svg │ │ ├── x-circle.svg │ │ └── x.svg │ ├── logos │ │ ├── celo_rings_black.svg │ │ ├── discord.svg │ │ ├── github.svg │ │ ├── mento-glyph-black.svg │ │ ├── mento-glyph-green.png │ │ ├── mento-glyph-green.svg │ │ ├── mento-logo-black.png │ │ ├── mento-logo-black.svg │ │ ├── mento-logo-green.png │ │ ├── mento-logo-green.svg │ │ ├── mento-logo-old.svg │ │ ├── mento_logo_rebrand_black.svg │ │ ├── mento_logo_rebrand_white.svg │ │ ├── twitter.svg │ │ └── youtube.svg │ └── tokens │ │ └── TokenIcon.tsx ├── index.d.ts ├── instrumentation-client.ts ├── instrumentation.ts ├── layout │ ├── AppLayout.tsx │ ├── Dropdown.tsx │ ├── FloatingBox.tsx │ ├── HeadMeta.tsx │ ├── HrDivider.tsx │ └── Modal.tsx ├── middleware.ts ├── pages │ ├── 404.tsx │ ├── 500.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── _error.tsx │ ├── about.tsx │ └── index.tsx ├── styles │ ├── Color.ts │ ├── fonts.css │ ├── globals.css │ └── mediaQueries.ts ├── test │ └── time.ts ├── utils │ ├── addresses.ts │ ├── amount.ts │ ├── blockscout.ts │ ├── clipboard.ts │ ├── debounce.ts │ ├── logger.ts │ ├── retry.ts │ ├── ssr.ts │ ├── string.ts │ ├── time.ts │ └── timeout.ts └── vendor │ └── inpage-metamask.js ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.test.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/issue_template/bug_report_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.github/issue_template/bug_report_task.md -------------------------------------------------------------------------------- /.github/issue_template/common_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.github/issue_template/common_task.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/check-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.github/workflows/check-branch.yml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.github/workflows/pr-check.yml -------------------------------------------------------------------------------- /.github/workflows/smoke-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.github/workflows/smoke-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-outdated.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.yarn/plugins/@yarnpkg/plugin-outdated.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.6.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.yarn/releases/yarn-4.6.0.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/jest.config.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/celo-hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/celo-hero.jpg -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/founders-grotesk-medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/founders-grotesk-medium.woff2 -------------------------------------------------------------------------------- /public/fonts/inter-variable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/inter-variable.ttf -------------------------------------------------------------------------------- /public/fonts/roboto-mono-v13-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-mono-v13-latin-300.woff -------------------------------------------------------------------------------- /public/fonts/roboto-mono-v13-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-mono-v13-latin-300.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-mono-v13-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-mono-v13-latin-500.woff -------------------------------------------------------------------------------- /public/fonts/roboto-mono-v13-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-mono-v13-latin-500.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-mono-v13-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-mono-v13-latin-regular.woff -------------------------------------------------------------------------------- /public/fonts/roboto-mono-v13-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-mono-v13-latin-regular.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v29-latin-100.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-v29-latin-100.woff -------------------------------------------------------------------------------- /public/fonts/roboto-v29-latin-100.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-v29-latin-100.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v29-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-v29-latin-300.woff -------------------------------------------------------------------------------- /public/fonts/roboto-v29-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-v29-latin-300.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v29-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-v29-latin-500.woff -------------------------------------------------------------------------------- /public/fonts/roboto-v29-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-v29-latin-500.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v29-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-v29-latin-700.woff -------------------------------------------------------------------------------- /public/fonts/roboto-v29-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-v29-latin-700.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto-v29-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-v29-latin-regular.woff -------------------------------------------------------------------------------- /public/fonts/roboto-v29-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/fonts/roboto-v29-latin-regular.woff2 -------------------------------------------------------------------------------- /public/glyph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/glyph.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/tokens/CELO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/CELO.svg -------------------------------------------------------------------------------- /public/tokens/PUSO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/PUSO.svg -------------------------------------------------------------------------------- /public/tokens/USDC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/USDC.svg -------------------------------------------------------------------------------- /public/tokens/USDT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/USDT.svg -------------------------------------------------------------------------------- /public/tokens/axlEUROC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/axlEUROC.svg -------------------------------------------------------------------------------- /public/tokens/axlUSDC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/axlUSDC.svg -------------------------------------------------------------------------------- /public/tokens/cAUD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/cAUD.svg -------------------------------------------------------------------------------- /public/tokens/cCAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/cCAD.svg -------------------------------------------------------------------------------- /public/tokens/cCHF.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/cCHF.svg -------------------------------------------------------------------------------- /public/tokens/cCOP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/cCOP.svg -------------------------------------------------------------------------------- /public/tokens/cEUR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/cEUR.svg -------------------------------------------------------------------------------- /public/tokens/cGBP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/cGBP.svg -------------------------------------------------------------------------------- /public/tokens/cGHS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/cGHS.svg -------------------------------------------------------------------------------- /public/tokens/cJPY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/cJPY.svg -------------------------------------------------------------------------------- /public/tokens/cKES.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/cKES.svg -------------------------------------------------------------------------------- /public/tokens/cNGN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/cNGN.svg -------------------------------------------------------------------------------- /public/tokens/cREAL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/cREAL.svg -------------------------------------------------------------------------------- /public/tokens/cUSD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/cUSD.svg -------------------------------------------------------------------------------- /public/tokens/cZAR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/cZAR.svg -------------------------------------------------------------------------------- /public/tokens/eXOF.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/tokens/eXOF.svg -------------------------------------------------------------------------------- /public/wallets/celo-terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/wallets/celo-terminal.svg -------------------------------------------------------------------------------- /public/wallets/celo-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/public/wallets/celo-wallet.svg -------------------------------------------------------------------------------- /sentry.edge.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/sentry.edge.config.ts -------------------------------------------------------------------------------- /sentry.server.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/sentry.server.config.ts -------------------------------------------------------------------------------- /setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/setupTests.ts -------------------------------------------------------------------------------- /src/animations/Mentoloader_blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/animations/Mentoloader_blue.json -------------------------------------------------------------------------------- /src/animations/Mentoloader_green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/animations/Mentoloader_green.json -------------------------------------------------------------------------------- /src/components/Chevron.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/Chevron.tsx -------------------------------------------------------------------------------- /src/components/Errors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/Errors.tsx -------------------------------------------------------------------------------- /src/components/Identicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/Identicon.tsx -------------------------------------------------------------------------------- /src/components/TxSuccessToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/TxSuccessToast.tsx -------------------------------------------------------------------------------- /src/components/animation/Fade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/animation/Fade.tsx -------------------------------------------------------------------------------- /src/components/animation/LogoSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/animation/LogoSpinner.tsx -------------------------------------------------------------------------------- /src/components/animation/Spinner.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/animation/Spinner.module.css -------------------------------------------------------------------------------- /src/components/animation/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/animation/Spinner.tsx -------------------------------------------------------------------------------- /src/components/buttons/3DButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/buttons/3DButton.tsx -------------------------------------------------------------------------------- /src/components/buttons/BackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/buttons/BackButton.tsx -------------------------------------------------------------------------------- /src/components/buttons/BorderedButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/buttons/BorderedButton.tsx -------------------------------------------------------------------------------- /src/components/buttons/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/buttons/IconButton.tsx -------------------------------------------------------------------------------- /src/components/buttons/RefreshButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/buttons/RefreshButton.tsx -------------------------------------------------------------------------------- /src/components/buttons/SolidButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/buttons/SolidButton.tsx -------------------------------------------------------------------------------- /src/components/buttons/SwitchButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/buttons/SwitchButton.module.css -------------------------------------------------------------------------------- /src/components/buttons/SwitchButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/buttons/SwitchButton.tsx -------------------------------------------------------------------------------- /src/components/buttons/TextLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/buttons/TextLink.tsx -------------------------------------------------------------------------------- /src/components/input/RadioInput.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/input/RadioInput.module.css -------------------------------------------------------------------------------- /src/components/input/RadioInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/input/RadioInput.tsx -------------------------------------------------------------------------------- /src/components/input/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/input/Select.tsx -------------------------------------------------------------------------------- /src/components/input/TokenSelectField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/input/TokenSelectField.tsx -------------------------------------------------------------------------------- /src/components/nav/BalancesSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/nav/BalancesSummary.tsx -------------------------------------------------------------------------------- /src/components/nav/BottomGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/nav/BottomGrid.tsx -------------------------------------------------------------------------------- /src/components/nav/ConnectButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/nav/ConnectButton.tsx -------------------------------------------------------------------------------- /src/components/nav/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/nav/Footer.tsx -------------------------------------------------------------------------------- /src/components/nav/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/nav/Header.tsx -------------------------------------------------------------------------------- /src/components/nav/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/nav/NavBar.tsx -------------------------------------------------------------------------------- /src/components/nav/NetworkModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/nav/NetworkModal.tsx -------------------------------------------------------------------------------- /src/components/nav/TopBlur.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/nav/TopBlur.tsx -------------------------------------------------------------------------------- /src/components/nav/nav.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/nav/navLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/nav/navLinks.ts -------------------------------------------------------------------------------- /src/components/tooltip/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/components/tooltip/Tooltip.tsx -------------------------------------------------------------------------------- /src/config/celoWallets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/config/celoWallets.tsx -------------------------------------------------------------------------------- /src/config/chains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/config/chains.ts -------------------------------------------------------------------------------- /src/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/config/config.ts -------------------------------------------------------------------------------- /src/config/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/config/consts.ts -------------------------------------------------------------------------------- /src/config/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/config/links.ts -------------------------------------------------------------------------------- /src/config/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/config/tokens.ts -------------------------------------------------------------------------------- /src/config/wallets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/config/wallets.ts -------------------------------------------------------------------------------- /src/features/accounts/accountSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/accounts/accountSlice.ts -------------------------------------------------------------------------------- /src/features/accounts/fetchBalances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/accounts/fetchBalances.ts -------------------------------------------------------------------------------- /src/features/blocks/blockSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/blocks/blockSlice.ts -------------------------------------------------------------------------------- /src/features/blocks/fetchLatestBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/blocks/fetchLatestBlock.ts -------------------------------------------------------------------------------- /src/features/blocks/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/blocks/types.ts -------------------------------------------------------------------------------- /src/features/chart/PriceChart.module.css: -------------------------------------------------------------------------------- 1 | .priceChartContainer * { 2 | font-family: 'Roboto', 'sans-serif'; 3 | } 4 | -------------------------------------------------------------------------------- /src/features/chart/PriceChartCelo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/chart/PriceChartCelo.tsx -------------------------------------------------------------------------------- /src/features/chart/ReactFrappeChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/chart/ReactFrappeChart.tsx -------------------------------------------------------------------------------- /src/features/chart/fetchPrices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/chart/fetchPrices.ts -------------------------------------------------------------------------------- /src/features/chart/tokenPriceSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/chart/tokenPriceSlice.ts -------------------------------------------------------------------------------- /src/features/chart/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/chart/types.ts -------------------------------------------------------------------------------- /src/features/chart/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/chart/utils.test.ts -------------------------------------------------------------------------------- /src/features/chart/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/chart/utils.ts -------------------------------------------------------------------------------- /src/features/polling/PollingWorker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/polling/PollingWorker.tsx -------------------------------------------------------------------------------- /src/features/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/providers.ts -------------------------------------------------------------------------------- /src/features/sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/sdk.ts -------------------------------------------------------------------------------- /src/features/store/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/store/hooks.ts -------------------------------------------------------------------------------- /src/features/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/store/store.ts -------------------------------------------------------------------------------- /src/features/swap/SwapConfirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/SwapConfirm.tsx -------------------------------------------------------------------------------- /src/features/swap/SwapForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/SwapForm.tsx -------------------------------------------------------------------------------- /src/features/swap/components/AmountField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/components/AmountField.tsx -------------------------------------------------------------------------------- /src/features/swap/components/ReverseTokenButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/components/ReverseTokenButton.tsx -------------------------------------------------------------------------------- /src/features/swap/components/SettingsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/components/SettingsMenu.tsx -------------------------------------------------------------------------------- /src/features/swap/components/SlippageRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/components/SlippageRow.tsx -------------------------------------------------------------------------------- /src/features/swap/components/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/components/SubmitButton.tsx -------------------------------------------------------------------------------- /src/features/swap/components/SwapFormInputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/components/SwapFormInputs.tsx -------------------------------------------------------------------------------- /src/features/swap/components/TokenSelectFieldWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/components/TokenSelectFieldWrapper.tsx -------------------------------------------------------------------------------- /src/features/swap/hooks/useAllowance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/hooks/useAllowance.tsx -------------------------------------------------------------------------------- /src/features/swap/hooks/useApproveTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/hooks/useApproveTransaction.ts -------------------------------------------------------------------------------- /src/features/swap/hooks/useFormValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/hooks/useFormValidator.ts -------------------------------------------------------------------------------- /src/features/swap/hooks/useSwapAllowance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/hooks/useSwapAllowance.ts -------------------------------------------------------------------------------- /src/features/swap/hooks/useSwapQuote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/hooks/useSwapQuote.ts -------------------------------------------------------------------------------- /src/features/swap/hooks/useSwapState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/hooks/useSwapState.ts -------------------------------------------------------------------------------- /src/features/swap/hooks/useSwapTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/hooks/useSwapTransaction.ts -------------------------------------------------------------------------------- /src/features/swap/hooks/useTokenBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/hooks/useTokenBalance.ts -------------------------------------------------------------------------------- /src/features/swap/hooks/useTokenOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/hooks/useTokenOptions.ts -------------------------------------------------------------------------------- /src/features/swap/swapSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/swapSlice.ts -------------------------------------------------------------------------------- /src/features/swap/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/types.ts -------------------------------------------------------------------------------- /src/features/swap/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/utils.test.ts -------------------------------------------------------------------------------- /src/features/swap/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/features/swap/utils.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare type Address = string 2 | -------------------------------------------------------------------------------- /src/images/background/background_blur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/background/background_blur.svg -------------------------------------------------------------------------------- /src/images/background/background_blur_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/background/background_blur_dark.svg -------------------------------------------------------------------------------- /src/images/background/background_tiles_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/background/background_tiles_dark.png -------------------------------------------------------------------------------- /src/images/background/background_tiles_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/background/background_tiles_light.png -------------------------------------------------------------------------------- /src/images/icons/arrow-down-circle-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/arrow-down-circle-fill.svg -------------------------------------------------------------------------------- /src/images/icons/arrow-down-short.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/arrow-down-short.svg -------------------------------------------------------------------------------- /src/images/icons/arrow-left-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/arrow-left-circle.svg -------------------------------------------------------------------------------- /src/images/icons/arrow-repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/arrow-repeat.svg -------------------------------------------------------------------------------- /src/images/icons/arrow-right-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/arrow-right-circle.svg -------------------------------------------------------------------------------- /src/images/icons/arrow-right-short.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/arrow-right-short.svg -------------------------------------------------------------------------------- /src/images/icons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/chevron-down.svg -------------------------------------------------------------------------------- /src/images/icons/clipboard-plus-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/clipboard-plus-dark.svg -------------------------------------------------------------------------------- /src/images/icons/clipboard-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/clipboard-plus.svg -------------------------------------------------------------------------------- /src/images/icons/copy-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/copy-stack.svg -------------------------------------------------------------------------------- /src/images/icons/cube-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/cube-dark.svg -------------------------------------------------------------------------------- /src/images/icons/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/cube.svg -------------------------------------------------------------------------------- /src/images/icons/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/gear.svg -------------------------------------------------------------------------------- /src/images/icons/gear_new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/gear_new.svg -------------------------------------------------------------------------------- /src/images/icons/gear_new_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/gear_new_white.svg -------------------------------------------------------------------------------- /src/images/icons/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/hamburger.svg -------------------------------------------------------------------------------- /src/images/icons/info-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/info-circle.svg -------------------------------------------------------------------------------- /src/images/icons/logout-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/logout-dark.svg -------------------------------------------------------------------------------- /src/images/icons/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/logout.svg -------------------------------------------------------------------------------- /src/images/icons/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/moon.svg -------------------------------------------------------------------------------- /src/images/icons/not_found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/not_found.svg -------------------------------------------------------------------------------- /src/images/icons/plus-circle-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/plus-circle-fill.svg -------------------------------------------------------------------------------- /src/images/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/plus.svg -------------------------------------------------------------------------------- /src/images/icons/sad_face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/sad_face.svg -------------------------------------------------------------------------------- /src/images/icons/sliders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/sliders.svg -------------------------------------------------------------------------------- /src/images/icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/sun.svg -------------------------------------------------------------------------------- /src/images/icons/wallet-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/wallet-dark.svg -------------------------------------------------------------------------------- /src/images/icons/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/wallet.svg -------------------------------------------------------------------------------- /src/images/icons/x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/x-circle.svg -------------------------------------------------------------------------------- /src/images/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/icons/x.svg -------------------------------------------------------------------------------- /src/images/logos/celo_rings_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/celo_rings_black.svg -------------------------------------------------------------------------------- /src/images/logos/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/discord.svg -------------------------------------------------------------------------------- /src/images/logos/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/github.svg -------------------------------------------------------------------------------- /src/images/logos/mento-glyph-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/mento-glyph-black.svg -------------------------------------------------------------------------------- /src/images/logos/mento-glyph-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/mento-glyph-green.png -------------------------------------------------------------------------------- /src/images/logos/mento-glyph-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/mento-glyph-green.svg -------------------------------------------------------------------------------- /src/images/logos/mento-logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/mento-logo-black.png -------------------------------------------------------------------------------- /src/images/logos/mento-logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/mento-logo-black.svg -------------------------------------------------------------------------------- /src/images/logos/mento-logo-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/mento-logo-green.png -------------------------------------------------------------------------------- /src/images/logos/mento-logo-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/mento-logo-green.svg -------------------------------------------------------------------------------- /src/images/logos/mento-logo-old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/mento-logo-old.svg -------------------------------------------------------------------------------- /src/images/logos/mento_logo_rebrand_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/mento_logo_rebrand_black.svg -------------------------------------------------------------------------------- /src/images/logos/mento_logo_rebrand_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/mento_logo_rebrand_white.svg -------------------------------------------------------------------------------- /src/images/logos/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/twitter.svg -------------------------------------------------------------------------------- /src/images/logos/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/logos/youtube.svg -------------------------------------------------------------------------------- /src/images/tokens/TokenIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/images/tokens/TokenIcon.tsx -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/instrumentation-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/instrumentation-client.ts -------------------------------------------------------------------------------- /src/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/instrumentation.ts -------------------------------------------------------------------------------- /src/layout/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/layout/AppLayout.tsx -------------------------------------------------------------------------------- /src/layout/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/layout/Dropdown.tsx -------------------------------------------------------------------------------- /src/layout/FloatingBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/layout/FloatingBox.tsx -------------------------------------------------------------------------------- /src/layout/HeadMeta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/layout/HeadMeta.tsx -------------------------------------------------------------------------------- /src/layout/HrDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/layout/HrDivider.tsx -------------------------------------------------------------------------------- /src/layout/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/layout/Modal.tsx -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/500.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/pages/500.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/pages/_error.tsx -------------------------------------------------------------------------------- /src/pages/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/pages/about.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/Color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/styles/Color.ts -------------------------------------------------------------------------------- /src/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/styles/fonts.css -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/styles/mediaQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/styles/mediaQueries.ts -------------------------------------------------------------------------------- /src/test/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/test/time.ts -------------------------------------------------------------------------------- /src/utils/addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/utils/addresses.ts -------------------------------------------------------------------------------- /src/utils/amount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/utils/amount.ts -------------------------------------------------------------------------------- /src/utils/blockscout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/utils/blockscout.ts -------------------------------------------------------------------------------- /src/utils/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/utils/clipboard.ts -------------------------------------------------------------------------------- /src/utils/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/utils/debounce.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /src/utils/retry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/utils/retry.ts -------------------------------------------------------------------------------- /src/utils/ssr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/utils/ssr.ts -------------------------------------------------------------------------------- /src/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/utils/string.ts -------------------------------------------------------------------------------- /src/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/utils/time.ts -------------------------------------------------------------------------------- /src/utils/timeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/utils/timeout.ts -------------------------------------------------------------------------------- /src/vendor/inpage-metamask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/src/vendor/inpage-metamask.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mento-protocol/mento-web/HEAD/yarn.lock --------------------------------------------------------------------------------