Note: This repo is still in early development and is not ready for production use.
This repo contains, or will contain, packages that define sBTC primitives, signer components, helper tools such as sbtc-cli
and devenv
.
At the moment this repo also contains Stacks primitives in the stacks-core
package. The goal is to make this the default way of interfacing with the Stacks blockchain in Rust. At some point it might be moved to a different location.
It contains fundamental types and logic such as:
- crockford32 encoding
- hashing primitives (SHA256 and RIPEMD160)
- StacksAddress
- Uint support
- other types
This package contains the core logic for sBTC. For now, most of it is sBTC operation parsing and construction.
This package contains a version of the sBTC token (SIP-10) for developers on testnet.
Version 0.1 is a custodial solution that supports with deposit and withdrawal transaction on Bitoin only using OP_RETURN. The custodial solution is a rust binary that continuously observes the bitcoin and stacks blockchain.
This package contains a command-line interface for sBTC to create and broadcast deposit and withdraw btc transactions. The cli also has a helper commands for credentials.
This folder contains configuration files for docker images to launch services for sBTC in a local environment. Use up.sh
to launch it, and use utility scripts to deposit and withdraw BTC. This environment can be used for demonstrations and automated testing.
Before going any further please review our code of conduct
This repository uses the task runner cargo-make to manage its build scripts and CI. To install cargo-make, run the following command:
cargo install --version 0.36.13 cargo-make
Also verify that openssl is install on your machine.