├── .babelrc ├── .dockerignore ├── .eslintrc ├── .github └── workflows │ ├── push.yml │ └── tag.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── bitcoin.js ├── btc-decoder.js ├── class ├── Invo.js ├── Lock.js ├── Paym.js ├── User.js └── index.js ├── config.js ├── controllers ├── api.js └── website.js ├── doc ├── Send-requirements.md ├── recover.md └── schema.md ├── index.js ├── lightning.js ├── package.json ├── rpc.proto ├── run-process-locked.sh ├── scripts ├── important-channels.js ├── migrate_addresses_to_other_bitcoind.sh ├── process-locked-payments.js ├── process-unpaid-invoices.js └── show_user.js ├── static ├── css │ └── style.css └── img │ └── favicon.png ├── templates └── index.html └── utils └── logger.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/.github/workflows/tag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/README.md -------------------------------------------------------------------------------- /bitcoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/bitcoin.js -------------------------------------------------------------------------------- /btc-decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/btc-decoder.js -------------------------------------------------------------------------------- /class/Invo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/class/Invo.js -------------------------------------------------------------------------------- /class/Lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/class/Lock.js -------------------------------------------------------------------------------- /class/Paym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/class/Paym.js -------------------------------------------------------------------------------- /class/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/class/User.js -------------------------------------------------------------------------------- /class/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/class/index.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/config.js -------------------------------------------------------------------------------- /controllers/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/controllers/api.js -------------------------------------------------------------------------------- /controllers/website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/controllers/website.js -------------------------------------------------------------------------------- /doc/Send-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/doc/Send-requirements.md -------------------------------------------------------------------------------- /doc/recover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/doc/recover.md -------------------------------------------------------------------------------- /doc/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/doc/schema.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/index.js -------------------------------------------------------------------------------- /lightning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/lightning.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/package.json -------------------------------------------------------------------------------- /rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/rpc.proto -------------------------------------------------------------------------------- /run-process-locked.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/run-process-locked.sh -------------------------------------------------------------------------------- /scripts/important-channels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/scripts/important-channels.js -------------------------------------------------------------------------------- /scripts/migrate_addresses_to_other_bitcoind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/scripts/migrate_addresses_to_other_bitcoind.sh -------------------------------------------------------------------------------- /scripts/process-locked-payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/scripts/process-locked-payments.js -------------------------------------------------------------------------------- /scripts/process-unpaid-invoices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/scripts/process-unpaid-invoices.js -------------------------------------------------------------------------------- /scripts/show_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/scripts/show_user.js -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/static/img/favicon.png -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/templates/index.html -------------------------------------------------------------------------------- /utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlueWallet/LndHub/HEAD/utils/logger.js --------------------------------------------------------------------------------