Crates.io | bitcoins |
lib.rs | bitcoins |
version | 0.7.0 |
source | src |
created_at | 2021-04-04 18:23:46.226057 |
updated_at | 2022-07-06 19:35:09.424978 |
description | Bitcoin transaction construction in Rust |
homepage | |
repository | https://github.com/summa-tx/bitcoins-rs |
max_upload_size | |
id | 378899 |
size | 114,130 |
This crate provides a simple interface for interacting with Bitcoin mainnet, testnet, and signet.
This crate is under active development, and the API may change.
Typically, you'll want to use a pre-fabricated network as an entry point.
use coins_core::{
nets::Network,
builder::TxBuilder,
ser::Ser,
};
use bitcoins::{BitcoinMainnet, Outpoint};
// We can convert a string to an address
let address = BitcoinMainnet::string_to_address("bc1qvyyvsdcd0t9863stt7u9rf37wx443lzasg0usy").unwrap();
// And set up a transaction builder with a simple interface
let serialized_tx = BitcoinMainnet::tx_builder()
.version(2)
.spend(Outpoint::default(), 0xaabbccdd)
.pay(0x8888_8888_8888_8888, &address).unwrap()
.build()
.serialize_hex();
See the documentation for more details. TODO: link the docs.
cargo build
cargo test
$ cargo rustdoc