xraid
xraid
the user account wallet(card) will have a bitcoin address You can get by : LndHub-URL/getbtc `header { content-type: application/json, authorization: Bearer access_token }` LndHub-URL/getbalance `header { content-type: application/json, authorization: Bearer...
and if You use : LndHub-URL/gettxs `header { content-type: application/json, authorization: Bearer access_token }` You will see tx´s for the associated bitcoin address
in Your config.js can You comment out : // bitcoind: { // rpc: 'http://login:[email protected]:8332/wallet/wallet.dat', // }, restart and report back
@raucao hehe and You would know
LndHub is built to serve **multiuser** BlueWallet's When running a LndHub instance a global backup would return all wallets connected and that would violate privacy of connected users wallets. When...
This could be had with a add on route handler installed without any big changes (some adds and one change fee hardcoded now at 0.01) to existing repo, it would...
It could be installed as a folder Extension add on as i did with the LNDhub LNURL-withdraw / LNURL-Pay Extension that only adds one line to LNDhub index.js
// for UI reference await redis.set('_internalFee', internalFee); await redis.set('_forwardFee', forwardFee); /** */ router.get('/admin/fees', async function (req, res) { logger.log('/admin', [req.id]); let fees = `LndHub Admin fees { forwardFee: ${forwardFee}, internalFee:...
Forwarding fee reserve 1% and internal fee 0.3% is set in config at startup and can be changed at runtime.
Soon able to drop a PR for changes in LndHub for config fees at startup. And have a Extension Admin UI example that gives access to BlueWallet Lightning Protocol =...