mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-13 12:33:25 +02:00
No description
* Added unit test for create peer * Got test working for create peer with default port * Use namedtuple for squeak peer class * Rename test name in test create peer * Use type hints for insert squeak peer |
||
|---|---|---|
| .github/workflows | ||
| docker | ||
| docs | ||
| frontend | ||
| itests | ||
| proto | ||
| squeaknode | ||
| tests | ||
| .dockerignore | ||
| .flake8 | ||
| .gitignore | ||
| .pre-commit-config.yaml | ||
| config.ini | ||
| Dockerfile | ||
| LICENSE | ||
| Makefile | ||
| MANIFEST.in | ||
| README.md | ||
| requirements-dev.txt | ||
| requirements-itest.txt | ||
| requirements.txt | ||
| setup.cfg | ||
| setup.py | ||
| start-squeaknode.sh | ||
| tox.ini | ||
squeaknode
Node for Squeak protocol
Run a node:
Requirements
- a bitcoin node
- an LND node
- Python 3.7 or later
If you don't already have a bitcoin node or lightning node, you can follow the instructions follow the instructions here to launch them in Docker.
Steps
-
Create a config.ini file and fill in the relevant sections to connect to your bitcoin and lnd nodes:
[squeaknode] network=testnet [lnd] host=localhost rpc_port=10009 tls_cert_path=~/.lnd/tls.cert macaroon_path=~/.lnd/data/chain/bitcoin/testnet/admin.macaroon [bitcoin] rpc_host=localhost rpc_port=18334 rpc_user=devuser rpc_pass=devpass [webadmin] enabled=true username=devuser password=devpass -
Install squeaknode:
$ pip install squeaknodeor
$ python setup.py install -
Start the squeak server:
$ runsqueaknode --config config.ini run-server -
Go to http://localhost:12994/ and use the username/password in config.ini to log in.
Test
Run unit tests:
$ make test
Run integration tests:
$ make itest