├── .editorconfig ├── .env.example ├── .env.gh-pages ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── LICENSE ├── README.md ├── config-overrides.js ├── crowdin.yml ├── i18next-parser.config.js ├── netlify.toml ├── netlify └── functions │ └── ui-message.ts ├── package.json ├── public ├── RenBridge_Service_Agreement.pdf ├── apple-touch-icon.png ├── background.svg ├── favicon-128x128-alert.png ├── favicon-128x128.png ├── favicon-16x16.png ├── favicon-256x256-alert.png ├── favicon-256x256.png ├── favicon-32x32-alert.png ├── favicon-32x32.png ├── favicon-64x64-alert.png ├── favicon-64x64.png ├── favicon-alert.png ├── favicon.ico ├── index.html ├── manifest.json ├── ren_og_image.png ├── robots.txt └── tokens │ ├── renBADGER.svg │ ├── renBCH.svg │ ├── renBNB.svg │ ├── renBTC.svg │ ├── renBUSD.svg │ ├── renCOMP.svg │ ├── renDAI.svg │ ├── renDGB.svg │ ├── renDIGI.svg │ ├── renDOGE.svg │ ├── renETH.svg │ ├── renEURT.svg │ ├── renFIL.svg │ ├── renFTM.svg │ ├── renFTT.svg │ ├── renLINK.svg │ ├── renLUNA.svg │ ├── renMATIC.svg │ ├── renROOK.svg │ ├── renSOL.svg │ ├── renUNI.svg │ ├── renUSDT.svg │ ├── renZCASH.svg │ ├── renZEC.svg │ └── renwBTC.svg ├── src ├── App.tsx ├── assets │ ├── animations │ │ └── bridge_landing.json │ ├── backgrounds │ │ └── background.svg │ ├── icons │ │ ├── back-arrow.svg │ │ ├── background.svg │ │ ├── bg-circle-1.svg │ │ ├── bg-circle-2.svg │ │ ├── bg-circle-3.svg │ │ ├── bg-circle-4.svg │ │ ├── browser-notifications.svg │ │ ├── chevron-icon-left.svg │ │ ├── chevron-icon-right.svg │ │ ├── delete-icon.svg │ │ ├── empty-circle-icon.svg │ │ ├── empty-icon.svg │ │ ├── gateway-icon.svg │ │ ├── icon-beta.svg │ │ ├── medium-logo.svg │ │ ├── qr-code.svg │ │ ├── ren-logo-3f.svg │ │ ├── ren-logo.svg │ │ ├── renbridge-logo.svg │ │ ├── renvm-logo.svg │ │ ├── specialalert-icon.svg │ │ ├── success-icon.svg │ │ ├── tokens │ │ │ ├── bitcoin-cash-dashed-icon.svg │ │ │ ├── bitcoin-dashed-icon.svg │ │ │ ├── digibyte-dashed-icon.svg │ │ │ ├── dogecoin-dashed-icon.svg │ │ │ ├── filecoin-dashed-icon.svg │ │ │ ├── luna-dashed-icon.svg │ │ │ └── zcash-dashed-icon.svg │ │ ├── tooltip.svg │ │ ├── tx-history.svg │ │ ├── tx-settings.svg │ │ └── wallet-icon.svg │ ├── images │ │ └── ftx.png │ └── logos │ │ ├── logo-small.svg │ │ └── logo-text.svg ├── components │ ├── buttons │ │ └── Buttons.tsx │ ├── dropdowns │ │ └── RichDropdown.tsx │ ├── formatting │ │ └── NumberFormatText.tsx │ ├── icons │ │ ├── IconHelpers.tsx │ │ └── RenIcons.tsx │ ├── inputs │ │ ├── BigCurrencyInput.tsx │ │ ├── InputHelpers.tsx │ │ └── OutlinedTextField.tsx │ ├── layout │ │ ├── Footer.tsx │ │ ├── LayoutHelpers.tsx │ │ ├── MobileLayout.tsx │ │ └── Paper.tsx │ ├── links │ │ └── Links.tsx │ ├── modals │ │ └── BridgeModal.tsx │ ├── navigation │ │ └── DotStepper.tsx │ ├── notifications │ │ └── NotificationMessage.tsx │ ├── pagination │ │ └── SimplePagination.tsx │ ├── progress │ │ ├── AppLoader.tsx │ │ └── ProgressHelpers.tsx │ ├── tooltips │ │ └── TooltipWithIcon.tsx │ ├── typography │ │ └── TypographyHelpers.tsx │ └── utils │ │ ├── Debug.tsx │ │ └── Error.tsx ├── constants │ ├── constants.ts │ ├── environmentVariables.ts │ └── featureFlags.ts ├── features │ ├── chain │ │ └── chainUtils.ts │ ├── gateway │ │ ├── GatewayRoutes.tsx │ │ ├── components │ │ │ ├── AddressHelpers.tsx │ │ │ ├── BalanceHelpers.tsx │ │ │ ├── DropdownHelpers.tsx │ │ │ ├── FeeHelpers.tsx │ │ │ ├── GatewayFees.tsx │ │ │ ├── GatewayHelpers.tsx │ │ │ ├── HostToHostHelpers.tsx │ │ │ ├── MintHelpers.tsx │ │ │ ├── MultipleDepositsHelpers.tsx │ │ │ ├── PaperHelpers.tsx │ │ │ ├── TransactionProgressHelpers.tsx │ │ │ └── TransactionTypeHelpers.tsx │ │ ├── gatewayHooks.ts │ │ ├── gatewayRoutingUtils.ts │ │ ├── gatewaySlice.ts │ │ ├── gatewayTransactionHooks.ts │ │ ├── gatewayTransactionUtils.ts │ │ ├── gatewayUtils.ts │ │ ├── mintHooks.ts │ │ ├── renJSHooks.ts │ │ └── steps │ │ │ ├── GatewayFeesStep.tsx │ │ │ ├── GatewayInitialStep.tsx │ │ │ ├── flows │ │ │ ├── MintH2H.tsx │ │ │ ├── MintH2HStatuses.tsx │ │ │ ├── MintStandard.tsx │ │ │ ├── MintStandardStatuses.tsx │ │ │ ├── ReleaseH2H.tsx │ │ │ ├── ReleaseH2HStatuses.tsx │ │ │ ├── ReleaseStandard.tsx │ │ │ ├── ReleaseStandardStatuses.tsx │ │ │ └── Test.tsx │ │ │ ├── gatewayUiHooks.ts │ │ │ ├── shared │ │ │ ├── GatewayNavigationHelpers.tsx │ │ │ ├── SubmissionHelpers.tsx │ │ │ ├── TransactionStatuses.tsx │ │ │ └── WalletSwitchHelpers.tsx │ │ │ └── stepUtils.ts │ ├── i18n │ │ └── components │ │ │ └── I18nHelpers.tsx │ ├── marketData │ │ ├── marketDataHooks.ts │ │ ├── marketDataSlice.ts │ │ └── marketDataUtils.ts │ ├── network │ │ ├── components │ │ │ └── NetworkHelpers.tsx │ │ ├── networkHooks.ts │ │ └── networkSlice.ts │ ├── notifications │ │ ├── components │ │ │ └── NotificationsHelpers.tsx │ │ └── notificationsUtils.ts │ ├── storage │ │ └── storageHooks.ts │ ├── transactions │ │ ├── IssuesResolver.tsx │ │ ├── TransactionRecovery.tsx │ │ ├── TransactionsHistory.tsx │ │ ├── components │ │ │ ├── TransactionMenu.tsx │ │ │ ├── TransactionsHelpers.tsx │ │ │ └── TransactionsHistoryHelpers.tsx │ │ ├── transactionsHooks.tsx │ │ └── transactionsSlice.ts │ ├── ui │ │ ├── ImportantInfoModal.tsx │ │ ├── SystemMonitor.tsx │ │ ├── components │ │ │ └── SystemMonitorHelpers.tsx │ │ ├── uiHooks.ts │ │ └── uiSlice.ts │ └── wallet │ │ ├── components │ │ └── WalletHelpers.tsx │ │ ├── walletHooks.ts │ │ ├── walletSlice.ts │ │ └── walletUtils.ts ├── i18n │ ├── i18n.ts │ ├── i18nUtils.ts │ ├── localeBundles.ts │ └── locales │ │ ├── de-DE.json │ │ ├── en.json │ │ ├── es-ES.json │ │ ├── pt-PT.json │ │ ├── ru-RU.json │ │ └── zh-CN.json ├── index.css ├── index.tsx ├── lib │ └── declarations │ │ ├── react-lorem-component.d.ts │ │ └── react-middle-ellipsis.d.ts ├── logo.svg ├── pages │ ├── AboutPage.tsx │ ├── FtxPage.tsx │ ├── MainLayout.tsx │ ├── MainPage.test.disable.tsx │ ├── MainPage.tsx │ ├── NotFoundPage.tsx │ ├── WelcomePage.tsx │ └── routes.ts ├── providers │ ├── Notifications.tsx │ ├── TitleProviders.tsx │ ├── TransactionProviders.ts │ └── multiwallet │ │ ├── CoinbaseInjectedConnector.ts │ │ ├── MultiwalletProvider.tsx │ │ ├── SolanaConnector.ts │ │ └── multiwalletConfig.ts ├── react-app-env.d.ts ├── serviceWorker.ts ├── services │ └── wallets │ │ └── bsc.ts ├── setupTests.ts ├── store │ ├── rootReducer.ts │ └── store.ts ├── theme │ ├── animationUtils.ts │ ├── colors.ts │ ├── other.ts │ ├── overrides.ts │ ├── palette.ts │ ├── props.tsx │ ├── theme.ts │ ├── themeUtils.ts │ └── typography.ts └── utils │ ├── arrays.test.ts │ ├── arrays.ts │ ├── assetsConfig.ts │ ├── cartesian.test.ts │ ├── cartesian.ts │ ├── chainsConfig.ts │ ├── converters.test.ts │ ├── converters.ts │ ├── copyToClipboard.tsx │ ├── dates.test.ts │ ├── dates.ts │ ├── debug.ts │ ├── fetch.ts │ ├── formatters.test.ts │ ├── formatters.ts │ ├── icons.test.ts │ ├── icons.ts │ ├── missingTypes.ts │ ├── networksConfig.ts │ ├── numbers.ts │ ├── objects.ts │ ├── propsUtils.ts │ ├── strings.test.ts │ ├── strings.ts │ ├── time.ts │ └── walletsConfig.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/.env.example -------------------------------------------------------------------------------- /.env.gh-pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/.env.gh-pages -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/README.md -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/config-overrides.js -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/crowdin.yml -------------------------------------------------------------------------------- /i18next-parser.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/i18next-parser.config.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/netlify.toml -------------------------------------------------------------------------------- /netlify/functions/ui-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/netlify/functions/ui-message.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/package.json -------------------------------------------------------------------------------- /public/RenBridge_Service_Agreement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/RenBridge_Service_Agreement.pdf -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/background.svg -------------------------------------------------------------------------------- /public/favicon-128x128-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/favicon-128x128-alert.png -------------------------------------------------------------------------------- /public/favicon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/favicon-128x128.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-256x256-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/favicon-256x256-alert.png -------------------------------------------------------------------------------- /public/favicon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/favicon-256x256.png -------------------------------------------------------------------------------- /public/favicon-32x32-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/favicon-32x32-alert.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon-64x64-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/favicon-64x64-alert.png -------------------------------------------------------------------------------- /public/favicon-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/favicon-64x64.png -------------------------------------------------------------------------------- /public/favicon-alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/favicon-alert.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/ren_og_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/ren_og_image.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/tokens/renBADGER.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renBADGER.svg -------------------------------------------------------------------------------- /public/tokens/renBCH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renBCH.svg -------------------------------------------------------------------------------- /public/tokens/renBNB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renBNB.svg -------------------------------------------------------------------------------- /public/tokens/renBTC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renBTC.svg -------------------------------------------------------------------------------- /public/tokens/renBUSD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renBUSD.svg -------------------------------------------------------------------------------- /public/tokens/renCOMP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renCOMP.svg -------------------------------------------------------------------------------- /public/tokens/renDAI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renDAI.svg -------------------------------------------------------------------------------- /public/tokens/renDGB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renDGB.svg -------------------------------------------------------------------------------- /public/tokens/renDIGI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renDIGI.svg -------------------------------------------------------------------------------- /public/tokens/renDOGE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renDOGE.svg -------------------------------------------------------------------------------- /public/tokens/renETH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renETH.svg -------------------------------------------------------------------------------- /public/tokens/renEURT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renEURT.svg -------------------------------------------------------------------------------- /public/tokens/renFIL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renFIL.svg -------------------------------------------------------------------------------- /public/tokens/renFTM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renFTM.svg -------------------------------------------------------------------------------- /public/tokens/renFTT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renFTT.svg -------------------------------------------------------------------------------- /public/tokens/renLINK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renLINK.svg -------------------------------------------------------------------------------- /public/tokens/renLUNA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renLUNA.svg -------------------------------------------------------------------------------- /public/tokens/renMATIC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renMATIC.svg -------------------------------------------------------------------------------- /public/tokens/renROOK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renROOK.svg -------------------------------------------------------------------------------- /public/tokens/renSOL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renSOL.svg -------------------------------------------------------------------------------- /public/tokens/renUNI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renUNI.svg -------------------------------------------------------------------------------- /public/tokens/renUSDT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renUSDT.svg -------------------------------------------------------------------------------- /public/tokens/renZCASH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renZCASH.svg -------------------------------------------------------------------------------- /public/tokens/renZEC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renZEC.svg -------------------------------------------------------------------------------- /public/tokens/renwBTC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/public/tokens/renwBTC.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/animations/bridge_landing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/animations/bridge_landing.json -------------------------------------------------------------------------------- /src/assets/backgrounds/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/backgrounds/background.svg -------------------------------------------------------------------------------- /src/assets/icons/back-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/back-arrow.svg -------------------------------------------------------------------------------- /src/assets/icons/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/background.svg -------------------------------------------------------------------------------- /src/assets/icons/bg-circle-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/bg-circle-1.svg -------------------------------------------------------------------------------- /src/assets/icons/bg-circle-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/bg-circle-2.svg -------------------------------------------------------------------------------- /src/assets/icons/bg-circle-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/bg-circle-3.svg -------------------------------------------------------------------------------- /src/assets/icons/bg-circle-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/bg-circle-4.svg -------------------------------------------------------------------------------- /src/assets/icons/browser-notifications.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/browser-notifications.svg -------------------------------------------------------------------------------- /src/assets/icons/chevron-icon-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/chevron-icon-left.svg -------------------------------------------------------------------------------- /src/assets/icons/chevron-icon-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/chevron-icon-right.svg -------------------------------------------------------------------------------- /src/assets/icons/delete-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/delete-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/empty-circle-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/empty-circle-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/empty-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/empty-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/gateway-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/gateway-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/icon-beta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/icon-beta.svg -------------------------------------------------------------------------------- /src/assets/icons/medium-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/medium-logo.svg -------------------------------------------------------------------------------- /src/assets/icons/qr-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/qr-code.svg -------------------------------------------------------------------------------- /src/assets/icons/ren-logo-3f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/ren-logo-3f.svg -------------------------------------------------------------------------------- /src/assets/icons/ren-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/ren-logo.svg -------------------------------------------------------------------------------- /src/assets/icons/renbridge-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/renbridge-logo.svg -------------------------------------------------------------------------------- /src/assets/icons/renvm-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/renvm-logo.svg -------------------------------------------------------------------------------- /src/assets/icons/specialalert-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/specialalert-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/success-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/success-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/bitcoin-cash-dashed-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/tokens/bitcoin-cash-dashed-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/bitcoin-dashed-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/tokens/bitcoin-dashed-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/digibyte-dashed-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/tokens/digibyte-dashed-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/dogecoin-dashed-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/tokens/dogecoin-dashed-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/filecoin-dashed-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/tokens/filecoin-dashed-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/luna-dashed-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/tokens/luna-dashed-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/tokens/zcash-dashed-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/tokens/zcash-dashed-icon.svg -------------------------------------------------------------------------------- /src/assets/icons/tooltip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/tooltip.svg -------------------------------------------------------------------------------- /src/assets/icons/tx-history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/tx-history.svg -------------------------------------------------------------------------------- /src/assets/icons/tx-settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/tx-settings.svg -------------------------------------------------------------------------------- /src/assets/icons/wallet-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/icons/wallet-icon.svg -------------------------------------------------------------------------------- /src/assets/images/ftx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/images/ftx.png -------------------------------------------------------------------------------- /src/assets/logos/logo-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/logos/logo-small.svg -------------------------------------------------------------------------------- /src/assets/logos/logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/assets/logos/logo-text.svg -------------------------------------------------------------------------------- /src/components/buttons/Buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/buttons/Buttons.tsx -------------------------------------------------------------------------------- /src/components/dropdowns/RichDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/dropdowns/RichDropdown.tsx -------------------------------------------------------------------------------- /src/components/formatting/NumberFormatText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/formatting/NumberFormatText.tsx -------------------------------------------------------------------------------- /src/components/icons/IconHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/icons/IconHelpers.tsx -------------------------------------------------------------------------------- /src/components/icons/RenIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/icons/RenIcons.tsx -------------------------------------------------------------------------------- /src/components/inputs/BigCurrencyInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/inputs/BigCurrencyInput.tsx -------------------------------------------------------------------------------- /src/components/inputs/InputHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/inputs/InputHelpers.tsx -------------------------------------------------------------------------------- /src/components/inputs/OutlinedTextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/inputs/OutlinedTextField.tsx -------------------------------------------------------------------------------- /src/components/layout/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/layout/Footer.tsx -------------------------------------------------------------------------------- /src/components/layout/LayoutHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/layout/LayoutHelpers.tsx -------------------------------------------------------------------------------- /src/components/layout/MobileLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/layout/MobileLayout.tsx -------------------------------------------------------------------------------- /src/components/layout/Paper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/layout/Paper.tsx -------------------------------------------------------------------------------- /src/components/links/Links.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/links/Links.tsx -------------------------------------------------------------------------------- /src/components/modals/BridgeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/modals/BridgeModal.tsx -------------------------------------------------------------------------------- /src/components/navigation/DotStepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/navigation/DotStepper.tsx -------------------------------------------------------------------------------- /src/components/notifications/NotificationMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/notifications/NotificationMessage.tsx -------------------------------------------------------------------------------- /src/components/pagination/SimplePagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/pagination/SimplePagination.tsx -------------------------------------------------------------------------------- /src/components/progress/AppLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/progress/AppLoader.tsx -------------------------------------------------------------------------------- /src/components/progress/ProgressHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/progress/ProgressHelpers.tsx -------------------------------------------------------------------------------- /src/components/tooltips/TooltipWithIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/tooltips/TooltipWithIcon.tsx -------------------------------------------------------------------------------- /src/components/typography/TypographyHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/typography/TypographyHelpers.tsx -------------------------------------------------------------------------------- /src/components/utils/Debug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/utils/Debug.tsx -------------------------------------------------------------------------------- /src/components/utils/Error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/components/utils/Error.tsx -------------------------------------------------------------------------------- /src/constants/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/constants/constants.ts -------------------------------------------------------------------------------- /src/constants/environmentVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/constants/environmentVariables.ts -------------------------------------------------------------------------------- /src/constants/featureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/constants/featureFlags.ts -------------------------------------------------------------------------------- /src/features/chain/chainUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/chain/chainUtils.ts -------------------------------------------------------------------------------- /src/features/gateway/GatewayRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/GatewayRoutes.tsx -------------------------------------------------------------------------------- /src/features/gateway/components/AddressHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/components/AddressHelpers.tsx -------------------------------------------------------------------------------- /src/features/gateway/components/BalanceHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/components/BalanceHelpers.tsx -------------------------------------------------------------------------------- /src/features/gateway/components/DropdownHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/components/DropdownHelpers.tsx -------------------------------------------------------------------------------- /src/features/gateway/components/FeeHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/components/FeeHelpers.tsx -------------------------------------------------------------------------------- /src/features/gateway/components/GatewayFees.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/components/GatewayFees.tsx -------------------------------------------------------------------------------- /src/features/gateway/components/GatewayHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/components/GatewayHelpers.tsx -------------------------------------------------------------------------------- /src/features/gateway/components/HostToHostHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/components/HostToHostHelpers.tsx -------------------------------------------------------------------------------- /src/features/gateway/components/MintHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/components/MintHelpers.tsx -------------------------------------------------------------------------------- /src/features/gateway/components/MultipleDepositsHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/components/MultipleDepositsHelpers.tsx -------------------------------------------------------------------------------- /src/features/gateway/components/PaperHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/components/PaperHelpers.tsx -------------------------------------------------------------------------------- /src/features/gateway/components/TransactionProgressHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/components/TransactionProgressHelpers.tsx -------------------------------------------------------------------------------- /src/features/gateway/components/TransactionTypeHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/components/TransactionTypeHelpers.tsx -------------------------------------------------------------------------------- /src/features/gateway/gatewayHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/gatewayHooks.ts -------------------------------------------------------------------------------- /src/features/gateway/gatewayRoutingUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/gatewayRoutingUtils.ts -------------------------------------------------------------------------------- /src/features/gateway/gatewaySlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/gatewaySlice.ts -------------------------------------------------------------------------------- /src/features/gateway/gatewayTransactionHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/gatewayTransactionHooks.ts -------------------------------------------------------------------------------- /src/features/gateway/gatewayTransactionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/gatewayTransactionUtils.ts -------------------------------------------------------------------------------- /src/features/gateway/gatewayUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/gatewayUtils.ts -------------------------------------------------------------------------------- /src/features/gateway/mintHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/mintHooks.ts -------------------------------------------------------------------------------- /src/features/gateway/renJSHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/renJSHooks.ts -------------------------------------------------------------------------------- /src/features/gateway/steps/GatewayFeesStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/GatewayFeesStep.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/GatewayInitialStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/GatewayInitialStep.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/flows/MintH2H.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/flows/MintH2H.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/flows/MintH2HStatuses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/flows/MintH2HStatuses.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/flows/MintStandard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/flows/MintStandard.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/flows/MintStandardStatuses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/flows/MintStandardStatuses.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/flows/ReleaseH2H.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/flows/ReleaseH2H.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/flows/ReleaseH2HStatuses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/flows/ReleaseH2HStatuses.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/flows/ReleaseStandard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/flows/ReleaseStandard.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/flows/ReleaseStandardStatuses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/flows/ReleaseStandardStatuses.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/flows/Test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/flows/Test.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/gatewayUiHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/gatewayUiHooks.ts -------------------------------------------------------------------------------- /src/features/gateway/steps/shared/GatewayNavigationHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/shared/GatewayNavigationHelpers.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/shared/SubmissionHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/shared/SubmissionHelpers.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/shared/TransactionStatuses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/shared/TransactionStatuses.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/shared/WalletSwitchHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/shared/WalletSwitchHelpers.tsx -------------------------------------------------------------------------------- /src/features/gateway/steps/stepUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/gateway/steps/stepUtils.ts -------------------------------------------------------------------------------- /src/features/i18n/components/I18nHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/i18n/components/I18nHelpers.tsx -------------------------------------------------------------------------------- /src/features/marketData/marketDataHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/marketData/marketDataHooks.ts -------------------------------------------------------------------------------- /src/features/marketData/marketDataSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/marketData/marketDataSlice.ts -------------------------------------------------------------------------------- /src/features/marketData/marketDataUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/marketData/marketDataUtils.ts -------------------------------------------------------------------------------- /src/features/network/components/NetworkHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/network/components/NetworkHelpers.tsx -------------------------------------------------------------------------------- /src/features/network/networkHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/network/networkHooks.ts -------------------------------------------------------------------------------- /src/features/network/networkSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/network/networkSlice.ts -------------------------------------------------------------------------------- /src/features/notifications/components/NotificationsHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/notifications/components/NotificationsHelpers.tsx -------------------------------------------------------------------------------- /src/features/notifications/notificationsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/notifications/notificationsUtils.ts -------------------------------------------------------------------------------- /src/features/storage/storageHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/storage/storageHooks.ts -------------------------------------------------------------------------------- /src/features/transactions/IssuesResolver.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/transactions/IssuesResolver.tsx -------------------------------------------------------------------------------- /src/features/transactions/TransactionRecovery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/transactions/TransactionRecovery.tsx -------------------------------------------------------------------------------- /src/features/transactions/TransactionsHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/transactions/TransactionsHistory.tsx -------------------------------------------------------------------------------- /src/features/transactions/components/TransactionMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/transactions/components/TransactionMenu.tsx -------------------------------------------------------------------------------- /src/features/transactions/components/TransactionsHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/transactions/components/TransactionsHelpers.tsx -------------------------------------------------------------------------------- /src/features/transactions/components/TransactionsHistoryHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/transactions/components/TransactionsHistoryHelpers.tsx -------------------------------------------------------------------------------- /src/features/transactions/transactionsHooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/transactions/transactionsHooks.tsx -------------------------------------------------------------------------------- /src/features/transactions/transactionsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/transactions/transactionsSlice.ts -------------------------------------------------------------------------------- /src/features/ui/ImportantInfoModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/ui/ImportantInfoModal.tsx -------------------------------------------------------------------------------- /src/features/ui/SystemMonitor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/ui/SystemMonitor.tsx -------------------------------------------------------------------------------- /src/features/ui/components/SystemMonitorHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/ui/components/SystemMonitorHelpers.tsx -------------------------------------------------------------------------------- /src/features/ui/uiHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/ui/uiHooks.ts -------------------------------------------------------------------------------- /src/features/ui/uiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/ui/uiSlice.ts -------------------------------------------------------------------------------- /src/features/wallet/components/WalletHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/wallet/components/WalletHelpers.tsx -------------------------------------------------------------------------------- /src/features/wallet/walletHooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/wallet/walletHooks.ts -------------------------------------------------------------------------------- /src/features/wallet/walletSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/wallet/walletSlice.ts -------------------------------------------------------------------------------- /src/features/wallet/walletUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/features/wallet/walletUtils.ts -------------------------------------------------------------------------------- /src/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/i18n/i18n.ts -------------------------------------------------------------------------------- /src/i18n/i18nUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/i18n/i18nUtils.ts -------------------------------------------------------------------------------- /src/i18n/localeBundles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/i18n/localeBundles.ts -------------------------------------------------------------------------------- /src/i18n/locales/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/i18n/locales/de-DE.json -------------------------------------------------------------------------------- /src/i18n/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/i18n/locales/en.json -------------------------------------------------------------------------------- /src/i18n/locales/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/i18n/locales/es-ES.json -------------------------------------------------------------------------------- /src/i18n/locales/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/i18n/locales/pt-PT.json -------------------------------------------------------------------------------- /src/i18n/locales/ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/i18n/locales/ru-RU.json -------------------------------------------------------------------------------- /src/i18n/locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/i18n/locales/zh-CN.json -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/lib/declarations/react-lorem-component.d.ts: -------------------------------------------------------------------------------- 1 | declare module "react-lorem-component"; 2 | -------------------------------------------------------------------------------- /src/lib/declarations/react-middle-ellipsis.d.ts: -------------------------------------------------------------------------------- 1 | declare module "react-middle-ellipsis"; 2 | -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/AboutPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/pages/AboutPage.tsx -------------------------------------------------------------------------------- /src/pages/FtxPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/pages/FtxPage.tsx -------------------------------------------------------------------------------- /src/pages/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/pages/MainLayout.tsx -------------------------------------------------------------------------------- /src/pages/MainPage.test.disable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/pages/MainPage.test.disable.tsx -------------------------------------------------------------------------------- /src/pages/MainPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/pages/MainPage.tsx -------------------------------------------------------------------------------- /src/pages/NotFoundPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/pages/NotFoundPage.tsx -------------------------------------------------------------------------------- /src/pages/WelcomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/pages/WelcomePage.tsx -------------------------------------------------------------------------------- /src/pages/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/pages/routes.ts -------------------------------------------------------------------------------- /src/providers/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/providers/Notifications.tsx -------------------------------------------------------------------------------- /src/providers/TitleProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/providers/TitleProviders.tsx -------------------------------------------------------------------------------- /src/providers/TransactionProviders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/providers/TransactionProviders.ts -------------------------------------------------------------------------------- /src/providers/multiwallet/CoinbaseInjectedConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/providers/multiwallet/CoinbaseInjectedConnector.ts -------------------------------------------------------------------------------- /src/providers/multiwallet/MultiwalletProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/providers/multiwallet/MultiwalletProvider.tsx -------------------------------------------------------------------------------- /src/providers/multiwallet/SolanaConnector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/providers/multiwallet/SolanaConnector.ts -------------------------------------------------------------------------------- /src/providers/multiwallet/multiwalletConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/providers/multiwallet/multiwalletConfig.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/serviceWorker.ts -------------------------------------------------------------------------------- /src/services/wallets/bsc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/services/wallets/bsc.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/store/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/store/rootReducer.ts -------------------------------------------------------------------------------- /src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/store/store.ts -------------------------------------------------------------------------------- /src/theme/animationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/theme/animationUtils.ts -------------------------------------------------------------------------------- /src/theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/theme/colors.ts -------------------------------------------------------------------------------- /src/theme/other.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/theme/other.ts -------------------------------------------------------------------------------- /src/theme/overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/theme/overrides.ts -------------------------------------------------------------------------------- /src/theme/palette.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/theme/palette.ts -------------------------------------------------------------------------------- /src/theme/props.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/theme/props.tsx -------------------------------------------------------------------------------- /src/theme/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/theme/theme.ts -------------------------------------------------------------------------------- /src/theme/themeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/theme/themeUtils.ts -------------------------------------------------------------------------------- /src/theme/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/theme/typography.ts -------------------------------------------------------------------------------- /src/utils/arrays.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/arrays.test.ts -------------------------------------------------------------------------------- /src/utils/arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/arrays.ts -------------------------------------------------------------------------------- /src/utils/assetsConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/assetsConfig.ts -------------------------------------------------------------------------------- /src/utils/cartesian.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/cartesian.test.ts -------------------------------------------------------------------------------- /src/utils/cartesian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/cartesian.ts -------------------------------------------------------------------------------- /src/utils/chainsConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/chainsConfig.ts -------------------------------------------------------------------------------- /src/utils/converters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/converters.test.ts -------------------------------------------------------------------------------- /src/utils/converters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/converters.ts -------------------------------------------------------------------------------- /src/utils/copyToClipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/copyToClipboard.tsx -------------------------------------------------------------------------------- /src/utils/dates.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/dates.test.ts -------------------------------------------------------------------------------- /src/utils/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/dates.ts -------------------------------------------------------------------------------- /src/utils/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/debug.ts -------------------------------------------------------------------------------- /src/utils/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/fetch.ts -------------------------------------------------------------------------------- /src/utils/formatters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/formatters.test.ts -------------------------------------------------------------------------------- /src/utils/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/formatters.ts -------------------------------------------------------------------------------- /src/utils/icons.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/icons.test.ts -------------------------------------------------------------------------------- /src/utils/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/icons.ts -------------------------------------------------------------------------------- /src/utils/missingTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/missingTypes.ts -------------------------------------------------------------------------------- /src/utils/networksConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/networksConfig.ts -------------------------------------------------------------------------------- /src/utils/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/numbers.ts -------------------------------------------------------------------------------- /src/utils/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/objects.ts -------------------------------------------------------------------------------- /src/utils/propsUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/propsUtils.ts -------------------------------------------------------------------------------- /src/utils/strings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/strings.test.ts -------------------------------------------------------------------------------- /src/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/strings.ts -------------------------------------------------------------------------------- /src/utils/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/time.ts -------------------------------------------------------------------------------- /src/utils/walletsConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/src/utils/walletsConfig.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renproject/bridge-v2/HEAD/yarn.lock --------------------------------------------------------------------------------