How to use the ln-service.getWalletInfo function in ln-service

To help you get started, we’ve selected a few ln-service examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github submarineswaps / swaps-service / test / macros / spawn_lnd.js View on Github external
    checkLnd: ['lnd', ({lnd}, cbk) => getWalletInfo({lnd}, cbk)],
github alexbosworth / balanceofsatoshis / network / get_forwards.js View on Github external
      getHeight: ['validate', ({}, cbk) => getWalletInfo({lnd}, cbk)],
github alexbosworth / balanceofsatoshis / wallets / get_report.js View on Github external
getInfo: ['getLnd', ({getLnd}, cbk) => {
      return getWalletInfo({lnd: getLnd.lnd}, cbk);
    }],
github alexbosworth / balanceofsatoshis / fiat / get_price_chart.js View on Github external
getHeight: ['decodedRequest', 'getLnd', ({getLnd}, cbk) => {
        return getWalletInfo({lnd: getLnd.lnd}, cbk);
      }],
github alexbosworth / balanceofsatoshis / chain / get_channel_closes.js View on Github external
      getHeight: ['validate', ({}, cbk) => getWalletInfo({lnd}, cbk)],
github alexbosworth / balanceofsatoshis / swaps / swap_in.js View on Github external
getInfo: ['getLnd', ({getLnd}, cbk) => {
      return getWalletInfo({lnd: getLnd.lnd}, cbk);
    }],
github alexbosworth / balanceofsatoshis / chain / get_chain_fees.js View on Github external
      getInfo: ['validate', ({}, cbk) => getWalletInfo({lnd}, cbk)],
github alexbosworth / balanceofsatoshis / swaps / swap_out.js View on Github external
getWalletInfo: ['validate', ({}, cbk) => {
      return getWalletInfo({lnd: args.lnd}, cbk);
    }],
github alexbosworth / balanceofsatoshis / routing / get_inbound_path.js View on Github external
      getInfo: ['validate', ({}, cbk) => getWalletInfo({lnd}, cbk)],
github alexbosworth / balanceofsatoshis / network / send_gift.js View on Github external
      getWallet: ['getChannel', ({}, cbk) => getWalletInfo({lnd}, cbk)],