altangent / lightnode-invoice

Lightning Network invoice protocol library
MIT License
12 stars 4 forks source link
bitcoin bolt-11 lightning-invoice lightning-network

Lightning Network Invoice Protocol Encoder/Decoder

CircleCI Coverage Status

Package has moved to @lightnode/invoice

A JavaScript invoice encoding/decoding library for the Bitcoin Lightning Network.

This library intends to be BOLT #11 compliant.

This software is a work in progress. Use at your own risk.

Usage

Decode an invoice

let invoice = require('lightnode-invoice');
let input =
  'lnbc2500u1pvjluezpp5qqqsyqcyq5rqwzqfqqqsyqcyq5rqwzqfqqqsyqcyq5rqwzqfqypqdq5xysxxatsyp3k7enxv4jsxqzpuaztrnwngzn3kdzw5hydlzf03qdgm2hdq27cqv3agm2awhz5se903vruatfhq77w3ls4evs3ch9zw97j25emudupq63nyw24cg27h2rspfj9srp';
let result = invoice.decode(input);
console.log(result);
/*
Invoice {
  fields:
   [ { type: 1,
       value: <Buffer 00 01 02 03 04 05 06 07 08 09 00 01 02 03 04 05 06 07 08 09 00 01 02 03 04 05 06 07 08 09 01 02> },
     { type: 13, value: '1 cup coffee' },
     { type: 6, value: 60 } ],
  unknownFields: [],
  network: 'bc',
  amount: 0.0025,
  timestamp: 1496314658,
  signature:
   { r: <Buffer e8 96 39 ba 68 14 e3 66 89 d4 b9 1b f1 25 f1 03 51 b5 5d a0 57 b0 06 47 a8 da ba eb 8a 90 c9 5f>,
     s: <Buffer 16 0f 9d 5a 6e 0f 79 d1 fc 2b 96 42 38 b9 44 e2 fa 4a a6 77 c6 f0 20 d4 66 47 2a b8 42 bd 75 0e>,
     recoveryFlag: 1 },
  pubkey: <Buffer 03 e7 15 6a e3 3b 0a 20 8d 07 44 19 91 63 17 7e 90 9e 80 17 6e 55 d9 7a 2f 22 1e de 0f 93 4d d9 ad>,
  hashData: <Buffer 3c d6 ef 07 74 40 40 55 6e 01 be 64 f6 8f d9 e1 56 5f b4 7d 78 c4 23 08 b1 ee 00 5a ca 5a 0d 86> }
*/

Encode an invoice

let invoice = require('lightnode-invoice');
let privKey = Buffer.from(
  'e126f68f7eafcc8b74f54d269fe206be715000f94dac067d1c04a8ca3b2db734',
  'hex'
);

let input = new Invoice();
input.timestamp = 1496314658;
input.amount = 0.0025;
input.paymentHash = '0001020304050607080900010203040506070809000102030405060708090102';
input.shortDesc = '1 cup coffee';
input.expiry = 60;
result = invoice.encode(input, privKey);
console.log(result);

/*
lnbc2500u1pvjluezpp5qqqsyqcyq5rqwzqfqqqsyqcyq5rqwzqfqqqsyqcyq5rqwzqfqypqdq5xysxxatsyp3k7enxv4jsxqzpuaztrnwngzn3kdzw5hydlzf03qdgm2hdq27cqv3agm2awhz5se903vruatfhq77w3ls4evs3ch9zw97j25emudupq63nyw24cg27h2rspfj9srp
*/

API

.decode(string): Invoice

Decodes a bech32 encoded lightning invoice. Exceptions are thrown for invalid invoices.

.encode(Invoice): String

Encodes an invoice into a bech32 encode lightning invoice.

Class - Invoice

Represents a payment invoice that contains the following properties

Contributing

Contributions are welcome. Integrated tooling includes unit testing, linting, and formatting via Prettier. These command can be run via npm test, npm run lint and npm run format.

Before submitting PRs: