├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── COPYRIGHT ├── GIT-MAGIC.md ├── LICENSE ├── Makefile ├── README.md ├── config-template.xml ├── css ├── amount.css ├── base.css ├── buttons.css ├── fonts.css ├── forms.css ├── header.css ├── menu.css ├── number-pad.css ├── page.css ├── payment-method.css ├── reset.css ├── responsive │ ├── high-resolution.css │ └── landscape.css ├── result-indicator.css ├── secondary-controls.css ├── slider.css ├── themes │ └── dark.css └── views │ ├── admin-payment-method-settings.css │ ├── admin.css │ ├── choose-payment-method.css │ ├── display-payment-address.css │ ├── enter-pin.css │ ├── export-payment-history-dialog.css │ ├── getting-started.css │ ├── pay.css │ ├── payment-details.css │ ├── payment-history.css │ ├── payment-replaceable.css │ ├── payment-status.css │ ├── recommended-mobile-wallets.css │ ├── sample-addresses.css │ └── screen-saver.css ├── docs └── how-to-configure-for-lightning-network.md ├── exports ├── buffer.js └── querystring.js ├── html ├── app.html ├── favicon.html └── templates │ ├── about.html │ ├── admin-general-settings.html │ ├── admin-payment-method-settings.html │ ├── admin.html │ ├── amount.html │ ├── enter-pin.html │ ├── export-payment-history-dialog.html │ ├── form-field-row.html │ ├── form-field.html │ ├── getting-started-choose-payment-methods.html │ ├── getting-started-done.html │ ├── getting-started-general-settings.html │ ├── getting-started-payment-method-settings.html │ ├── getting-started-welcome.html │ ├── getting-started.html │ ├── language-menu.html │ ├── more-menu.html │ ├── number-pad.html │ ├── pay-address.html │ ├── pay-choose-method.html │ ├── pay-enter-amount.html │ ├── payment-details.html │ ├── payment-history-list-item.html │ ├── payment-history.html │ ├── payment-replaceable.html │ ├── payment-status.html │ ├── recommended-mobile-wallets.html │ ├── sample-addresses.html │ ├── screen-saver.html │ ├── slider-item.html │ └── slider.html ├── images ├── app-loading-dark.svg ├── app-loading.svg ├── back.svg ├── bitcoin-lightning.svg ├── bitcoin.svg ├── busy-dark.gif ├── busy.gif ├── camera-light.svg ├── camera.svg ├── cancel.svg ├── checkmark.svg ├── continue.svg ├── download.svg ├── export.svg ├── favicon.png ├── favicon.svg ├── favicon │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── favicon-128.png │ ├── favicon-16x16.png │ ├── favicon-196x196.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon-android-hdpi.png │ ├── favicon-android-ldpi.png │ ├── favicon-android-mdpi.png │ ├── favicon-android-xhdpi.png │ ├── favicon-android-xxhdpi.png │ ├── favicon-android-xxxhdpi.png │ ├── favicon.ico │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ └── mstile-70x70.png ├── gear.svg ├── home.svg ├── lightning.svg ├── litecoin.svg ├── lock-closed.svg ├── lock-open.svg ├── number-pad.svg ├── offline.svg ├── qrcode.svg └── question.svg ├── index.html ├── js ├── abstracts │ ├── base-collection.js │ ├── base-model.js │ ├── base-view.js │ ├── electrum-service.js │ ├── json-rpc-tcp-socket-client.js │ └── payment-method.js ├── app.js ├── cache.js ├── collections │ ├── payment-requests.js │ └── settings.js ├── config.js ├── device.js ├── handlebars.extend │ ├── i18n.js │ ├── numbers.js │ ├── switch.js │ └── time.js ├── i18n.js ├── init.js ├── jquery.extend │ └── jquery.serializeJSON.js ├── lang │ ├── cs.js │ ├── de.js │ ├── en.js │ ├── es.js │ └── fr.js ├── models │ ├── cache.js │ ├── payment-request.js │ └── setting.js ├── nfc.js ├── payment-methods │ ├── bitcoin-lightning.js │ ├── bitcoin-testnet.js │ ├── bitcoin.js │ └── litecoin.js ├── queues.js ├── router.js ├── screen-saver.js ├── services │ └── exchange-rates.js ├── settings.js ├── sound.js ├── util.js └── views │ ├── about.js │ ├── admin-general-settings.js │ ├── admin-payment-method-settings.js │ ├── admin.js │ ├── choose-payment-method.js │ ├── display-payment-address.js │ ├── enter-pin.js │ ├── export-payment-history-dialog.js │ ├── getting-started-choose-payment-methods.js │ ├── getting-started-done.js │ ├── getting-started-general-settings.js │ ├── getting-started-payment-method-settings.js │ ├── getting-started-welcome.js │ ├── getting-started.js │ ├── language-menu.js │ ├── main.js │ ├── more-menu.js │ ├── number-pad.js │ ├── pay.js │ ├── payment-details.js │ ├── payment-history-list-item.js │ ├── payment-history.js │ ├── payment-replaceable.js │ ├── payment-status.js │ ├── recommended-mobile-wallets.js │ ├── sample-addresses.js │ ├── screen-saver.js │ ├── slider.js │ └── utility │ ├── form.js │ ├── list-item.js │ └── list.js ├── package.json ├── play-store-assets ├── featured-graphic.png ├── hi-res-icon.png ├── long-description.html └── screenshots │ ├── screenshot1.png │ ├── screenshot2.png │ └── screenshot3.png ├── postcss.config.js ├── scripts ├── build-signed-apk.sh ├── copy-config-xml.js ├── copy-index-html.js ├── fdroid-release.sh ├── lnd-proxy.js └── loadPaymentRequestHistory.js ├── sounds ├── pay-fail-01.mp3 ├── pay-fail-01.ogg ├── pay-success-01.mp3 └── pay-success-01.ogg └── test ├── e2e ├── global-hooks.js ├── helpers.js └── screens │ ├── choose-payment-method.js │ ├── display-payment-address.js │ ├── enter-amount.js │ ├── payment-replaceable.js │ └── payment-status │ ├── bitcoin-lightning.js │ └── bitcoin.js ├── global-hooks.js ├── manager.js ├── screenshots ├── global-hooks.js └── screens │ ├── choose-payment-method.js │ ├── display-payment-address.js │ └── payment-status.js └── unit ├── global-hooks.js ├── payment-methods ├── bitcoin.js ├── bitcoinTestnet.js └── litecoin.js └── services └── exchange-rates.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /GIT-MAGIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/GIT-MAGIC.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/README.md -------------------------------------------------------------------------------- /config-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/config-template.xml -------------------------------------------------------------------------------- /css/amount.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/amount.css -------------------------------------------------------------------------------- /css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/base.css -------------------------------------------------------------------------------- /css/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/buttons.css -------------------------------------------------------------------------------- /css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/fonts.css -------------------------------------------------------------------------------- /css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/forms.css -------------------------------------------------------------------------------- /css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/header.css -------------------------------------------------------------------------------- /css/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/menu.css -------------------------------------------------------------------------------- /css/number-pad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/number-pad.css -------------------------------------------------------------------------------- /css/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/page.css -------------------------------------------------------------------------------- /css/payment-method.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/payment-method.css -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/reset.css -------------------------------------------------------------------------------- /css/responsive/high-resolution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/responsive/high-resolution.css -------------------------------------------------------------------------------- /css/responsive/landscape.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/responsive/landscape.css -------------------------------------------------------------------------------- /css/result-indicator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/result-indicator.css -------------------------------------------------------------------------------- /css/secondary-controls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/secondary-controls.css -------------------------------------------------------------------------------- /css/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/slider.css -------------------------------------------------------------------------------- /css/themes/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/themes/dark.css -------------------------------------------------------------------------------- /css/views/admin-payment-method-settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/admin-payment-method-settings.css -------------------------------------------------------------------------------- /css/views/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/admin.css -------------------------------------------------------------------------------- /css/views/choose-payment-method.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/choose-payment-method.css -------------------------------------------------------------------------------- /css/views/display-payment-address.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/display-payment-address.css -------------------------------------------------------------------------------- /css/views/enter-pin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/enter-pin.css -------------------------------------------------------------------------------- /css/views/export-payment-history-dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/export-payment-history-dialog.css -------------------------------------------------------------------------------- /css/views/getting-started.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/getting-started.css -------------------------------------------------------------------------------- /css/views/pay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/pay.css -------------------------------------------------------------------------------- /css/views/payment-details.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/payment-details.css -------------------------------------------------------------------------------- /css/views/payment-history.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/payment-history.css -------------------------------------------------------------------------------- /css/views/payment-replaceable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/payment-replaceable.css -------------------------------------------------------------------------------- /css/views/payment-status.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/payment-status.css -------------------------------------------------------------------------------- /css/views/recommended-mobile-wallets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/recommended-mobile-wallets.css -------------------------------------------------------------------------------- /css/views/sample-addresses.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/sample-addresses.css -------------------------------------------------------------------------------- /css/views/screen-saver.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/css/views/screen-saver.css -------------------------------------------------------------------------------- /docs/how-to-configure-for-lightning-network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/docs/how-to-configure-for-lightning-network.md -------------------------------------------------------------------------------- /exports/buffer.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = Buffer; 4 | -------------------------------------------------------------------------------- /exports/querystring.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('querystring'); 4 | -------------------------------------------------------------------------------- /html/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/app.html -------------------------------------------------------------------------------- /html/favicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/favicon.html -------------------------------------------------------------------------------- /html/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/about.html -------------------------------------------------------------------------------- /html/templates/admin-general-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/admin-general-settings.html -------------------------------------------------------------------------------- /html/templates/admin-payment-method-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/admin-payment-method-settings.html -------------------------------------------------------------------------------- /html/templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/admin.html -------------------------------------------------------------------------------- /html/templates/amount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/amount.html -------------------------------------------------------------------------------- /html/templates/enter-pin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/enter-pin.html -------------------------------------------------------------------------------- /html/templates/export-payment-history-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/export-payment-history-dialog.html -------------------------------------------------------------------------------- /html/templates/form-field-row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/form-field-row.html -------------------------------------------------------------------------------- /html/templates/form-field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/form-field.html -------------------------------------------------------------------------------- /html/templates/getting-started-choose-payment-methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/getting-started-choose-payment-methods.html -------------------------------------------------------------------------------- /html/templates/getting-started-done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/getting-started-done.html -------------------------------------------------------------------------------- /html/templates/getting-started-general-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/getting-started-general-settings.html -------------------------------------------------------------------------------- /html/templates/getting-started-payment-method-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/getting-started-payment-method-settings.html -------------------------------------------------------------------------------- /html/templates/getting-started-welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/getting-started-welcome.html -------------------------------------------------------------------------------- /html/templates/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/getting-started.html -------------------------------------------------------------------------------- /html/templates/language-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/language-menu.html -------------------------------------------------------------------------------- /html/templates/more-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/more-menu.html -------------------------------------------------------------------------------- /html/templates/number-pad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/number-pad.html -------------------------------------------------------------------------------- /html/templates/pay-address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/pay-address.html -------------------------------------------------------------------------------- /html/templates/pay-choose-method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/pay-choose-method.html -------------------------------------------------------------------------------- /html/templates/pay-enter-amount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/pay-enter-amount.html -------------------------------------------------------------------------------- /html/templates/payment-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/payment-details.html -------------------------------------------------------------------------------- /html/templates/payment-history-list-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/payment-history-list-item.html -------------------------------------------------------------------------------- /html/templates/payment-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/payment-history.html -------------------------------------------------------------------------------- /html/templates/payment-replaceable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/payment-replaceable.html -------------------------------------------------------------------------------- /html/templates/payment-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/payment-status.html -------------------------------------------------------------------------------- /html/templates/recommended-mobile-wallets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/recommended-mobile-wallets.html -------------------------------------------------------------------------------- /html/templates/sample-addresses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/sample-addresses.html -------------------------------------------------------------------------------- /html/templates/screen-saver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/screen-saver.html -------------------------------------------------------------------------------- /html/templates/slider-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/slider-item.html -------------------------------------------------------------------------------- /html/templates/slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/html/templates/slider.html -------------------------------------------------------------------------------- /images/app-loading-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/app-loading-dark.svg -------------------------------------------------------------------------------- /images/app-loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/app-loading.svg -------------------------------------------------------------------------------- /images/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/back.svg -------------------------------------------------------------------------------- /images/bitcoin-lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/bitcoin-lightning.svg -------------------------------------------------------------------------------- /images/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/bitcoin.svg -------------------------------------------------------------------------------- /images/busy-dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/busy-dark.gif -------------------------------------------------------------------------------- /images/busy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/busy.gif -------------------------------------------------------------------------------- /images/camera-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/camera-light.svg -------------------------------------------------------------------------------- /images/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/camera.svg -------------------------------------------------------------------------------- /images/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/cancel.svg -------------------------------------------------------------------------------- /images/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/checkmark.svg -------------------------------------------------------------------------------- /images/continue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/continue.svg -------------------------------------------------------------------------------- /images/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/download.svg -------------------------------------------------------------------------------- /images/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/export.svg -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon.png -------------------------------------------------------------------------------- /images/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon.svg -------------------------------------------------------------------------------- /images/favicon/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /images/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /images/favicon/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /images/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /images/favicon/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /images/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /images/favicon/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /images/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /images/favicon/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/favicon-128.png -------------------------------------------------------------------------------- /images/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /images/favicon/favicon-196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/favicon-196x196.png -------------------------------------------------------------------------------- /images/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /images/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /images/favicon/favicon-android-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/favicon-android-hdpi.png -------------------------------------------------------------------------------- /images/favicon/favicon-android-ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/favicon-android-ldpi.png -------------------------------------------------------------------------------- /images/favicon/favicon-android-mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/favicon-android-mdpi.png -------------------------------------------------------------------------------- /images/favicon/favicon-android-xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/favicon-android-xhdpi.png -------------------------------------------------------------------------------- /images/favicon/favicon-android-xxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/favicon-android-xxhdpi.png -------------------------------------------------------------------------------- /images/favicon/favicon-android-xxxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/favicon-android-xxxhdpi.png -------------------------------------------------------------------------------- /images/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/favicon.ico -------------------------------------------------------------------------------- /images/favicon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/mstile-144x144.png -------------------------------------------------------------------------------- /images/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /images/favicon/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/mstile-310x150.png -------------------------------------------------------------------------------- /images/favicon/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/mstile-310x310.png -------------------------------------------------------------------------------- /images/favicon/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/favicon/mstile-70x70.png -------------------------------------------------------------------------------- /images/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/gear.svg -------------------------------------------------------------------------------- /images/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/home.svg -------------------------------------------------------------------------------- /images/lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/lightning.svg -------------------------------------------------------------------------------- /images/litecoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/litecoin.svg -------------------------------------------------------------------------------- /images/lock-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/lock-closed.svg -------------------------------------------------------------------------------- /images/lock-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/lock-open.svg -------------------------------------------------------------------------------- /images/number-pad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/number-pad.svg -------------------------------------------------------------------------------- /images/offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/offline.svg -------------------------------------------------------------------------------- /images/qrcode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/qrcode.svg -------------------------------------------------------------------------------- /images/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/images/question.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/index.html -------------------------------------------------------------------------------- /js/abstracts/base-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/abstracts/base-collection.js -------------------------------------------------------------------------------- /js/abstracts/base-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/abstracts/base-model.js -------------------------------------------------------------------------------- /js/abstracts/base-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/abstracts/base-view.js -------------------------------------------------------------------------------- /js/abstracts/electrum-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/abstracts/electrum-service.js -------------------------------------------------------------------------------- /js/abstracts/json-rpc-tcp-socket-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/abstracts/json-rpc-tcp-socket-client.js -------------------------------------------------------------------------------- /js/abstracts/payment-method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/abstracts/payment-method.js -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/app.js -------------------------------------------------------------------------------- /js/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/cache.js -------------------------------------------------------------------------------- /js/collections/payment-requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/collections/payment-requests.js -------------------------------------------------------------------------------- /js/collections/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/collections/settings.js -------------------------------------------------------------------------------- /js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/config.js -------------------------------------------------------------------------------- /js/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/device.js -------------------------------------------------------------------------------- /js/handlebars.extend/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/handlebars.extend/i18n.js -------------------------------------------------------------------------------- /js/handlebars.extend/numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/handlebars.extend/numbers.js -------------------------------------------------------------------------------- /js/handlebars.extend/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/handlebars.extend/switch.js -------------------------------------------------------------------------------- /js/handlebars.extend/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/handlebars.extend/time.js -------------------------------------------------------------------------------- /js/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/i18n.js -------------------------------------------------------------------------------- /js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/init.js -------------------------------------------------------------------------------- /js/jquery.extend/jquery.serializeJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/jquery.extend/jquery.serializeJSON.js -------------------------------------------------------------------------------- /js/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/lang/cs.js -------------------------------------------------------------------------------- /js/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/lang/de.js -------------------------------------------------------------------------------- /js/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/lang/en.js -------------------------------------------------------------------------------- /js/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/lang/es.js -------------------------------------------------------------------------------- /js/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/lang/fr.js -------------------------------------------------------------------------------- /js/models/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/models/cache.js -------------------------------------------------------------------------------- /js/models/payment-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/models/payment-request.js -------------------------------------------------------------------------------- /js/models/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/models/setting.js -------------------------------------------------------------------------------- /js/nfc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/nfc.js -------------------------------------------------------------------------------- /js/payment-methods/bitcoin-lightning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/payment-methods/bitcoin-lightning.js -------------------------------------------------------------------------------- /js/payment-methods/bitcoin-testnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/payment-methods/bitcoin-testnet.js -------------------------------------------------------------------------------- /js/payment-methods/bitcoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/payment-methods/bitcoin.js -------------------------------------------------------------------------------- /js/payment-methods/litecoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/payment-methods/litecoin.js -------------------------------------------------------------------------------- /js/queues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/queues.js -------------------------------------------------------------------------------- /js/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/router.js -------------------------------------------------------------------------------- /js/screen-saver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/screen-saver.js -------------------------------------------------------------------------------- /js/services/exchange-rates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/services/exchange-rates.js -------------------------------------------------------------------------------- /js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/settings.js -------------------------------------------------------------------------------- /js/sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/sound.js -------------------------------------------------------------------------------- /js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/util.js -------------------------------------------------------------------------------- /js/views/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/about.js -------------------------------------------------------------------------------- /js/views/admin-general-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/admin-general-settings.js -------------------------------------------------------------------------------- /js/views/admin-payment-method-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/admin-payment-method-settings.js -------------------------------------------------------------------------------- /js/views/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/admin.js -------------------------------------------------------------------------------- /js/views/choose-payment-method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/choose-payment-method.js -------------------------------------------------------------------------------- /js/views/display-payment-address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/display-payment-address.js -------------------------------------------------------------------------------- /js/views/enter-pin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/enter-pin.js -------------------------------------------------------------------------------- /js/views/export-payment-history-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/export-payment-history-dialog.js -------------------------------------------------------------------------------- /js/views/getting-started-choose-payment-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/getting-started-choose-payment-methods.js -------------------------------------------------------------------------------- /js/views/getting-started-done.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/getting-started-done.js -------------------------------------------------------------------------------- /js/views/getting-started-general-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/getting-started-general-settings.js -------------------------------------------------------------------------------- /js/views/getting-started-payment-method-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/getting-started-payment-method-settings.js -------------------------------------------------------------------------------- /js/views/getting-started-welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/getting-started-welcome.js -------------------------------------------------------------------------------- /js/views/getting-started.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/getting-started.js -------------------------------------------------------------------------------- /js/views/language-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/language-menu.js -------------------------------------------------------------------------------- /js/views/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/main.js -------------------------------------------------------------------------------- /js/views/more-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/more-menu.js -------------------------------------------------------------------------------- /js/views/number-pad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/number-pad.js -------------------------------------------------------------------------------- /js/views/pay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/pay.js -------------------------------------------------------------------------------- /js/views/payment-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/payment-details.js -------------------------------------------------------------------------------- /js/views/payment-history-list-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/payment-history-list-item.js -------------------------------------------------------------------------------- /js/views/payment-history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/payment-history.js -------------------------------------------------------------------------------- /js/views/payment-replaceable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/payment-replaceable.js -------------------------------------------------------------------------------- /js/views/payment-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/payment-status.js -------------------------------------------------------------------------------- /js/views/recommended-mobile-wallets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/recommended-mobile-wallets.js -------------------------------------------------------------------------------- /js/views/sample-addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/sample-addresses.js -------------------------------------------------------------------------------- /js/views/screen-saver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/screen-saver.js -------------------------------------------------------------------------------- /js/views/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/slider.js -------------------------------------------------------------------------------- /js/views/utility/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/utility/form.js -------------------------------------------------------------------------------- /js/views/utility/list-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/utility/list-item.js -------------------------------------------------------------------------------- /js/views/utility/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/js/views/utility/list.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/package.json -------------------------------------------------------------------------------- /play-store-assets/featured-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/play-store-assets/featured-graphic.png -------------------------------------------------------------------------------- /play-store-assets/hi-res-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/play-store-assets/hi-res-icon.png -------------------------------------------------------------------------------- /play-store-assets/long-description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/play-store-assets/long-description.html -------------------------------------------------------------------------------- /play-store-assets/screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/play-store-assets/screenshots/screenshot1.png -------------------------------------------------------------------------------- /play-store-assets/screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/play-store-assets/screenshots/screenshot2.png -------------------------------------------------------------------------------- /play-store-assets/screenshots/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/play-store-assets/screenshots/screenshot3.png -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/postcss.config.js -------------------------------------------------------------------------------- /scripts/build-signed-apk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/scripts/build-signed-apk.sh -------------------------------------------------------------------------------- /scripts/copy-config-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/scripts/copy-config-xml.js -------------------------------------------------------------------------------- /scripts/copy-index-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/scripts/copy-index-html.js -------------------------------------------------------------------------------- /scripts/fdroid-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/scripts/fdroid-release.sh -------------------------------------------------------------------------------- /scripts/lnd-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/scripts/lnd-proxy.js -------------------------------------------------------------------------------- /scripts/loadPaymentRequestHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/scripts/loadPaymentRequestHistory.js -------------------------------------------------------------------------------- /sounds/pay-fail-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/sounds/pay-fail-01.mp3 -------------------------------------------------------------------------------- /sounds/pay-fail-01.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/sounds/pay-fail-01.ogg -------------------------------------------------------------------------------- /sounds/pay-success-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/sounds/pay-success-01.mp3 -------------------------------------------------------------------------------- /sounds/pay-success-01.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/sounds/pay-success-01.ogg -------------------------------------------------------------------------------- /test/e2e/global-hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/e2e/global-hooks.js -------------------------------------------------------------------------------- /test/e2e/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/e2e/helpers.js -------------------------------------------------------------------------------- /test/e2e/screens/choose-payment-method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/e2e/screens/choose-payment-method.js -------------------------------------------------------------------------------- /test/e2e/screens/display-payment-address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/e2e/screens/display-payment-address.js -------------------------------------------------------------------------------- /test/e2e/screens/enter-amount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/e2e/screens/enter-amount.js -------------------------------------------------------------------------------- /test/e2e/screens/payment-replaceable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/e2e/screens/payment-replaceable.js -------------------------------------------------------------------------------- /test/e2e/screens/payment-status/bitcoin-lightning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/e2e/screens/payment-status/bitcoin-lightning.js -------------------------------------------------------------------------------- /test/e2e/screens/payment-status/bitcoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/e2e/screens/payment-status/bitcoin.js -------------------------------------------------------------------------------- /test/global-hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/global-hooks.js -------------------------------------------------------------------------------- /test/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/manager.js -------------------------------------------------------------------------------- /test/screenshots/global-hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/screenshots/global-hooks.js -------------------------------------------------------------------------------- /test/screenshots/screens/choose-payment-method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/screenshots/screens/choose-payment-method.js -------------------------------------------------------------------------------- /test/screenshots/screens/display-payment-address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/screenshots/screens/display-payment-address.js -------------------------------------------------------------------------------- /test/screenshots/screens/payment-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/screenshots/screens/payment-status.js -------------------------------------------------------------------------------- /test/unit/global-hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/unit/global-hooks.js -------------------------------------------------------------------------------- /test/unit/payment-methods/bitcoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/unit/payment-methods/bitcoin.js -------------------------------------------------------------------------------- /test/unit/payment-methods/bitcoinTestnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/unit/payment-methods/bitcoinTestnet.js -------------------------------------------------------------------------------- /test/unit/payment-methods/litecoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/unit/payment-methods/litecoin.js -------------------------------------------------------------------------------- /test/unit/services/exchange-rates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samotari/crypto-terminal/HEAD/test/unit/services/exchange-rates.js --------------------------------------------------------------------------------