├── .babelrc ├── .env ├── .eslintrc ├── .git-commit-template.txt ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── jsconfig.json ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── __test__ ├── .eslintrc └── unit │ ├── Utils.spec.js │ ├── action │ ├── DataStorage.spec.js │ ├── GenerateKeys.spec.js │ ├── LandingPage.spec.js │ ├── RefundActions.spec.js │ ├── ReverseActions.spec.js │ └── SwapActions.spec.js │ └── reducers │ ├── DataStorageReducer.spec.js │ ├── LandingPage.spec.js │ ├── RefundReducer.spec.js │ ├── ReverseReducer.spec.js │ └── SwapReducer.spec.js ├── actions ├── datastorageActions.js ├── index.js ├── keys.js ├── landingPageActions.js ├── navigation.js ├── refundActions.js ├── reverseActions.js └── swapActions.js ├── asset └── icons │ ├── boltz_logo.png │ └── camera_icon.svg ├── components ├── background │ └── index.js ├── button │ └── index.js ├── confetti │ └── index.js ├── controls │ └── index.js ├── detectresize │ └── index.js ├── dropdown │ └── index.js ├── dropzone │ └── index.js ├── fileupload │ └── index.js ├── input │ └── index.js ├── inputarea │ └── index.js ├── link │ └── index.js ├── loading │ └── index.js ├── modal │ └── index.js ├── modalcontent │ └── index.js ├── navigationbar │ ├── desktopnavigationbar.js │ ├── index.js │ └── mobilenavigationbar.js ├── nodeinfo │ └── index.js ├── progressbar │ └── index.js ├── prompt │ └── index.js ├── qrcode │ └── index.js ├── question │ └── index.js ├── stepswizard │ ├── controls.js │ ├── index.js │ └── steps.js ├── swaptab │ ├── desktopswaptab.js │ ├── index.js │ ├── mobileswaptab.js │ └── swaptabwrapper.js ├── text │ └── index.js └── view │ └── index.js ├── constants ├── actions │ └── index.js ├── history │ └── index.js ├── index.js ├── messages.js ├── routes │ └── index.js └── theme │ ├── colors.js │ ├── font.js │ └── index.js ├── hoc └── platformSelector.js ├── index.css ├── index.js ├── reducers ├── datastorageReducer.js ├── landingpageReducer.js ├── refundReducer.js ├── reverseReducer.js └── swapReducer.js ├── serviceWorker.js ├── state ├── index.js └── rootReducer.js ├── utils ├── index.js └── refundUtils.js └── views ├── faq └── index.js ├── index.js ├── landingpage ├── index.js ├── landingPageDesktop.js ├── landingPageMobile.js └── landingPageWrapper.js ├── refund ├── index.js ├── refund.js └── steps │ ├── InputDestinationAddress.js │ ├── completeRefund.js │ ├── index.js │ └── uploadRefundFile.js ├── reverse ├── index.js ├── reverse.js └── steps │ ├── index.js │ ├── inputAddress.js │ ├── lockingFunds.js │ └── payInvoice.js ├── reversetimelock ├── ReverseSwapTimelockExpired.js └── index.js └── swap ├── index.js ├── steps ├── downloadRefund.js ├── index.js ├── inputInvoice.js └── sendTransaction.js └── swap.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/.babelrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/.eslintrc -------------------------------------------------------------------------------- /.git-commit-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/.git-commit-template.txt -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/__test__/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/__test__/.eslintrc -------------------------------------------------------------------------------- /src/__test__/unit/Utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/__test__/unit/Utils.spec.js -------------------------------------------------------------------------------- /src/__test__/unit/action/DataStorage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/__test__/unit/action/DataStorage.spec.js -------------------------------------------------------------------------------- /src/__test__/unit/action/GenerateKeys.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/__test__/unit/action/GenerateKeys.spec.js -------------------------------------------------------------------------------- /src/__test__/unit/action/LandingPage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/__test__/unit/action/LandingPage.spec.js -------------------------------------------------------------------------------- /src/__test__/unit/action/RefundActions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/__test__/unit/action/RefundActions.spec.js -------------------------------------------------------------------------------- /src/__test__/unit/action/ReverseActions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/__test__/unit/action/ReverseActions.spec.js -------------------------------------------------------------------------------- /src/__test__/unit/action/SwapActions.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/__test__/unit/action/SwapActions.spec.js -------------------------------------------------------------------------------- /src/__test__/unit/reducers/DataStorageReducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/__test__/unit/reducers/DataStorageReducer.spec.js -------------------------------------------------------------------------------- /src/__test__/unit/reducers/LandingPage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/__test__/unit/reducers/LandingPage.spec.js -------------------------------------------------------------------------------- /src/__test__/unit/reducers/RefundReducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/__test__/unit/reducers/RefundReducer.spec.js -------------------------------------------------------------------------------- /src/__test__/unit/reducers/ReverseReducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/__test__/unit/reducers/ReverseReducer.spec.js -------------------------------------------------------------------------------- /src/__test__/unit/reducers/SwapReducer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/__test__/unit/reducers/SwapReducer.spec.js -------------------------------------------------------------------------------- /src/actions/datastorageActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/actions/datastorageActions.js -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/actions/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/actions/keys.js -------------------------------------------------------------------------------- /src/actions/landingPageActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/actions/landingPageActions.js -------------------------------------------------------------------------------- /src/actions/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/actions/navigation.js -------------------------------------------------------------------------------- /src/actions/refundActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/actions/refundActions.js -------------------------------------------------------------------------------- /src/actions/reverseActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/actions/reverseActions.js -------------------------------------------------------------------------------- /src/actions/swapActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/actions/swapActions.js -------------------------------------------------------------------------------- /src/asset/icons/boltz_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/asset/icons/boltz_logo.png -------------------------------------------------------------------------------- /src/asset/icons/camera_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/asset/icons/camera_icon.svg -------------------------------------------------------------------------------- /src/components/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/background/index.js -------------------------------------------------------------------------------- /src/components/button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/button/index.js -------------------------------------------------------------------------------- /src/components/confetti/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/confetti/index.js -------------------------------------------------------------------------------- /src/components/controls/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/controls/index.js -------------------------------------------------------------------------------- /src/components/detectresize/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/detectresize/index.js -------------------------------------------------------------------------------- /src/components/dropdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/dropdown/index.js -------------------------------------------------------------------------------- /src/components/dropzone/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/dropzone/index.js -------------------------------------------------------------------------------- /src/components/fileupload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/fileupload/index.js -------------------------------------------------------------------------------- /src/components/input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/input/index.js -------------------------------------------------------------------------------- /src/components/inputarea/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/inputarea/index.js -------------------------------------------------------------------------------- /src/components/link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/link/index.js -------------------------------------------------------------------------------- /src/components/loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/loading/index.js -------------------------------------------------------------------------------- /src/components/modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/modal/index.js -------------------------------------------------------------------------------- /src/components/modalcontent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/modalcontent/index.js -------------------------------------------------------------------------------- /src/components/navigationbar/desktopnavigationbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/navigationbar/desktopnavigationbar.js -------------------------------------------------------------------------------- /src/components/navigationbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/navigationbar/index.js -------------------------------------------------------------------------------- /src/components/navigationbar/mobilenavigationbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/navigationbar/mobilenavigationbar.js -------------------------------------------------------------------------------- /src/components/nodeinfo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/nodeinfo/index.js -------------------------------------------------------------------------------- /src/components/progressbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/progressbar/index.js -------------------------------------------------------------------------------- /src/components/prompt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/prompt/index.js -------------------------------------------------------------------------------- /src/components/qrcode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/qrcode/index.js -------------------------------------------------------------------------------- /src/components/question/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/question/index.js -------------------------------------------------------------------------------- /src/components/stepswizard/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/stepswizard/controls.js -------------------------------------------------------------------------------- /src/components/stepswizard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/stepswizard/index.js -------------------------------------------------------------------------------- /src/components/stepswizard/steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/stepswizard/steps.js -------------------------------------------------------------------------------- /src/components/swaptab/desktopswaptab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/swaptab/desktopswaptab.js -------------------------------------------------------------------------------- /src/components/swaptab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/swaptab/index.js -------------------------------------------------------------------------------- /src/components/swaptab/mobileswaptab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/swaptab/mobileswaptab.js -------------------------------------------------------------------------------- /src/components/swaptab/swaptabwrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/swaptab/swaptabwrapper.js -------------------------------------------------------------------------------- /src/components/text/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/text/index.js -------------------------------------------------------------------------------- /src/components/view/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/components/view/index.js -------------------------------------------------------------------------------- /src/constants/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/constants/actions/index.js -------------------------------------------------------------------------------- /src/constants/history/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/constants/history/index.js -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/constants/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/constants/messages.js -------------------------------------------------------------------------------- /src/constants/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/constants/routes/index.js -------------------------------------------------------------------------------- /src/constants/theme/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/constants/theme/colors.js -------------------------------------------------------------------------------- /src/constants/theme/font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/constants/theme/font.js -------------------------------------------------------------------------------- /src/constants/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/constants/theme/index.js -------------------------------------------------------------------------------- /src/hoc/platformSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/hoc/platformSelector.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/datastorageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/reducers/datastorageReducer.js -------------------------------------------------------------------------------- /src/reducers/landingpageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/reducers/landingpageReducer.js -------------------------------------------------------------------------------- /src/reducers/refundReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/reducers/refundReducer.js -------------------------------------------------------------------------------- /src/reducers/reverseReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/reducers/reverseReducer.js -------------------------------------------------------------------------------- /src/reducers/swapReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/reducers/swapReducer.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/state/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/state/index.js -------------------------------------------------------------------------------- /src/state/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/state/rootReducer.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/refundUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/utils/refundUtils.js -------------------------------------------------------------------------------- /src/views/faq/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/faq/index.js -------------------------------------------------------------------------------- /src/views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/index.js -------------------------------------------------------------------------------- /src/views/landingpage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/landingpage/index.js -------------------------------------------------------------------------------- /src/views/landingpage/landingPageDesktop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/landingpage/landingPageDesktop.js -------------------------------------------------------------------------------- /src/views/landingpage/landingPageMobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/landingpage/landingPageMobile.js -------------------------------------------------------------------------------- /src/views/landingpage/landingPageWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/landingpage/landingPageWrapper.js -------------------------------------------------------------------------------- /src/views/refund/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/refund/index.js -------------------------------------------------------------------------------- /src/views/refund/refund.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/refund/refund.js -------------------------------------------------------------------------------- /src/views/refund/steps/InputDestinationAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/refund/steps/InputDestinationAddress.js -------------------------------------------------------------------------------- /src/views/refund/steps/completeRefund.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/refund/steps/completeRefund.js -------------------------------------------------------------------------------- /src/views/refund/steps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/refund/steps/index.js -------------------------------------------------------------------------------- /src/views/refund/steps/uploadRefundFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/refund/steps/uploadRefundFile.js -------------------------------------------------------------------------------- /src/views/reverse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/reverse/index.js -------------------------------------------------------------------------------- /src/views/reverse/reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/reverse/reverse.js -------------------------------------------------------------------------------- /src/views/reverse/steps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/reverse/steps/index.js -------------------------------------------------------------------------------- /src/views/reverse/steps/inputAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/reverse/steps/inputAddress.js -------------------------------------------------------------------------------- /src/views/reverse/steps/lockingFunds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/reverse/steps/lockingFunds.js -------------------------------------------------------------------------------- /src/views/reverse/steps/payInvoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/reverse/steps/payInvoice.js -------------------------------------------------------------------------------- /src/views/reversetimelock/ReverseSwapTimelockExpired.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/reversetimelock/ReverseSwapTimelockExpired.js -------------------------------------------------------------------------------- /src/views/reversetimelock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/reversetimelock/index.js -------------------------------------------------------------------------------- /src/views/swap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/swap/index.js -------------------------------------------------------------------------------- /src/views/swap/steps/downloadRefund.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/swap/steps/downloadRefund.js -------------------------------------------------------------------------------- /src/views/swap/steps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/swap/steps/index.js -------------------------------------------------------------------------------- /src/views/swap/steps/inputInvoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/swap/steps/inputInvoice.js -------------------------------------------------------------------------------- /src/views/swap/steps/sendTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/swap/steps/sendTransaction.js -------------------------------------------------------------------------------- /src/views/swap/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BoltzExchange/boltz-frontend/HEAD/src/views/swap/swap.js --------------------------------------------------------------------------------