#fedimint #lightning #bitcoin #module #consensus #federation #transaction

bin+lib fedimintd

fedimintd is the main consensus code for processing transactions and REST API

25 releases

new 0.3.0-rc.3 Mar 26, 2024
0.3.0-rc.2 Mar 25, 2024
0.2.2 Feb 7, 2024
0.2.2-rc6 Jan 24, 2024
0.0.1 Feb 22, 2023

#2729 in Magic Beans

Download history 11/week @ 2023-12-04 13/week @ 2023-12-11 7/week @ 2023-12-18 8/week @ 2024-01-01 12/week @ 2024-01-15 28/week @ 2024-01-22 2/week @ 2024-01-29 4/week @ 2024-02-19 71/week @ 2024-02-26 19/week @ 2024-03-11 189/week @ 2024-03-18

279 downloads per month

MIT license

1.5MB
28K SLoC

Fedimint

Github Actions CI Build Status Chat for developers on Discord github discussion Lines of code

Fedimint is a module based system for building federated applications. It is designed to be a trust-minimized, censorship-resistant, and private alternative to centralized applications.

Fedimint is alpha software released under an MIT License and recently cut its 0.2 release. We recommend you run Fedimint on testnets like mutinynet, or on mainnet with small amounts of money.

Fedimint ships with 3 default modules: Bitcoin, Lightning, and Chaumian Ecash, for out-of-the-box best practices for private and trust-minimized payments. You can write custom modules that define further consensus items and transaction types leveraging the payments modules to build your own federated applications.

The Fedimint Developer Discord is the best place to get help and ask questions. Join the Discord and say hi! We are extremely active and work to onboard developers or all skill levels to Fedimint and associated open-source Bitcoin projects. Fedimint touches many different areas of Bitcoin development, so there is something for everyone. See below for more information on how to get involved.

Running your own Fedimint

It's easy to set up and run your own federations. Fedimint is designed to be Byzantine Fault Tolerant so is resilient to m malicious nodes in a federation of 3m + 1 nodes. If you run a federation of 4 guardians you are resilient to 1 malicious guardian, if you run a federation of 7 guardians you are resilient to 2 guardians, etc.

Fedimint's 0.2 release can also be run in "solo mode" with a single guardian. This is useful for testing and development, but is not recommended for production use.

To do lightning payments, Fedimint requires a Lightning Gateway: a user of the federation that accepts ecash in exchange for sending/receiving lightning payments. The Lightning Gateway is not a guardian and acts as an untrusted economic actor serving the federation.

Running Fedimint on Mutinynet

See the Fedimint Mutinynet Setup Guide. You can modify the configuration options to deploy it on

For Developers

We are actively looking for developers to help build Fedimint and associated open-source Bitcoin projects. Fedimint touches many different areas of Bitcoin development, so there is something for everyone. The best places to get started are:

  • The Fedimint Developer Discord: the best place to get help and ask questions.
  • Fedimint Contributor Calendar: This calendar contains all the developer calls and events.
  • Fedimint Developer Calls: We have developer calls every monday at 4PM UTC to review PRs and discuss current development priorities. As a new developer, this is a great place to find good first issues and mentorship from the core team on how to get started contributing to Fedimint.
  • Weekly Deep Dive: We have a deep dive every thursday at 4PM UTC to discuss technical topics relating to Fedimint in depth: cryptography, Rust programming, consensus, networking, etc. This is a great place to learn about the internals of Fedimint and Bitcoin. We normally plan these calls based off requests from contributors on aspects of Fedimint they want to learn more about, so please reach out if you have a topic you want to learn more about.
  • UI/UX Design Calls: We have UI/UX design calls every wednesday at 4PM UTC to discuss the UI/UX of Fedimint and associated projects. This is a great place to get involved if you are a UI/UX designer or developer with React/Typescript experience.

Fedimint Repos and Projects to Contribute To

  • Fedimint: The core Fedimint repository. This is where the core consensus and networking code lives. Fedimint is an advanced Rust project and is a great place to learn Rust, cryptography, networking, consensus, and bitcoin development. We have a lot of good first issues, are happy to mentor new developers, and are always looking for experienced Rust developers to help with the core codebase.
  • UI: The default Fedimint Guardian and Lightning Gateway UIs. These are Typescript and React projects. Contributing to this repo helps with UI/UX design and development to make Fedimint more user friendly.
  • Lightning Gateway: Fedimint's Lightning Gateway is implemented as an HTLC interceptor and currently works with CLN, LND, and LDK's sample-node implementations. We are always looking for lightning developers to help with the Lightning Gateway, especially around improving payment reliability and to add support for more lightning implementations.
  • Custom Modules: Fedimint ships with 3 default modules: Bitcoin, Lightning, and Chaumian Ecash. You can write custom modules that define further consensus items and transaction types leveraging the payments modules to build your own federated applications. We are always looking for developers to help build custom modules and to help improve the module system.

Spinning up the Fedimint Developer Environment

Fedimint is a Rust project and uses the Nix package manager to manage dependencies and build the project.

Local Development

Fedimint's developer environment and rust build pipeline is managed through Nix flakebox (https://github.com/rustshop/flakebox). To get started, install Nix.

sh <(curl -L https://nixos.org/nix/install) --daemon

Then fork and clone the Fedimint repo.

git clone https://github.com/your-username/fedimint.git

Then enter the nix developer environment.

nix develop

and start a local regtest network with 4 guardians and a lightning gateway.

just mprocs

You can then interact with the guardians and lightning gateway through the mprocs cli.

If you want to run with UIs, see the UI repo for developer environment instructions.

Contributing

For contribution guidelines, Areas of contributions and how to get involved, please refer to the Contributing Guidelines.

Dependencies

~111MB
~2M SLoC