├── .env.example ├── .eslintrc.cjs ├── .gitignore ├── .husky ├── pre-commit └── pre-push ├── .nvmrc ├── .swcrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── index.html ├── jest.config.cjs ├── jest ├── CSSStub.ts ├── setupTests.ts └── svgTransformer.ts ├── package.json ├── public ├── css │ ├── hirocoool.webflow.css │ ├── normalize.css │ └── webflow.css ├── favicon.png ├── favicon.png:Zone.Identifier ├── favicon.svg ├── fonts │ ├── Bueno-Black.ttf │ ├── Bueno-Bold.ttf │ ├── Bueno-Light.otf │ ├── Bueno-Light.ttf │ ├── Bueno-Medium.otf │ ├── Bueno-Regular.otf │ ├── TWKEverett-Bold.otf │ ├── TWKEverett-Extrabold-web.ttf │ ├── TWKEverett-Light.otf │ ├── TWKEverett-LightItalic.otf │ ├── TWKEverett-Medium.otf │ ├── TWKEverett-Regular.otf │ ├── TWKEverett-Super.otf │ ├── TWKEverett-Thin.otf │ └── TWKEverett-UltralightItalic.otf ├── images │ ├── 2D-Shape-p-500.png │ ├── 2D-Shape.png │ ├── Abraham-Cobos-p-500.jpeg │ ├── Abraham-Cobos-p-800.jpeg │ ├── Abraham-Cobos.jpeg │ ├── BITCOIN-WRAPPED.png │ ├── Background-p-1080.png │ ├── Background-p-500.png │ ├── Background-p-800.png │ ├── Background.png │ ├── Base-p-1080.jpeg │ ├── Base-p-500.jpeg │ ├── Base-p-800.jpeg │ ├── Base.jpeg │ ├── CheckGreen.svg │ ├── Eduardo-Rios-p-500.jpeg │ ├── Eduardo-Rios.jpeg │ ├── Ellipse-2069.png │ ├── Ellipse-2070.png │ ├── Ellipse-2071.png │ ├── Hiro-logo.png │ ├── Imagen-deposito-p-500.png │ ├── Imagen-deposito.png │ ├── Luis-Gabriel.jpeg │ ├── Model-Cone.png │ ├── Model-Sphere.png │ ├── Model-Tank.png │ ├── OG.png │ ├── Portafolio-p-1080.png │ ├── Portafolio-p-500.png │ ├── Portafolio-p-800.png │ ├── Portafolio.png │ ├── Safe-p-1080.png │ ├── Safe-p-1600.png │ ├── Safe-p-500.png │ ├── Safe-p-800.png │ ├── Safe.png │ ├── T04Q2NUKE93-U054FKGVAM6-2478d51583e0-512-p-500.png │ ├── T04Q2NUKE93-U054FKGVAM6-2478d51583e0-512.png │ ├── USDM.png │ ├── Vector-1.png │ ├── Vector-10.png │ ├── Vector-2.png │ ├── Vector.png │ ├── Vector_1.png │ ├── WhatsApp-Image-2023-08-28-at-19.51.31-p-1080.jpeg │ ├── WhatsApp-Image-2023-08-28-at-19.51.31-p-500.jpeg │ ├── WhatsApp-Image-2023-08-28-at-19.51.31-p-800.jpeg │ ├── WhatsApp-Image-2023-08-28-at-19.51.31.jpeg │ ├── bandoSwap.png │ ├── bando_full_green.png │ ├── bgKyc.png │ ├── bgKyc2.png │ ├── ezgif-2-8ea0987634.gif │ ├── favicon.png │ ├── gorduki-nounish-512-p-500.png │ ├── gorduki-nounish-512.png │ ├── image-58.png │ ├── image-58_1.png │ ├── image-60.png │ ├── image-60_1.png │ ├── image-61.png │ ├── image-61_1.png │ ├── image-62.png │ ├── ramp.gif │ ├── shiba.webp │ ├── steth-steth-logo.png │ └── webclip.png └── js │ └── webflow.js ├── src ├── assets │ ├── ArrowDown.svg │ ├── CaretDown.svg │ ├── CaretGreen.svg │ ├── CaretWhite.svg │ ├── CheckGreen.svg │ ├── CopyToClipboard.svg │ ├── Cross.svg │ ├── Mexico-01.svg │ ├── Mexico.svg │ ├── TokenPlaceholder.svg │ ├── TokenPlaceholderGray.svg │ ├── TokenPlaceholderGray.svg:Zone.Identifier │ ├── TransactionArrow.svg │ ├── UpDownArrow.svg │ ├── arbitrum.svg │ ├── bg-drawer.png │ ├── chains │ │ ├── arbitrum.png │ │ ├── bnb.png │ │ ├── brett.png │ │ ├── celo.png │ │ ├── ceur.png │ │ ├── cusd.png │ │ ├── degen.png │ │ ├── eth.png │ │ ├── maga.png │ │ ├── matic.png │ │ ├── mpeth.png │ │ ├── optimism.png │ │ ├── usdb.png │ │ ├── usdc.png │ │ ├── usdt.png │ │ └── weth.png │ ├── currency.svg │ ├── hielocos.png │ ├── image-58_1.png │ ├── ine_ref.png │ ├── killb-logo.svg │ ├── kycBg.svg │ ├── logo-bando.svg │ ├── logo.svg │ ├── logo_white.svg │ ├── networks │ │ ├── arbitrum.png │ │ ├── base.png │ │ ├── binance-smart-chain.png │ │ ├── binance-smart-chain.svg │ │ ├── blast.png │ │ ├── celo.png │ │ ├── ethereum.png │ │ ├── optimism.png │ │ ├── polygon.png │ │ ├── scroll.png │ │ └── solana.svg │ ├── telegram.svg │ ├── transactions.svg │ └── usdt.svg ├── components │ ├── Alert │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── BoxContainer │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── Button │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── CurrencyImg │ │ └── index.tsx │ ├── DialogDrawer │ │ └── index.tsx │ ├── Footer │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── Hr │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── I18nSwitcher │ │ └── index.tsx │ ├── Jumbotron │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── KycBulletPoints │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── LimitUsage │ │ └── index.tsx │ ├── MarkDownContainer │ │ └── index.tsx │ ├── Navbar │ │ ├── DrawerLink.tsx │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── PageTitle │ │ └── index.tsx │ ├── ProgressBar │ │ └── index.tsx │ ├── RampDirectionTabs │ │ └── index.tsx │ ├── SimpleFooter │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── SiteSpinner │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── StatusBadge │ │ └── index.tsx │ ├── StatusCircle │ │ └── index.tsx │ ├── Svgs │ │ ├── ArrowCircle.tsx │ │ └── Logout.tsx │ ├── TokensWidget │ │ ├── NetworkTiles.tsx │ │ ├── TokensList.tsx │ │ ├── alerts.tsx │ │ ├── components.tsx │ │ ├── helpers.ts │ │ └── index.tsx │ ├── TransactionDetails │ │ ├── RateText.tsx │ │ ├── TransactionCopyText.tsx │ │ ├── index.tsx │ │ └── mapProviderStatus.ts │ ├── TransactionsTable │ │ ├── CellDetailWithIcon.tsx │ │ ├── TableComponents.tsx │ │ ├── TransactionRow.tsx │ │ └── index.tsx │ ├── UserCard │ │ └── index.tsx │ ├── UserMenu │ │ └── index.tsx │ └── forms │ │ ├── ErrorBox │ │ ├── index.test.tsx │ │ └── index.tsx │ │ ├── GetQuoteForm │ │ ├── index.test.tsx │ │ ├── index.tsx │ │ ├── schema.ts │ │ └── v2 │ │ │ └── index.tsx │ │ ├── Input │ │ ├── index.test.tsx │ │ └── index.tsx │ │ ├── KycForm │ │ ├── index.tsx │ │ └── schema.ts │ │ ├── MuiInput │ │ ├── MuiPhoneInput.tsx │ │ ├── index.test.tsx │ │ ├── index.tsx │ │ └── styles.ts │ │ ├── MuiSelect │ │ ├── index.test.tsx │ │ └── index.tsx │ │ ├── OnboardingForm │ │ └── index.tsx │ │ ├── PlacesAutocomplete │ │ └── index.tsx │ │ ├── RampForm │ │ ├── CurrencyPill.tsx │ │ ├── RampTitle.tsx │ │ ├── index.test.tsx │ │ ├── index.tsx │ │ └── schema.ts │ │ └── Select │ │ ├── index.test.tsx │ │ └── index.tsx ├── config │ ├── axios.ts │ ├── constants │ │ ├── chains.ts │ │ ├── countries.ts │ │ ├── currencies.test.tsx │ │ ├── currencies.tsx │ │ ├── identification.ts │ │ ├── links.ts │ │ └── networks.ts │ ├── endpoints.ts │ ├── env.test.ts │ ├── env.ts │ ├── firebase │ │ ├── index.ts │ │ ├── remoteConfig.test.ts │ │ └── remoteConfig.ts │ ├── sentry.ts │ ├── tapfiliate.ts │ └── theme.ts ├── global.d.ts ├── helpers │ ├── TestProvider.tsx │ ├── formatNumber.ts │ ├── formatWalletNumber.ts │ ├── getStorageQuote.ts │ ├── getUserLanguage.ts │ ├── input.test.ts │ ├── inputs.ts │ ├── phoneValidation.ts │ ├── regexValidators.ts │ └── validateSolanaAddress.ts ├── hooks │ ├── useAuthCookie │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── useKyc │ │ ├── index.test.tsx │ │ ├── index.tsx │ │ └── requests.ts │ ├── useMagic │ │ └── index.ts │ ├── useMagicLinkAuth │ │ ├── MagicProvider.tsx │ │ ├── index.tsx │ │ └── requests.ts │ ├── useNetworks │ │ ├── index.test.tsx │ │ ├── index.tsx │ │ ├── mock.ts │ │ └── requests.ts │ ├── useQuote │ │ ├── index.test.tsx │ │ ├── index.tsx │ │ └── requests.ts │ ├── useRecipient │ │ ├── index.test.tsx │ │ ├── index.ts │ │ └── requests.ts │ ├── useRemoteConfig │ │ ├── RemoteConfigProvider.test.tsx │ │ ├── RemoteConfigProvider.tsx │ │ └── index.ts │ ├── useTokens │ │ ├── index.test.tsx │ │ ├── index.ts │ │ ├── mock.ts │ │ └── requests.ts │ ├── useTransaction │ │ ├── index.test.tsx │ │ ├── index.ts │ │ └── requests.ts │ ├── useTransactions │ │ ├── index.test.tsx │ │ ├── index.ts │ │ └── requests.ts │ └── useUser │ │ ├── IntercomProvider.tsx │ │ ├── MagicUserProvider.tsx │ │ ├── index.tsx │ │ ├── requests.ts │ │ └── types.ts ├── index.css ├── layouts │ ├── CleanLayout │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── ColumnLayout │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── EmptyLayout │ │ ├── index.test.tsx │ │ └── index.tsx │ └── LandingLayout │ │ ├── index.test.tsx │ │ └── index.tsx ├── main.tsx ├── mui.d.ts ├── pages │ ├── FAQ │ │ └── index.tsx │ ├── Kyc │ │ └── index.tsx │ ├── Landing │ │ └── index.tsx │ ├── PrivacyNotice │ │ └── index.tsx │ ├── ProtectedRamp │ │ └── index.tsx │ ├── Ramp │ │ └── index.tsx │ ├── SignIn │ │ ├── index.tsx │ │ └── schema.ts │ ├── Signup │ │ └── index.tsx │ ├── Terms │ │ └── index.tsx │ └── Transactions │ │ ├── Detail │ │ └── index.tsx │ │ ├── History │ │ └── index.tsx │ │ └── KycDetail │ │ └── index.tsx ├── routes │ ├── ExposedWrapper.tsx │ ├── OnlyGuestWrapper.tsx │ ├── ProtectedWrapper.tsx │ └── index.tsx ├── tapfiliate.d.ts ├── translations │ ├── en │ │ ├── faq.ts │ │ ├── footer.ts │ │ ├── form.ts │ │ ├── index.ts │ │ ├── kycPoints.ts │ │ ├── landing.ts │ │ ├── quote.ts │ │ ├── ramp.ts │ │ ├── transactionDetail.ts │ │ ├── transactions.ts │ │ └── userMenu.ts │ ├── es │ │ ├── faq.ts │ │ ├── footer.ts │ │ ├── form.ts │ │ ├── index.ts │ │ ├── kycPoints.ts │ │ ├── landing.ts │ │ ├── quote.ts │ │ ├── ramp.ts │ │ ├── transactionDetail.ts │ │ ├── transactions.ts │ │ └── userMenu.ts │ ├── index.test.tsx │ └── index.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json ├── vite.config.ts └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | yarn lint 5 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | yarn test-ci 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.12.2 2 | -------------------------------------------------------------------------------- /.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/.swcrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/SECURITY.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/jest.config.cjs -------------------------------------------------------------------------------- /jest/CSSStub.ts: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /jest/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/jest/setupTests.ts -------------------------------------------------------------------------------- /jest/svgTransformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/jest/svgTransformer.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/package.json -------------------------------------------------------------------------------- /public/css/hirocoool.webflow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/css/hirocoool.webflow.css -------------------------------------------------------------------------------- /public/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/css/normalize.css -------------------------------------------------------------------------------- /public/css/webflow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/css/webflow.css -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/favicon.png:Zone.Identifier: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/fonts/Bueno-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/Bueno-Black.ttf -------------------------------------------------------------------------------- /public/fonts/Bueno-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/Bueno-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/Bueno-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/Bueno-Light.otf -------------------------------------------------------------------------------- /public/fonts/Bueno-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/Bueno-Light.ttf -------------------------------------------------------------------------------- /public/fonts/Bueno-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/Bueno-Medium.otf -------------------------------------------------------------------------------- /public/fonts/Bueno-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/Bueno-Regular.otf -------------------------------------------------------------------------------- /public/fonts/TWKEverett-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/TWKEverett-Bold.otf -------------------------------------------------------------------------------- /public/fonts/TWKEverett-Extrabold-web.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/TWKEverett-Extrabold-web.ttf -------------------------------------------------------------------------------- /public/fonts/TWKEverett-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/TWKEverett-Light.otf -------------------------------------------------------------------------------- /public/fonts/TWKEverett-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/TWKEverett-LightItalic.otf -------------------------------------------------------------------------------- /public/fonts/TWKEverett-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/TWKEverett-Medium.otf -------------------------------------------------------------------------------- /public/fonts/TWKEverett-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/TWKEverett-Regular.otf -------------------------------------------------------------------------------- /public/fonts/TWKEverett-Super.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/TWKEverett-Super.otf -------------------------------------------------------------------------------- /public/fonts/TWKEverett-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/TWKEverett-Thin.otf -------------------------------------------------------------------------------- /public/fonts/TWKEverett-UltralightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/fonts/TWKEverett-UltralightItalic.otf -------------------------------------------------------------------------------- /public/images/2D-Shape-p-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/2D-Shape-p-500.png -------------------------------------------------------------------------------- /public/images/2D-Shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/2D-Shape.png -------------------------------------------------------------------------------- /public/images/Abraham-Cobos-p-500.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Abraham-Cobos-p-500.jpeg -------------------------------------------------------------------------------- /public/images/Abraham-Cobos-p-800.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Abraham-Cobos-p-800.jpeg -------------------------------------------------------------------------------- /public/images/Abraham-Cobos.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Abraham-Cobos.jpeg -------------------------------------------------------------------------------- /public/images/BITCOIN-WRAPPED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/BITCOIN-WRAPPED.png -------------------------------------------------------------------------------- /public/images/Background-p-1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Background-p-1080.png -------------------------------------------------------------------------------- /public/images/Background-p-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Background-p-500.png -------------------------------------------------------------------------------- /public/images/Background-p-800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Background-p-800.png -------------------------------------------------------------------------------- /public/images/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Background.png -------------------------------------------------------------------------------- /public/images/Base-p-1080.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Base-p-1080.jpeg -------------------------------------------------------------------------------- /public/images/Base-p-500.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Base-p-500.jpeg -------------------------------------------------------------------------------- /public/images/Base-p-800.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Base-p-800.jpeg -------------------------------------------------------------------------------- /public/images/Base.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Base.jpeg -------------------------------------------------------------------------------- /public/images/CheckGreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/CheckGreen.svg -------------------------------------------------------------------------------- /public/images/Eduardo-Rios-p-500.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Eduardo-Rios-p-500.jpeg -------------------------------------------------------------------------------- /public/images/Eduardo-Rios.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Eduardo-Rios.jpeg -------------------------------------------------------------------------------- /public/images/Ellipse-2069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Ellipse-2069.png -------------------------------------------------------------------------------- /public/images/Ellipse-2070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Ellipse-2070.png -------------------------------------------------------------------------------- /public/images/Ellipse-2071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Ellipse-2071.png -------------------------------------------------------------------------------- /public/images/Hiro-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Hiro-logo.png -------------------------------------------------------------------------------- /public/images/Imagen-deposito-p-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Imagen-deposito-p-500.png -------------------------------------------------------------------------------- /public/images/Imagen-deposito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Imagen-deposito.png -------------------------------------------------------------------------------- /public/images/Luis-Gabriel.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Luis-Gabriel.jpeg -------------------------------------------------------------------------------- /public/images/Model-Cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Model-Cone.png -------------------------------------------------------------------------------- /public/images/Model-Sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Model-Sphere.png -------------------------------------------------------------------------------- /public/images/Model-Tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Model-Tank.png -------------------------------------------------------------------------------- /public/images/OG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/OG.png -------------------------------------------------------------------------------- /public/images/Portafolio-p-1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Portafolio-p-1080.png -------------------------------------------------------------------------------- /public/images/Portafolio-p-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Portafolio-p-500.png -------------------------------------------------------------------------------- /public/images/Portafolio-p-800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Portafolio-p-800.png -------------------------------------------------------------------------------- /public/images/Portafolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Portafolio.png -------------------------------------------------------------------------------- /public/images/Safe-p-1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Safe-p-1080.png -------------------------------------------------------------------------------- /public/images/Safe-p-1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Safe-p-1600.png -------------------------------------------------------------------------------- /public/images/Safe-p-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Safe-p-500.png -------------------------------------------------------------------------------- /public/images/Safe-p-800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Safe-p-800.png -------------------------------------------------------------------------------- /public/images/Safe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Safe.png -------------------------------------------------------------------------------- /public/images/T04Q2NUKE93-U054FKGVAM6-2478d51583e0-512-p-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/T04Q2NUKE93-U054FKGVAM6-2478d51583e0-512-p-500.png -------------------------------------------------------------------------------- /public/images/T04Q2NUKE93-U054FKGVAM6-2478d51583e0-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/T04Q2NUKE93-U054FKGVAM6-2478d51583e0-512.png -------------------------------------------------------------------------------- /public/images/USDM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/USDM.png -------------------------------------------------------------------------------- /public/images/Vector-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Vector-1.png -------------------------------------------------------------------------------- /public/images/Vector-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Vector-10.png -------------------------------------------------------------------------------- /public/images/Vector-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Vector-2.png -------------------------------------------------------------------------------- /public/images/Vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Vector.png -------------------------------------------------------------------------------- /public/images/Vector_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/Vector_1.png -------------------------------------------------------------------------------- /public/images/WhatsApp-Image-2023-08-28-at-19.51.31-p-1080.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/WhatsApp-Image-2023-08-28-at-19.51.31-p-1080.jpeg -------------------------------------------------------------------------------- /public/images/WhatsApp-Image-2023-08-28-at-19.51.31-p-500.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/WhatsApp-Image-2023-08-28-at-19.51.31-p-500.jpeg -------------------------------------------------------------------------------- /public/images/WhatsApp-Image-2023-08-28-at-19.51.31-p-800.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/WhatsApp-Image-2023-08-28-at-19.51.31-p-800.jpeg -------------------------------------------------------------------------------- /public/images/WhatsApp-Image-2023-08-28-at-19.51.31.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/WhatsApp-Image-2023-08-28-at-19.51.31.jpeg -------------------------------------------------------------------------------- /public/images/bandoSwap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/bandoSwap.png -------------------------------------------------------------------------------- /public/images/bando_full_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/bando_full_green.png -------------------------------------------------------------------------------- /public/images/bgKyc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/bgKyc.png -------------------------------------------------------------------------------- /public/images/bgKyc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/bgKyc2.png -------------------------------------------------------------------------------- /public/images/ezgif-2-8ea0987634.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/ezgif-2-8ea0987634.gif -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/gorduki-nounish-512-p-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/gorduki-nounish-512-p-500.png -------------------------------------------------------------------------------- /public/images/gorduki-nounish-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/gorduki-nounish-512.png -------------------------------------------------------------------------------- /public/images/image-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/image-58.png -------------------------------------------------------------------------------- /public/images/image-58_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/image-58_1.png -------------------------------------------------------------------------------- /public/images/image-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/image-60.png -------------------------------------------------------------------------------- /public/images/image-60_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/image-60_1.png -------------------------------------------------------------------------------- /public/images/image-61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/image-61.png -------------------------------------------------------------------------------- /public/images/image-61_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/image-61_1.png -------------------------------------------------------------------------------- /public/images/image-62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/image-62.png -------------------------------------------------------------------------------- /public/images/ramp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/ramp.gif -------------------------------------------------------------------------------- /public/images/shiba.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/shiba.webp -------------------------------------------------------------------------------- /public/images/steth-steth-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/steth-steth-logo.png -------------------------------------------------------------------------------- /public/images/webclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/images/webclip.png -------------------------------------------------------------------------------- /public/js/webflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/public/js/webflow.js -------------------------------------------------------------------------------- /src/assets/ArrowDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/ArrowDown.svg -------------------------------------------------------------------------------- /src/assets/CaretDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/CaretDown.svg -------------------------------------------------------------------------------- /src/assets/CaretGreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/CaretGreen.svg -------------------------------------------------------------------------------- /src/assets/CaretWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/CaretWhite.svg -------------------------------------------------------------------------------- /src/assets/CheckGreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/CheckGreen.svg -------------------------------------------------------------------------------- /src/assets/CopyToClipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/CopyToClipboard.svg -------------------------------------------------------------------------------- /src/assets/Cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/Cross.svg -------------------------------------------------------------------------------- /src/assets/Mexico-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/Mexico-01.svg -------------------------------------------------------------------------------- /src/assets/Mexico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/Mexico.svg -------------------------------------------------------------------------------- /src/assets/TokenPlaceholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/TokenPlaceholder.svg -------------------------------------------------------------------------------- /src/assets/TokenPlaceholderGray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/TokenPlaceholderGray.svg -------------------------------------------------------------------------------- /src/assets/TokenPlaceholderGray.svg:Zone.Identifier: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/TransactionArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/TransactionArrow.svg -------------------------------------------------------------------------------- /src/assets/UpDownArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/UpDownArrow.svg -------------------------------------------------------------------------------- /src/assets/arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/arbitrum.svg -------------------------------------------------------------------------------- /src/assets/bg-drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/bg-drawer.png -------------------------------------------------------------------------------- /src/assets/chains/arbitrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/arbitrum.png -------------------------------------------------------------------------------- /src/assets/chains/bnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/bnb.png -------------------------------------------------------------------------------- /src/assets/chains/brett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/brett.png -------------------------------------------------------------------------------- /src/assets/chains/celo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/celo.png -------------------------------------------------------------------------------- /src/assets/chains/ceur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/ceur.png -------------------------------------------------------------------------------- /src/assets/chains/cusd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/cusd.png -------------------------------------------------------------------------------- /src/assets/chains/degen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/degen.png -------------------------------------------------------------------------------- /src/assets/chains/eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/eth.png -------------------------------------------------------------------------------- /src/assets/chains/maga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/maga.png -------------------------------------------------------------------------------- /src/assets/chains/matic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/matic.png -------------------------------------------------------------------------------- /src/assets/chains/mpeth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/mpeth.png -------------------------------------------------------------------------------- /src/assets/chains/optimism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/optimism.png -------------------------------------------------------------------------------- /src/assets/chains/usdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/usdb.png -------------------------------------------------------------------------------- /src/assets/chains/usdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/usdc.png -------------------------------------------------------------------------------- /src/assets/chains/usdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/usdt.png -------------------------------------------------------------------------------- /src/assets/chains/weth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/chains/weth.png -------------------------------------------------------------------------------- /src/assets/currency.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/currency.svg -------------------------------------------------------------------------------- /src/assets/hielocos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/hielocos.png -------------------------------------------------------------------------------- /src/assets/image-58_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/image-58_1.png -------------------------------------------------------------------------------- /src/assets/ine_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/ine_ref.png -------------------------------------------------------------------------------- /src/assets/killb-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/killb-logo.svg -------------------------------------------------------------------------------- /src/assets/kycBg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/kycBg.svg -------------------------------------------------------------------------------- /src/assets/logo-bando.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/logo-bando.svg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/logo_white.svg -------------------------------------------------------------------------------- /src/assets/networks/arbitrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/networks/arbitrum.png -------------------------------------------------------------------------------- /src/assets/networks/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/networks/base.png -------------------------------------------------------------------------------- /src/assets/networks/binance-smart-chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/networks/binance-smart-chain.png -------------------------------------------------------------------------------- /src/assets/networks/binance-smart-chain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/networks/binance-smart-chain.svg -------------------------------------------------------------------------------- /src/assets/networks/blast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/networks/blast.png -------------------------------------------------------------------------------- /src/assets/networks/celo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/networks/celo.png -------------------------------------------------------------------------------- /src/assets/networks/ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/networks/ethereum.png -------------------------------------------------------------------------------- /src/assets/networks/optimism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/networks/optimism.png -------------------------------------------------------------------------------- /src/assets/networks/polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/networks/polygon.png -------------------------------------------------------------------------------- /src/assets/networks/scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/networks/scroll.png -------------------------------------------------------------------------------- /src/assets/networks/solana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/networks/solana.svg -------------------------------------------------------------------------------- /src/assets/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/telegram.svg -------------------------------------------------------------------------------- /src/assets/transactions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/transactions.svg -------------------------------------------------------------------------------- /src/assets/usdt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/assets/usdt.svg -------------------------------------------------------------------------------- /src/components/Alert/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Alert/index.test.tsx -------------------------------------------------------------------------------- /src/components/Alert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Alert/index.tsx -------------------------------------------------------------------------------- /src/components/BoxContainer/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/BoxContainer/index.test.tsx -------------------------------------------------------------------------------- /src/components/BoxContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/BoxContainer/index.tsx -------------------------------------------------------------------------------- /src/components/Button/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Button/index.test.tsx -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/CurrencyImg/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/CurrencyImg/index.tsx -------------------------------------------------------------------------------- /src/components/DialogDrawer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/DialogDrawer/index.tsx -------------------------------------------------------------------------------- /src/components/Footer/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Footer/index.test.tsx -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/Hr/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Hr/index.test.tsx -------------------------------------------------------------------------------- /src/components/Hr/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Hr/index.tsx -------------------------------------------------------------------------------- /src/components/I18nSwitcher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/I18nSwitcher/index.tsx -------------------------------------------------------------------------------- /src/components/Jumbotron/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Jumbotron/index.test.tsx -------------------------------------------------------------------------------- /src/components/Jumbotron/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Jumbotron/index.tsx -------------------------------------------------------------------------------- /src/components/KycBulletPoints/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/KycBulletPoints/index.test.tsx -------------------------------------------------------------------------------- /src/components/KycBulletPoints/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/KycBulletPoints/index.tsx -------------------------------------------------------------------------------- /src/components/LimitUsage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/LimitUsage/index.tsx -------------------------------------------------------------------------------- /src/components/MarkDownContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/MarkDownContainer/index.tsx -------------------------------------------------------------------------------- /src/components/Navbar/DrawerLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Navbar/DrawerLink.tsx -------------------------------------------------------------------------------- /src/components/Navbar/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Navbar/index.test.tsx -------------------------------------------------------------------------------- /src/components/Navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Navbar/index.tsx -------------------------------------------------------------------------------- /src/components/PageTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/PageTitle/index.tsx -------------------------------------------------------------------------------- /src/components/ProgressBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/ProgressBar/index.tsx -------------------------------------------------------------------------------- /src/components/RampDirectionTabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/RampDirectionTabs/index.tsx -------------------------------------------------------------------------------- /src/components/SimpleFooter/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/SimpleFooter/index.test.tsx -------------------------------------------------------------------------------- /src/components/SimpleFooter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/SimpleFooter/index.tsx -------------------------------------------------------------------------------- /src/components/SiteSpinner/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/SiteSpinner/index.test.tsx -------------------------------------------------------------------------------- /src/components/SiteSpinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/SiteSpinner/index.tsx -------------------------------------------------------------------------------- /src/components/StatusBadge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/StatusBadge/index.tsx -------------------------------------------------------------------------------- /src/components/StatusCircle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/StatusCircle/index.tsx -------------------------------------------------------------------------------- /src/components/Svgs/ArrowCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Svgs/ArrowCircle.tsx -------------------------------------------------------------------------------- /src/components/Svgs/Logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/Svgs/Logout.tsx -------------------------------------------------------------------------------- /src/components/TokensWidget/NetworkTiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/TokensWidget/NetworkTiles.tsx -------------------------------------------------------------------------------- /src/components/TokensWidget/TokensList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/TokensWidget/TokensList.tsx -------------------------------------------------------------------------------- /src/components/TokensWidget/alerts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/TokensWidget/alerts.tsx -------------------------------------------------------------------------------- /src/components/TokensWidget/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/TokensWidget/components.tsx -------------------------------------------------------------------------------- /src/components/TokensWidget/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/TokensWidget/helpers.ts -------------------------------------------------------------------------------- /src/components/TokensWidget/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/TokensWidget/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionDetails/RateText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/TransactionDetails/RateText.tsx -------------------------------------------------------------------------------- /src/components/TransactionDetails/TransactionCopyText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/TransactionDetails/TransactionCopyText.tsx -------------------------------------------------------------------------------- /src/components/TransactionDetails/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/TransactionDetails/index.tsx -------------------------------------------------------------------------------- /src/components/TransactionDetails/mapProviderStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/TransactionDetails/mapProviderStatus.ts -------------------------------------------------------------------------------- /src/components/TransactionsTable/CellDetailWithIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/TransactionsTable/CellDetailWithIcon.tsx -------------------------------------------------------------------------------- /src/components/TransactionsTable/TableComponents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/TransactionsTable/TableComponents.tsx -------------------------------------------------------------------------------- /src/components/TransactionsTable/TransactionRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/TransactionsTable/TransactionRow.tsx -------------------------------------------------------------------------------- /src/components/TransactionsTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/TransactionsTable/index.tsx -------------------------------------------------------------------------------- /src/components/UserCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/UserCard/index.tsx -------------------------------------------------------------------------------- /src/components/UserMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/UserMenu/index.tsx -------------------------------------------------------------------------------- /src/components/forms/ErrorBox/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/ErrorBox/index.test.tsx -------------------------------------------------------------------------------- /src/components/forms/ErrorBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/ErrorBox/index.tsx -------------------------------------------------------------------------------- /src/components/forms/GetQuoteForm/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/GetQuoteForm/index.test.tsx -------------------------------------------------------------------------------- /src/components/forms/GetQuoteForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/GetQuoteForm/index.tsx -------------------------------------------------------------------------------- /src/components/forms/GetQuoteForm/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/GetQuoteForm/schema.ts -------------------------------------------------------------------------------- /src/components/forms/GetQuoteForm/v2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/GetQuoteForm/v2/index.tsx -------------------------------------------------------------------------------- /src/components/forms/Input/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/Input/index.test.tsx -------------------------------------------------------------------------------- /src/components/forms/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/Input/index.tsx -------------------------------------------------------------------------------- /src/components/forms/KycForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/KycForm/index.tsx -------------------------------------------------------------------------------- /src/components/forms/KycForm/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/KycForm/schema.ts -------------------------------------------------------------------------------- /src/components/forms/MuiInput/MuiPhoneInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/MuiInput/MuiPhoneInput.tsx -------------------------------------------------------------------------------- /src/components/forms/MuiInput/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/MuiInput/index.test.tsx -------------------------------------------------------------------------------- /src/components/forms/MuiInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/MuiInput/index.tsx -------------------------------------------------------------------------------- /src/components/forms/MuiInput/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/MuiInput/styles.ts -------------------------------------------------------------------------------- /src/components/forms/MuiSelect/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/MuiSelect/index.test.tsx -------------------------------------------------------------------------------- /src/components/forms/MuiSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/MuiSelect/index.tsx -------------------------------------------------------------------------------- /src/components/forms/OnboardingForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/OnboardingForm/index.tsx -------------------------------------------------------------------------------- /src/components/forms/PlacesAutocomplete/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/PlacesAutocomplete/index.tsx -------------------------------------------------------------------------------- /src/components/forms/RampForm/CurrencyPill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/RampForm/CurrencyPill.tsx -------------------------------------------------------------------------------- /src/components/forms/RampForm/RampTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/RampForm/RampTitle.tsx -------------------------------------------------------------------------------- /src/components/forms/RampForm/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/RampForm/index.test.tsx -------------------------------------------------------------------------------- /src/components/forms/RampForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/RampForm/index.tsx -------------------------------------------------------------------------------- /src/components/forms/RampForm/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/RampForm/schema.ts -------------------------------------------------------------------------------- /src/components/forms/Select/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/Select/index.test.tsx -------------------------------------------------------------------------------- /src/components/forms/Select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/components/forms/Select/index.tsx -------------------------------------------------------------------------------- /src/config/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/axios.ts -------------------------------------------------------------------------------- /src/config/constants/chains.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/constants/countries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/constants/countries.ts -------------------------------------------------------------------------------- /src/config/constants/currencies.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/constants/currencies.test.tsx -------------------------------------------------------------------------------- /src/config/constants/currencies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/constants/currencies.tsx -------------------------------------------------------------------------------- /src/config/constants/identification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/constants/identification.ts -------------------------------------------------------------------------------- /src/config/constants/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/constants/links.ts -------------------------------------------------------------------------------- /src/config/constants/networks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/constants/networks.ts -------------------------------------------------------------------------------- /src/config/endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/endpoints.ts -------------------------------------------------------------------------------- /src/config/env.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/env.test.ts -------------------------------------------------------------------------------- /src/config/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/env.ts -------------------------------------------------------------------------------- /src/config/firebase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/firebase/index.ts -------------------------------------------------------------------------------- /src/config/firebase/remoteConfig.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/firebase/remoteConfig.test.ts -------------------------------------------------------------------------------- /src/config/firebase/remoteConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/firebase/remoteConfig.ts -------------------------------------------------------------------------------- /src/config/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/sentry.ts -------------------------------------------------------------------------------- /src/config/tapfiliate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/tapfiliate.ts -------------------------------------------------------------------------------- /src/config/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/config/theme.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- 1 | import 'jest-extended'; 2 | -------------------------------------------------------------------------------- /src/helpers/TestProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/helpers/TestProvider.tsx -------------------------------------------------------------------------------- /src/helpers/formatNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/helpers/formatNumber.ts -------------------------------------------------------------------------------- /src/helpers/formatWalletNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/helpers/formatWalletNumber.ts -------------------------------------------------------------------------------- /src/helpers/getStorageQuote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/helpers/getStorageQuote.ts -------------------------------------------------------------------------------- /src/helpers/getUserLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/helpers/getUserLanguage.ts -------------------------------------------------------------------------------- /src/helpers/input.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/helpers/input.test.ts -------------------------------------------------------------------------------- /src/helpers/inputs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/helpers/inputs.ts -------------------------------------------------------------------------------- /src/helpers/phoneValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/helpers/phoneValidation.ts -------------------------------------------------------------------------------- /src/helpers/regexValidators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/helpers/regexValidators.ts -------------------------------------------------------------------------------- /src/helpers/validateSolanaAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/helpers/validateSolanaAddress.ts -------------------------------------------------------------------------------- /src/hooks/useAuthCookie/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useAuthCookie/index.test.tsx -------------------------------------------------------------------------------- /src/hooks/useAuthCookie/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useAuthCookie/index.tsx -------------------------------------------------------------------------------- /src/hooks/useKyc/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useKyc/index.test.tsx -------------------------------------------------------------------------------- /src/hooks/useKyc/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useKyc/index.tsx -------------------------------------------------------------------------------- /src/hooks/useKyc/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useKyc/requests.ts -------------------------------------------------------------------------------- /src/hooks/useMagic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useMagic/index.ts -------------------------------------------------------------------------------- /src/hooks/useMagicLinkAuth/MagicProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useMagicLinkAuth/MagicProvider.tsx -------------------------------------------------------------------------------- /src/hooks/useMagicLinkAuth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useMagicLinkAuth/index.tsx -------------------------------------------------------------------------------- /src/hooks/useMagicLinkAuth/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useMagicLinkAuth/requests.ts -------------------------------------------------------------------------------- /src/hooks/useNetworks/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useNetworks/index.test.tsx -------------------------------------------------------------------------------- /src/hooks/useNetworks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useNetworks/index.tsx -------------------------------------------------------------------------------- /src/hooks/useNetworks/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useNetworks/mock.ts -------------------------------------------------------------------------------- /src/hooks/useNetworks/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useNetworks/requests.ts -------------------------------------------------------------------------------- /src/hooks/useQuote/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useQuote/index.test.tsx -------------------------------------------------------------------------------- /src/hooks/useQuote/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useQuote/index.tsx -------------------------------------------------------------------------------- /src/hooks/useQuote/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useQuote/requests.ts -------------------------------------------------------------------------------- /src/hooks/useRecipient/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useRecipient/index.test.tsx -------------------------------------------------------------------------------- /src/hooks/useRecipient/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useRecipient/index.ts -------------------------------------------------------------------------------- /src/hooks/useRecipient/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useRecipient/requests.ts -------------------------------------------------------------------------------- /src/hooks/useRemoteConfig/RemoteConfigProvider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useRemoteConfig/RemoteConfigProvider.test.tsx -------------------------------------------------------------------------------- /src/hooks/useRemoteConfig/RemoteConfigProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useRemoteConfig/RemoteConfigProvider.tsx -------------------------------------------------------------------------------- /src/hooks/useRemoteConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useRemoteConfig/index.ts -------------------------------------------------------------------------------- /src/hooks/useTokens/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useTokens/index.test.tsx -------------------------------------------------------------------------------- /src/hooks/useTokens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useTokens/index.ts -------------------------------------------------------------------------------- /src/hooks/useTokens/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useTokens/mock.ts -------------------------------------------------------------------------------- /src/hooks/useTokens/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useTokens/requests.ts -------------------------------------------------------------------------------- /src/hooks/useTransaction/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useTransaction/index.test.tsx -------------------------------------------------------------------------------- /src/hooks/useTransaction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useTransaction/index.ts -------------------------------------------------------------------------------- /src/hooks/useTransaction/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useTransaction/requests.ts -------------------------------------------------------------------------------- /src/hooks/useTransactions/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useTransactions/index.test.tsx -------------------------------------------------------------------------------- /src/hooks/useTransactions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useTransactions/index.ts -------------------------------------------------------------------------------- /src/hooks/useTransactions/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useTransactions/requests.ts -------------------------------------------------------------------------------- /src/hooks/useUser/IntercomProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useUser/IntercomProvider.tsx -------------------------------------------------------------------------------- /src/hooks/useUser/MagicUserProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useUser/MagicUserProvider.tsx -------------------------------------------------------------------------------- /src/hooks/useUser/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useUser/index.tsx -------------------------------------------------------------------------------- /src/hooks/useUser/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useUser/requests.ts -------------------------------------------------------------------------------- /src/hooks/useUser/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/hooks/useUser/types.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/index.css -------------------------------------------------------------------------------- /src/layouts/CleanLayout/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/layouts/CleanLayout/index.test.tsx -------------------------------------------------------------------------------- /src/layouts/CleanLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/layouts/CleanLayout/index.tsx -------------------------------------------------------------------------------- /src/layouts/ColumnLayout/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/layouts/ColumnLayout/index.test.tsx -------------------------------------------------------------------------------- /src/layouts/ColumnLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/layouts/ColumnLayout/index.tsx -------------------------------------------------------------------------------- /src/layouts/EmptyLayout/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/layouts/EmptyLayout/index.test.tsx -------------------------------------------------------------------------------- /src/layouts/EmptyLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/layouts/EmptyLayout/index.tsx -------------------------------------------------------------------------------- /src/layouts/LandingLayout/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/layouts/LandingLayout/index.test.tsx -------------------------------------------------------------------------------- /src/layouts/LandingLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/layouts/LandingLayout/index.tsx -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/mui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/mui.d.ts -------------------------------------------------------------------------------- /src/pages/FAQ/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/pages/FAQ/index.tsx -------------------------------------------------------------------------------- /src/pages/Kyc/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/pages/Kyc/index.tsx -------------------------------------------------------------------------------- /src/pages/Landing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/pages/Landing/index.tsx -------------------------------------------------------------------------------- /src/pages/PrivacyNotice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/pages/PrivacyNotice/index.tsx -------------------------------------------------------------------------------- /src/pages/ProtectedRamp/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/pages/ProtectedRamp/index.tsx -------------------------------------------------------------------------------- /src/pages/Ramp/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/pages/Ramp/index.tsx -------------------------------------------------------------------------------- /src/pages/SignIn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/pages/SignIn/index.tsx -------------------------------------------------------------------------------- /src/pages/SignIn/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/pages/SignIn/schema.ts -------------------------------------------------------------------------------- /src/pages/Signup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/pages/Signup/index.tsx -------------------------------------------------------------------------------- /src/pages/Terms/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/pages/Terms/index.tsx -------------------------------------------------------------------------------- /src/pages/Transactions/Detail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/pages/Transactions/Detail/index.tsx -------------------------------------------------------------------------------- /src/pages/Transactions/History/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/pages/Transactions/History/index.tsx -------------------------------------------------------------------------------- /src/pages/Transactions/KycDetail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/pages/Transactions/KycDetail/index.tsx -------------------------------------------------------------------------------- /src/routes/ExposedWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/routes/ExposedWrapper.tsx -------------------------------------------------------------------------------- /src/routes/OnlyGuestWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/routes/OnlyGuestWrapper.tsx -------------------------------------------------------------------------------- /src/routes/ProtectedWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/routes/ProtectedWrapper.tsx -------------------------------------------------------------------------------- /src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/routes/index.tsx -------------------------------------------------------------------------------- /src/tapfiliate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/tapfiliate.d.ts -------------------------------------------------------------------------------- /src/translations/en/faq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/en/faq.ts -------------------------------------------------------------------------------- /src/translations/en/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/en/footer.ts -------------------------------------------------------------------------------- /src/translations/en/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/en/form.ts -------------------------------------------------------------------------------- /src/translations/en/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/en/index.ts -------------------------------------------------------------------------------- /src/translations/en/kycPoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/en/kycPoints.ts -------------------------------------------------------------------------------- /src/translations/en/landing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/en/landing.ts -------------------------------------------------------------------------------- /src/translations/en/quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/en/quote.ts -------------------------------------------------------------------------------- /src/translations/en/ramp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/en/ramp.ts -------------------------------------------------------------------------------- /src/translations/en/transactionDetail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/en/transactionDetail.ts -------------------------------------------------------------------------------- /src/translations/en/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/en/transactions.ts -------------------------------------------------------------------------------- /src/translations/en/userMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/en/userMenu.ts -------------------------------------------------------------------------------- /src/translations/es/faq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/es/faq.ts -------------------------------------------------------------------------------- /src/translations/es/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/es/footer.ts -------------------------------------------------------------------------------- /src/translations/es/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/es/form.ts -------------------------------------------------------------------------------- /src/translations/es/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/es/index.ts -------------------------------------------------------------------------------- /src/translations/es/kycPoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/es/kycPoints.ts -------------------------------------------------------------------------------- /src/translations/es/landing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/es/landing.ts -------------------------------------------------------------------------------- /src/translations/es/quote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/es/quote.ts -------------------------------------------------------------------------------- /src/translations/es/ramp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/es/ramp.ts -------------------------------------------------------------------------------- /src/translations/es/transactionDetail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/es/transactionDetail.ts -------------------------------------------------------------------------------- /src/translations/es/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/es/transactions.ts -------------------------------------------------------------------------------- /src/translations/es/userMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/es/userMenu.ts -------------------------------------------------------------------------------- /src/translations/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/index.test.tsx -------------------------------------------------------------------------------- /src/translations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/src/translations/index.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bandohq/react-bando/HEAD/yarn.lock --------------------------------------------------------------------------------