├── .dockerignore ├── .github └── workflows │ ├── on-push.yml │ └── on-tag.yml ├── .gitignore ├── .prettierrc.js ├── Dockerfile ├── LICENSE.legacy ├── LICENSE.md ├── README.md ├── apps ├── backend │ ├── app.js │ ├── bin │ │ └── www │ ├── logic │ │ ├── application.js │ │ ├── bitcoind.js │ │ ├── config.js │ │ ├── disk.js │ │ ├── lightning.js │ │ ├── network.js │ │ ├── pages.js │ │ ├── system.js │ │ └── widgets.js │ ├── middlewares │ │ ├── camelCaseRequest.js │ │ ├── cors.js │ │ ├── errorHandling.js │ │ └── requestCorrelationId.js │ ├── models │ │ └── errors.js │ ├── package-lock.json │ ├── package.json │ ├── resources │ │ ├── rpc.proto │ │ ├── watchtowerrpc.proto │ │ └── wtclientrpc.proto │ ├── routes │ │ ├── ping.js │ │ └── v1 │ │ │ ├── bitcoind │ │ │ └── info.js │ │ │ ├── external.js │ │ │ ├── lnd │ │ │ ├── address.js │ │ │ ├── backups.js │ │ │ ├── channel.js │ │ │ ├── conf.js │ │ │ ├── info.js │ │ │ ├── lightning.js │ │ │ ├── transaction.js │ │ │ ├── util.js │ │ │ ├── wallet.js │ │ │ ├── watchtower.js │ │ │ └── widgets.js │ │ │ ├── pages.js │ │ │ └── system │ │ │ └── index.js │ ├── services │ │ ├── bash.js │ │ ├── bitcoind.js │ │ ├── disk.js │ │ └── lnd.js │ └── utils │ │ ├── UUID.js │ │ ├── backups.js │ │ ├── channel-backup-monitor.js │ │ ├── const.js │ │ ├── convert.js │ │ ├── defaultConfig.js │ │ ├── deterministic-aezeed.js │ │ ├── lnd-config.js │ │ ├── lndConfMap.js │ │ ├── logger.js │ │ ├── safeHandler.js │ │ ├── stringToType.js │ │ └── validator.js └── frontend │ ├── .env │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── favicon.png │ ├── fonts │ │ ├── Inter-Black.woff │ │ ├── Inter-Black.woff2 │ │ ├── Inter-BlackItalic.woff │ │ ├── Inter-BlackItalic.woff2 │ │ ├── Inter-Bold.woff │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-BoldItalic.woff │ │ ├── Inter-BoldItalic.woff2 │ │ ├── Inter-ExtraBold.woff │ │ ├── Inter-ExtraBold.woff2 │ │ ├── Inter-ExtraBoldItalic.woff │ │ ├── Inter-ExtraBoldItalic.woff2 │ │ ├── Inter-ExtraLight.woff │ │ ├── Inter-ExtraLight.woff2 │ │ ├── Inter-ExtraLightItalic.woff │ │ ├── Inter-ExtraLightItalic.woff2 │ │ ├── Inter-Italic.woff │ │ ├── Inter-Italic.woff2 │ │ ├── Inter-Light.woff │ │ ├── Inter-Light.woff2 │ │ ├── Inter-LightItalic.woff │ │ ├── Inter-LightItalic.woff2 │ │ ├── Inter-Medium.woff │ │ ├── Inter-Medium.woff2 │ │ ├── Inter-MediumItalic.woff │ │ ├── Inter-MediumItalic.woff2 │ │ ├── Inter-Regular.woff │ │ ├── Inter-Regular.woff2 │ │ ├── Inter-SemiBold.woff │ │ ├── Inter-SemiBold.woff2 │ │ ├── Inter-SemiBoldItalic.woff │ │ ├── Inter-SemiBoldItalic.woff2 │ │ ├── Inter-Thin.woff │ │ ├── Inter-Thin.woff2 │ │ ├── Inter-ThinItalic.woff │ │ ├── Inter-ThinItalic.woff2 │ │ ├── Inter-italic.var.woff2 │ │ ├── Inter-roman.var.woff2 │ │ └── Inter.var.woff2 │ ├── icon-upload-arrows.svg │ └── index.html │ ├── src │ ├── App.vue │ ├── assets │ │ ├── icon-app-bitcoin.svg │ │ ├── icon-app-lightning.svg │ │ ├── icon-backup-file.svg │ │ ├── icon-bitcoin.svg │ │ ├── icon.svg │ │ ├── logo.svg │ │ ├── moon.svg │ │ ├── sun.svg │ │ └── umbrel-qr-icon.svg │ ├── components │ │ ├── BitcoinWallet.vue │ │ ├── CardWidget.vue │ │ ├── Channels │ │ │ ├── Bar.vue │ │ │ ├── Channel.vue │ │ │ ├── List.vue │ │ │ ├── Manage.vue │ │ │ └── Open.vue │ │ ├── LightningWallet.vue │ │ ├── Loading.vue │ │ ├── Template.vue │ │ ├── TotalBalance.vue │ │ └── Utility │ │ │ ├── CircularCheckmark.vue │ │ │ ├── CountUp.vue │ │ │ ├── FeeSelector.vue │ │ │ ├── InputCopy.vue │ │ │ ├── InputOtpToken.vue │ │ │ ├── InputPassword.vue │ │ │ ├── QrCode.vue │ │ │ ├── SatsBtcSwitch.vue │ │ │ ├── Seed.vue │ │ │ ├── SeedVerify.vue │ │ │ ├── Stat.vue │ │ │ ├── Status.vue │ │ │ └── ToggleSwitch.vue │ ├── global-styles │ │ ├── _variables.scss │ │ ├── custom.scss │ │ ├── design-system.scss │ │ ├── fonts.scss │ │ └── responsive.scss │ ├── helpers │ │ ├── api.js │ │ ├── bytes-to-hex.js │ │ ├── delay.js │ │ ├── size.js │ │ └── units.js │ ├── layouts │ │ └── Layout.vue │ ├── main.js │ ├── router │ │ └── index.js │ ├── store │ │ ├── index.js │ │ └── modules │ │ │ ├── bitcoin.js │ │ │ ├── lightning.js │ │ │ ├── system.js │ │ │ └── user.js │ └── views │ │ └── Home │ │ ├── AdvancedSettingsModal.vue │ │ ├── BitcoinSyncModal.vue │ │ ├── ConnectWalletModal.vue │ │ ├── Home.vue │ │ ├── NodeIdModal.vue │ │ ├── OnboardingModal │ │ ├── OnboardingModal.vue │ │ ├── RecoveryChannels.vue │ │ ├── RecoveryConfirmOpenChannels.vue │ │ ├── RecoveryEnterWords.vue │ │ ├── RecoveryLightningIsSyncing.vue │ │ ├── RecoverySelectBackupFile.vue │ │ ├── RecoveryUploadBackupFile.vue │ │ └── Welcome.vue │ │ ├── SecretWordsDisplay.vue │ │ ├── SecretWordsModal.vue │ │ ├── SecretWordsVerify.vue │ │ ├── Terms.vue │ │ └── TorBackupFailedModal.vue │ └── vue.config.js ├── docker-compose.yml ├── package.json ├── test.sh └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | **/node_modules -------------------------------------------------------------------------------- /.github/workflows/on-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/.github/workflows/on-push.yml -------------------------------------------------------------------------------- /.github/workflows/on-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/.github/workflows/on-tag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | apps/backend/logs 4 | .env.local 5 | 6 | data 7 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/LICENSE.legacy -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/README.md -------------------------------------------------------------------------------- /apps/backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/app.js -------------------------------------------------------------------------------- /apps/backend/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/bin/www -------------------------------------------------------------------------------- /apps/backend/logic/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/logic/application.js -------------------------------------------------------------------------------- /apps/backend/logic/bitcoind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/logic/bitcoind.js -------------------------------------------------------------------------------- /apps/backend/logic/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/logic/config.js -------------------------------------------------------------------------------- /apps/backend/logic/disk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/logic/disk.js -------------------------------------------------------------------------------- /apps/backend/logic/lightning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/logic/lightning.js -------------------------------------------------------------------------------- /apps/backend/logic/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/logic/network.js -------------------------------------------------------------------------------- /apps/backend/logic/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/logic/pages.js -------------------------------------------------------------------------------- /apps/backend/logic/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/logic/system.js -------------------------------------------------------------------------------- /apps/backend/logic/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/logic/widgets.js -------------------------------------------------------------------------------- /apps/backend/middlewares/camelCaseRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/middlewares/camelCaseRequest.js -------------------------------------------------------------------------------- /apps/backend/middlewares/cors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/middlewares/cors.js -------------------------------------------------------------------------------- /apps/backend/middlewares/errorHandling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/middlewares/errorHandling.js -------------------------------------------------------------------------------- /apps/backend/middlewares/requestCorrelationId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/middlewares/requestCorrelationId.js -------------------------------------------------------------------------------- /apps/backend/models/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/models/errors.js -------------------------------------------------------------------------------- /apps/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/package-lock.json -------------------------------------------------------------------------------- /apps/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/package.json -------------------------------------------------------------------------------- /apps/backend/resources/rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/resources/rpc.proto -------------------------------------------------------------------------------- /apps/backend/resources/watchtowerrpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/resources/watchtowerrpc.proto -------------------------------------------------------------------------------- /apps/backend/resources/wtclientrpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/resources/wtclientrpc.proto -------------------------------------------------------------------------------- /apps/backend/routes/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/ping.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/bitcoind/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/bitcoind/info.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/external.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/external.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/lnd/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/lnd/address.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/lnd/backups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/lnd/backups.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/lnd/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/lnd/channel.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/lnd/conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/lnd/conf.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/lnd/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/lnd/info.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/lnd/lightning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/lnd/lightning.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/lnd/transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/lnd/transaction.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/lnd/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/lnd/util.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/lnd/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/lnd/wallet.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/lnd/watchtower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/lnd/watchtower.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/lnd/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/lnd/widgets.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/pages.js -------------------------------------------------------------------------------- /apps/backend/routes/v1/system/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/routes/v1/system/index.js -------------------------------------------------------------------------------- /apps/backend/services/bash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/services/bash.js -------------------------------------------------------------------------------- /apps/backend/services/bitcoind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/services/bitcoind.js -------------------------------------------------------------------------------- /apps/backend/services/disk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/services/disk.js -------------------------------------------------------------------------------- /apps/backend/services/lnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/services/lnd.js -------------------------------------------------------------------------------- /apps/backend/utils/UUID.js: -------------------------------------------------------------------------------- 1 | const { v4 } = require("uuid"); 2 | 3 | module.exports = { 4 | create: v4, 5 | }; 6 | -------------------------------------------------------------------------------- /apps/backend/utils/backups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/utils/backups.js -------------------------------------------------------------------------------- /apps/backend/utils/channel-backup-monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/utils/channel-backup-monitor.js -------------------------------------------------------------------------------- /apps/backend/utils/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/utils/const.js -------------------------------------------------------------------------------- /apps/backend/utils/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/utils/convert.js -------------------------------------------------------------------------------- /apps/backend/utils/defaultConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/utils/defaultConfig.js -------------------------------------------------------------------------------- /apps/backend/utils/deterministic-aezeed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/utils/deterministic-aezeed.js -------------------------------------------------------------------------------- /apps/backend/utils/lnd-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/utils/lnd-config.js -------------------------------------------------------------------------------- /apps/backend/utils/lndConfMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/utils/lndConfMap.js -------------------------------------------------------------------------------- /apps/backend/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/utils/logger.js -------------------------------------------------------------------------------- /apps/backend/utils/safeHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/utils/safeHandler.js -------------------------------------------------------------------------------- /apps/backend/utils/stringToType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/utils/stringToType.js -------------------------------------------------------------------------------- /apps/backend/utils/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/backend/utils/validator.js -------------------------------------------------------------------------------- /apps/frontend/.env: -------------------------------------------------------------------------------- 1 | VUE_APP_API_BASE_URL= -------------------------------------------------------------------------------- /apps/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/package-lock.json -------------------------------------------------------------------------------- /apps/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/package.json -------------------------------------------------------------------------------- /apps/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/favicon.ico -------------------------------------------------------------------------------- /apps/frontend/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/favicon.png -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-Black.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-Black.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-Bold.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-Italic.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-Italic.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-Light.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-Light.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-LightItalic.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-Medium.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-Medium.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-Regular.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-SemiBold.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-Thin.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-Thin.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/fonts/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/fonts/Inter.var.woff2 -------------------------------------------------------------------------------- /apps/frontend/public/icon-upload-arrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/icon-upload-arrows.svg -------------------------------------------------------------------------------- /apps/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/public/index.html -------------------------------------------------------------------------------- /apps/frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/App.vue -------------------------------------------------------------------------------- /apps/frontend/src/assets/icon-app-bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/assets/icon-app-bitcoin.svg -------------------------------------------------------------------------------- /apps/frontend/src/assets/icon-app-lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/assets/icon-app-lightning.svg -------------------------------------------------------------------------------- /apps/frontend/src/assets/icon-backup-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/assets/icon-backup-file.svg -------------------------------------------------------------------------------- /apps/frontend/src/assets/icon-bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/assets/icon-bitcoin.svg -------------------------------------------------------------------------------- /apps/frontend/src/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/assets/icon.svg -------------------------------------------------------------------------------- /apps/frontend/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/assets/logo.svg -------------------------------------------------------------------------------- /apps/frontend/src/assets/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/assets/moon.svg -------------------------------------------------------------------------------- /apps/frontend/src/assets/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/assets/sun.svg -------------------------------------------------------------------------------- /apps/frontend/src/assets/umbrel-qr-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/assets/umbrel-qr-icon.svg -------------------------------------------------------------------------------- /apps/frontend/src/components/BitcoinWallet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/BitcoinWallet.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/CardWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/CardWidget.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Channels/Bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Channels/Bar.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Channels/Channel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Channels/Channel.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Channels/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Channels/List.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Channels/Manage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Channels/Manage.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Channels/Open.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Channels/Open.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/LightningWallet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/LightningWallet.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Loading.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Template.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Template.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/TotalBalance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/TotalBalance.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Utility/CircularCheckmark.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Utility/CircularCheckmark.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Utility/CountUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Utility/CountUp.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Utility/FeeSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Utility/FeeSelector.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Utility/InputCopy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Utility/InputCopy.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Utility/InputOtpToken.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Utility/InputOtpToken.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Utility/InputPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Utility/InputPassword.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Utility/QrCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Utility/QrCode.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Utility/SatsBtcSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Utility/SatsBtcSwitch.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Utility/Seed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Utility/Seed.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Utility/SeedVerify.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Utility/SeedVerify.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Utility/Stat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Utility/Stat.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Utility/Status.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Utility/Status.vue -------------------------------------------------------------------------------- /apps/frontend/src/components/Utility/ToggleSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/components/Utility/ToggleSwitch.vue -------------------------------------------------------------------------------- /apps/frontend/src/global-styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/global-styles/_variables.scss -------------------------------------------------------------------------------- /apps/frontend/src/global-styles/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/global-styles/custom.scss -------------------------------------------------------------------------------- /apps/frontend/src/global-styles/design-system.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/global-styles/design-system.scss -------------------------------------------------------------------------------- /apps/frontend/src/global-styles/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/global-styles/fonts.scss -------------------------------------------------------------------------------- /apps/frontend/src/global-styles/responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/global-styles/responsive.scss -------------------------------------------------------------------------------- /apps/frontend/src/helpers/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/helpers/api.js -------------------------------------------------------------------------------- /apps/frontend/src/helpers/bytes-to-hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/helpers/bytes-to-hex.js -------------------------------------------------------------------------------- /apps/frontend/src/helpers/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/helpers/delay.js -------------------------------------------------------------------------------- /apps/frontend/src/helpers/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/helpers/size.js -------------------------------------------------------------------------------- /apps/frontend/src/helpers/units.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/helpers/units.js -------------------------------------------------------------------------------- /apps/frontend/src/layouts/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/layouts/Layout.vue -------------------------------------------------------------------------------- /apps/frontend/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/main.js -------------------------------------------------------------------------------- /apps/frontend/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/router/index.js -------------------------------------------------------------------------------- /apps/frontend/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/store/index.js -------------------------------------------------------------------------------- /apps/frontend/src/store/modules/bitcoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/store/modules/bitcoin.js -------------------------------------------------------------------------------- /apps/frontend/src/store/modules/lightning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/store/modules/lightning.js -------------------------------------------------------------------------------- /apps/frontend/src/store/modules/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/store/modules/system.js -------------------------------------------------------------------------------- /apps/frontend/src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/store/modules/user.js -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/AdvancedSettingsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/AdvancedSettingsModal.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/BitcoinSyncModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/BitcoinSyncModal.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/ConnectWalletModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/ConnectWalletModal.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/Home.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/NodeIdModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/NodeIdModal.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/OnboardingModal/OnboardingModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/OnboardingModal/OnboardingModal.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/OnboardingModal/RecoveryChannels.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/OnboardingModal/RecoveryChannels.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/OnboardingModal/RecoveryConfirmOpenChannels.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/OnboardingModal/RecoveryConfirmOpenChannels.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/OnboardingModal/RecoveryEnterWords.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/OnboardingModal/RecoveryEnterWords.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/OnboardingModal/RecoveryLightningIsSyncing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/OnboardingModal/RecoveryLightningIsSyncing.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/OnboardingModal/RecoverySelectBackupFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/OnboardingModal/RecoverySelectBackupFile.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/OnboardingModal/RecoveryUploadBackupFile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/OnboardingModal/RecoveryUploadBackupFile.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/OnboardingModal/Welcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/OnboardingModal/Welcome.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/SecretWordsDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/SecretWordsDisplay.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/SecretWordsModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/SecretWordsModal.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/SecretWordsVerify.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/SecretWordsVerify.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/Terms.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/Terms.vue -------------------------------------------------------------------------------- /apps/frontend/src/views/Home/TorBackupFailedModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/src/views/Home/TorBackupFailedModal.vue -------------------------------------------------------------------------------- /apps/frontend/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/apps/frontend/vue.config.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/package.json -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/test.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getumbrel/umbrel-lightning/HEAD/yarn.lock --------------------------------------------------------------------------------