import bip39Words from '@/lib/bip39-words' export const name = 'lnc' export const fields = [ { name: 'pairingPhrase', label: 'pairing phrase', type: 'password', help: 'We only need permissions for the uri `/lnrpc.Lightning/SendPaymentSync`\n\nCreate a budgeted account with narrow permissions:\n\n```$ litcli accounts create --balance ```\n\n```$ litcli sessions add --type custom --label --account_id --uri /lnrpc.Lightning/SendPaymentSync```\n\nGrab the `pairing_secret_mnemonic` from the output and paste it here.', validate: { words: bip39Words, min: 2, max: 10 } }, { name: 'password', label: 'password', type: 'password', hint: 'encrypts your pairing phrase when stored locally', optional: true } ] export const card = { title: 'LNC', subtitle: 'use Lightning Node Connect for LND payments', badges: ['send only', 'non-custodialish', 'budgetable'] }