19 releases

new 0.3.0-alpha.2 Apr 22, 2024
0.2.2 Dec 5, 2023
0.2.1 Nov 10, 2023
0.2.0-alpha.2 Jul 20, 2023
0.1.3 Nov 30, 2022

#153 in Magic Beans

Download history 10/week @ 2024-02-26 202/week @ 2024-03-04 8/week @ 2024-03-11 13/week @ 2024-04-01 86/week @ 2024-04-08

100 downloads per month

MIT license

1MB
20K SLoC

RGB Lib

rgb-lib is a Rust library which provides tools to build cross-platform RGB compatible wallets in a simple fashion, without having to worry about Bitcoin and RGB internals.

It primarily uses bdk to provide Bitcoin walleting functionalities, and several RGB libraries such as rgb-core to provide RGB specific functionalities.

The library has been designed to offer an offline usage (some APIs do not require using Internet) and also a watch-only usage (the library can work without private keys, sign operations will need to be performed with another tool).

N.B.: this library is still a work in progress and in its testing phase. Also, as long as the version is 0.*, API breaking changes should be expected.

Important remark

⚠️ Warning: never use the same wallet on more than one device!

Using the same wallet (mnemonic phrase) on multiple devices can lead to RGB asset loss due to improper UTXO management.

This library is intended to exclusively handle all UTXOs for the wallet. Using the same mnemonic phrase on any other device, including with this same library, can lead to serious issues and ultimately to RGB asset loss.

Each time the wallet is brought online, a consistency check is carried out to make sure the UTXO set has not changed since the last synchronization and an error is returned in case discrepancies are detected.

Native language bindings

Native language bindings for this library are also available via the rgb-lib-ffi project.

Tests

In order to run the available tests, execute:

cargo test --workspace --all-features

This command will run a bitcoind node, three electrs nodes, one esplora node and three RGB proxy instances, in order to perform integration tests in a regtest environment.

Services will not be stopped automatically after the test run. To stop them and remove all containers, from the project root execute:

docker compose -f tests/docker-compose.yml down

Diagrams

The docs/ directory contains some documents and UML diagrams to simplify the initial understanding of how rgb-lib operates.

These include typical flows for issuing/sending/receiving assets and the state transitions of an asset transfer.

Roadmap

  • add an API to extend BlindData expiration
  • add support for more databases
  • improve UTXO management
  • improve the library's performance

Dependencies

~0–27MB
~398K SLoC