Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/krutt/aesir
Command line interface used for setting up local regtest Bitcoin & Lightning cluster using Docker Daemon
https://github.com/krutt/aesir
bitcoin cashu cashubtc chaum chaumian devtools docker ecash lightning lightning-network nutshell ord ordinals runes
Last synced: 22 days ago
JSON representation
Command line interface used for setting up local regtest Bitcoin & Lightning cluster using Docker Daemon
- Host: GitHub
- URL: https://github.com/krutt/aesir
- Owner: krutt
- License: mit
- Created: 2023-12-01T07:43:59.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-27T12:13:08.000Z (26 days ago)
- Last Synced: 2024-11-27T18:20:31.963Z (25 days ago)
- Topics: bitcoin, cashu, cashubtc, chaum, chaumian, devtools, docker, ecash, lightning, lightning-network, nutshell, ord, ordinals, runes
- Language: Python
- Homepage:
- Size: 6.38 MB
- Stars: 18
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-bolt12 - Aesir - Command line interface used for setting up local regtest Bitcoin & Lightning cluster using Docker Daemon (Ecosystem / Projects)
README
# Aesir
[![Bitcoin-only](https://img.shields.io/badge/bitcoin-only-FF9900?logo=bitcoin)](https://twentyone.world)
[![LN](https://img.shields.io/badge/lightning-792EE5?logo=lightning)](https://mempool.space/lightning)
[![Docker](https://img.shields.io/badge/docker-2496ED?&logo=docker&logoColor=white)](https://hub.docker.com)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/krutt/aesir/blob/master/LICENSE)
[![Top](https://img.shields.io/github/languages/top/krutt/aesir)](https://github.com/krutt/aesir)
[![Languages](https://img.shields.io/github/languages/count/krutt/aesir)](https://github.com/krutt/aesir)
[![Size](https://img.shields.io/github/repo-size/krutt/aesir)](https://github.com/krutt/aesir)
[![Last commit](https://img.shields.io/github/last-commit/krutt/aesir/master)](https://github.com/krutt/aesir)[![Aesir banner](https://github.com/krutt/aesir/blob/master/static/aesir-banner.svg)](static/aesir-banner.svg)
## Prerequisites
* python (3.8+)
* pip
* docker## Getting started
You can use `aesir` simply by installing via `pip` on your Terminal.
```sh
pip install aesir
```And then you can begin deploying local cluster as such:
```sh
aesir deploy
```The initial deployment may take some time at pulling required images from their respective
repositories. Results may look as such:```sh
$ pip install aesir
> ...
> Installing collected packages: aesir
> Successfully installed aesir-0.4.3
$ aesir deploy
> Deploy specified local cluster: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100% 0:00:01
> Generate addresses: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100% 0:00:00
> Mine initial capital for parties: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100% 0:00:00
```You will have docker containers running in the backend, ready to be interfaced by your local
environment applications you are developing.## Begin local mining
In order to properly test many functionalities, you will need to send mining commands to local
setup. You can achieve completely local and running environment with the following command:[![Demonstration](static/demo.gif)](https://github.com/krutt/aesir/blob/master/static/demo.gif)
### Cluster types
Currently there are two supported cluster-types in this project. Specified by flags,
`--duo` (default), or `--cat`, `--ohm`, `--uno` with the following set-up:| Type | Description |
| ---- | -------------------------------------------------------------------------- |
| cat | Customized `aesir-bitcoind-cat` node that has OP_CAT enabled for experiments |
| duo | Contains two LND nodes named `aesir-ping` and `aesir-pong` unified by
one single `aesir-bitcoind` service. |
| ohm | Only has `aesir-bitcoind` without any Lightning nodes. |
| uno | Only has one LND node named `aesir-lnd` connected to `aesir-bitcoind`. |### Peripheral containers
This project also helps you setup peripheral services to make development process easier, too.
For example, if you want to deploy a duo-cluster with attached postgres database, run the following:```sh
$ aesir deploy --with-postgres
> ...
$ aesir mine
> ╭───── containers ─────╮┏━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━━┓
> │ aesir-postgres │┃ Name ┃ Nodekey ┃ Channels ┃ Peers ┃ Height ┃ Synced? ┃
> │ aesir-pong │┡━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━╇━━━━━━━━━┩
> │ aesir-ping ││ aesir-pong │ 3da33d3eb12 │ 2 │ 1 │ 216 │ true │
> │ aesir-bitcoind ││ │ deacf4e1a64 │ │ │ │ │
> │ ... ││ ... │ ... │ ... │ ... │ ... │ ... │
```Or run an uno-cluster with both attached postgres database and redis solid store cache like this:
```sh
$ aesir deploy --uno --with-postgres --with-redis
> ...
$ aesir mine
> ╭───── containers ─────╮┏━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━┳━━━━━━━━━┓
> │ aesir-postgres │┃ Name ┃ Nodekey ┃ Channels ┃ Peers ┃ Height ┃ Synced? ┃
> │ aesir-redis │┡━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━╇━━━━━━━━━┩
> │ aesir-lnd ││ aesir-lnd │ c0ae6b158d0 │ 0 │ 0 │ 202 │ true │
> │ aesir-bitcoind ││ │ 4194459b8f3 │ │ │ │ │
> │ ... ││ ... │ ... │ ... │ ... │ ... │ ... │
```## Cleanup
Use the following command to clean up active `aesir-*` containers:
```sh
aesir clean
```🚧 This will resets the current test state, so use with care. Example below:
```sh
$ aesir clean
> Remove active containers: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100% 0:00:01
```## Change-logs
* **0.3.1** Add `aesir-cashu-mint` & `aesir-lnd-krub` image setups and deployments w/ shared volumes
* **0.3.2** Define classifiers on `pyproject.toml` for PyPI metadata
* **0.3.3** Drop `black` and use [ruff](https://github.com/astral-sh/ruff) formatter and linter
* **0.3.4** Simplify deployment workflows and
* **0.3.5** Restructure project so that when installed, `src` folder will not be created
* **0.3.6** Breakdown "setup" command into "build" and "pull"
* **0.3.7** Lightning cluster now with [ord](https://github.com/ordinals/ord)
* **0.3.8** Rename "ord" to "ord-server" to avoid confusion with cli
* **0.3.9** Remove intermediate containers
* **0.4.0** Resist electricity with "ohm" mode
* **0.4.1** Remove Ordinals' spiked ball
* **0.4.2** Disable bitcoind prune mode
* **0.4.3** Implement dashboard walkthrough using [blessed](https://github.com/chj/blessed)
* **0.4.4** Add `cat` cluster in deployment and `--bitcoind-cat` flag for customized build
* **0.4.5** The Yggdrasil update where docker build logs are chunked for display
* **0.4.6** Create default wallet if no lnd containers
* **0.4.7** (reverted) Remove unittesting from image build process
* **0.4.8** Follow [Productivity Notes](https://github.com/bitcoin/bitcoin/blob/master/doc/productivity.md) for `bitcoind-cat`; Fix progress bar overlap.## Roadmap
* Simplify `schema.yml` and embed commands to service definitions
* De-couple from `polarlightning` images and build from aesir definitions
* Remove `deprecated` section
* Write [click](https://click.palletsprojects.com) tests.
* Add `aesir-tesla-ball` peripheral service using [tesla-ball](https://github.com/krutt/tesla-ball)
* Use [joblib](https://github.com/joblib/joblib) to speed up deployment with parallelization.
* Create and add some type of `ordapi` peripheral service.## Contributions
### Set up local environment
The following guide walks through setting up your local working environment using `pyenv`
as Python version manager and `uv` as Python package manager. If you do not have `pyenv`
installed, run the following command.Install using Homebrew (Darwin)
```sh
brew install pyenv --head
```Install using standalone installer (Darwin and Linux)
```sh
curl https://pyenv.run | bash
```If you do not have `uv` installed, run the following command.
Install using Homebrew (Darwin)
```sh
brew install uv
```Install using standalone installer (Darwin and Linux)
```sh
curl -LsSf https://astral.sh/uv/install.sh | sh
```Once you have `pyenv` Python version manager installed, you can
install any version of Python above version 3.9 for this project.
The following commands help you set up and activate a Python virtual
environment where `uv` can download project dependencies from the `PyPI`
open-sourced registry defined under `pyproject.toml` file.Set up environment and synchroniz project dependencies
```sh
pyenv shell 3.11.9
uv venv --python-preference system
source .venv/bin/activate
uv sync --dev
```### Known issues
You may run into this setback when first running this project. This is a
[docker-py](https://github.com/docker/docker-py/issues/3059) issue widely known as of October 2022.```python
docker.errors.DockerException:
Error while fetching server API version: (
'Connection aborted.', FileNotFoundError(
2, 'No such file or directory'
)
)
```See the following issue for Mac OSX troubleshooting.
[docker from_env and pull is broken on mac](https://github.com/docker/docker-py/issues/3059#issuecomment-1294369344)
Recommended fix is to run the following command:```sh
sudo ln -s "$HOME/.docker/run/docker.sock" /var/run/docker.sock
```## License
This project is licensed under the terms of the MIT license.