3 unstable releases

0.2.1 Feb 22, 2024
0.1.2 Oct 21, 2023
0.1.1 Oct 21, 2023

#2951 in Magic Beans

Download history 5/week @ 2024-02-14 159/week @ 2024-02-21 35/week @ 2024-02-28 1/week @ 2024-03-06 18/week @ 2024-03-27 35/week @ 2024-04-03

53 downloads per month
Used in moksha-cli

MIT license

145KB
3.5K SLoC

crate rust wasm coverage

⚠️ Don't be reckless: This project is in early development, it does however work with real sats! Always use amounts you don't mind loosing.

moksha

moksha is a cashu library, mint and cli-wallet written in Rust.

Contents

About

Cashu is an Ecash implementation based on David Wagner's variant of Chaumian blinding. Token logic based on minicash (description) which implements a Blind Diffie-Hellman Key Exchange scheme written down by Ruben Somsen here. Please read the Cashu documentation for more detailed information.

Progress

Mint Features:

  • Supported backends
    • LNbits
    • Lnd
    • Alby
    • Strike
    • core-lightning (WIP)

Wallet Features:

  • connect to mint (load keys)
  • request minting tokens
  • minting tokens
  • sending tokens (get an encoded token for chosen value)
  • receiving tokens
  • melting tokens
  • check if tokens are spent
  • multi mint support

Implemented NUTs:

Crates

Usage

Deploy mint

Railway

The easiest way to deploy the mint is to use Railway. Railway is a platform that allows you to deploy your apps to the cloud with just a few clicks. You can use the following template to setup a mint that uses LNbits as backend:

(coming soon)

Deploy on Railway

Docker-compose

docker-compose simplifies the process of running multi-container Docker applications. Here's how you can use it to run the moksha -mint:

  1. First, you need to have Docker Compose installed on your machine. If it's not installed, you can download it from the official Docker website.

  2. Copy the tls.cert and admin.macaroon files from your LND instance into the ./data/mutinynet/ directory.

  3. Configure the LND_GRPC_HOST environment variable in the docker-compose.yml file to point to your LND instance.

  4. Run the following command in the same directory as your docker-compose.yml file to start the mint and a postgres database:

docker-compose up -d app database

Development

Setup rust

git clone https://github.com/ngutech21/moksha.git
cargo install just typos-cli sqlx-cli grcov wasm-pack wasm-opt
rustup component add llvm-tools-preview
cd moksha

Install protobuf for your platform

This is needed for the LND backend.

sudo apt install protobuf-compiler
brew install protobuf
choco install protoc

Config

mv .env.example .env
# edit .env file
vim .env

Run mint (cashu-server)

To run the mint you need to setup a lightning regtest environment like Polar and a Lnbits or Lnd instance. In Lnbits create a new wallet and copy the admin key into the .env file and set the url to your Lnbits instance. The mint uses PostgreSQL for storing used proofs and pending invoices. The database URL can be configured in the .env file.

install docker and docker-compose
docker compose up -d
just db-create
just run-mint

Run cli-wallet

Show info

Shows the current version, database-dir and mint-url.

just run-cli info

Check Balance

just run-cli balance

Mint tokens

This command will return a Lightning invoice that you need to pay to mint new ecash tokens.

just run-cli mint 42

Send tokens

To send tokens to another user, enter. The tokens will get printed to STOUT. You can then send them to the recipient via any messaging app.

just run-cli send 21

Receive tokens

To receive tokens you need to enter the token as first argument to the receive command. The tokens will get verified and the value will be added to your balance.

just run-cli receive cashuAeyJ0...

Development

To run coverage, check for typos etc. use the just commands:

Available recipes:
    build-docker    # build the mint docker-image
    build-wasm      # compile all rust crates, that are relevant for the client, to wasm
    clean           # clean cargo
    db-create       # creates the postgres database
    db-migrate      # runs sqlx prepare
    db-prepare      # runs sqlx prepare
    db-secrets      # creates the fly.io secrets used for LND
    default         # list all tasks
    deps            # install all dependencies
    final-check     # format code, check typos and run tests
    run-cli *ARGS   # run cli-wallet with the given args
    run-coverage    # run coverage
    run-itests      # run integrationtests
    run-mint        # run the cashu-mint
    start-fly-proxy # starts the fly.io database proxy
    typos           # check code for typos
    typos-fix-all   # fix all typos

License

moksha is distributed under the terms of the MIT license. See LICENSE.

Dependencies

~20–42MB
~653K SLoC