├── .gitignore ├── README.md ├── package.json ├── run-connector.js ├── send.js └── util.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger-deprecated/ilp-lightning-demo/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger-deprecated/ilp-lightning-demo/HEAD/package.json -------------------------------------------------------------------------------- /run-connector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger-deprecated/ilp-lightning-demo/HEAD/run-connector.js -------------------------------------------------------------------------------- /send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger-deprecated/ilp-lightning-demo/HEAD/send.js -------------------------------------------------------------------------------- /util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/interledger-deprecated/ilp-lightning-demo/HEAD/util.js --------------------------------------------------------------------------------