├── .aspell.en.pws ├── .copy-edit-stylesheet-checklist.md ├── .gitattributes ├── .travis.yml ├── 00-introduction.md ├── 01-messaging.md ├── 02-peer-protocol.md ├── 03-transactions.md ├── 04-onion-routing.md ├── 05-onchain.md ├── 07-routing-gossip.md ├── 08-transport.md ├── 09-features.md ├── 10-dns-bootstrap.md ├── 11-payment-encoding.md ├── 12-offer-encoding.md ├── CONTRIBUTING.md ├── CoC.md ├── README.md ├── SECURITY.md ├── bolt04 ├── blinded-onion-message-onion-test.json ├── blinded-payment-onion-test.json ├── onion-error-test.json ├── onion-test.json └── route-blinding-test.json ├── bolt07 └── extended-queries.json ├── bolt12 ├── format-string-test.json ├── offers-test.json └── signature-test.json ├── proposals └── route-blinding.md └── tools ├── bolt3-bitcoind-test.sh ├── extract-formats.py └── spellcheck.sh /.aspell.en.pws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/.aspell.en.pws -------------------------------------------------------------------------------- /.copy-edit-stylesheet-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/.copy-edit-stylesheet-checklist.md -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.md linguist-detectable 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/.travis.yml -------------------------------------------------------------------------------- /00-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/00-introduction.md -------------------------------------------------------------------------------- /01-messaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/01-messaging.md -------------------------------------------------------------------------------- /02-peer-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/02-peer-protocol.md -------------------------------------------------------------------------------- /03-transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/03-transactions.md -------------------------------------------------------------------------------- /04-onion-routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/04-onion-routing.md -------------------------------------------------------------------------------- /05-onchain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/05-onchain.md -------------------------------------------------------------------------------- /07-routing-gossip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/07-routing-gossip.md -------------------------------------------------------------------------------- /08-transport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/08-transport.md -------------------------------------------------------------------------------- /09-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/09-features.md -------------------------------------------------------------------------------- /10-dns-bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/10-dns-bootstrap.md -------------------------------------------------------------------------------- /11-payment-encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/11-payment-encoding.md -------------------------------------------------------------------------------- /12-offer-encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/12-offer-encoding.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CoC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/CoC.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bolt04/blinded-onion-message-onion-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/bolt04/blinded-onion-message-onion-test.json -------------------------------------------------------------------------------- /bolt04/blinded-payment-onion-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/bolt04/blinded-payment-onion-test.json -------------------------------------------------------------------------------- /bolt04/onion-error-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/bolt04/onion-error-test.json -------------------------------------------------------------------------------- /bolt04/onion-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/bolt04/onion-test.json -------------------------------------------------------------------------------- /bolt04/route-blinding-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/bolt04/route-blinding-test.json -------------------------------------------------------------------------------- /bolt07/extended-queries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/bolt07/extended-queries.json -------------------------------------------------------------------------------- /bolt12/format-string-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/bolt12/format-string-test.json -------------------------------------------------------------------------------- /bolt12/offers-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/bolt12/offers-test.json -------------------------------------------------------------------------------- /bolt12/signature-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/bolt12/signature-test.json -------------------------------------------------------------------------------- /proposals/route-blinding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/proposals/route-blinding.md -------------------------------------------------------------------------------- /tools/bolt3-bitcoind-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/tools/bolt3-bitcoind-test.sh -------------------------------------------------------------------------------- /tools/extract-formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/tools/extract-formats.py -------------------------------------------------------------------------------- /tools/spellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightning/bolts/HEAD/tools/spellcheck.sh --------------------------------------------------------------------------------