Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Differentiate witness txo-based seals from existing utxo-based seals #286

Merged
merged 12 commits into from
Jan 30, 2025
123 changes: 63 additions & 60 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ default = ["bitcoin"]
all = ["bitcoin", "liquid", "prime", "serde"]

bitcoin = ["bp-core"]
liquid = []
liquid = ["bp-core"]
prime = []

serde = [
Expand All @@ -54,8 +54,8 @@ wasm-bindgen-test = "0.3"
features = ["all"]

[patch.crates-io]
ultrasonic = { git = "https://github.com/AluVM/ultrasonic", branch = "refactor/consensus" }
bp-consensus = { git = "https://github.com/BP-WG/bp-core", branch = "refactor/consensus" }
bp-dbc = { git = "https://github.com/BP-WG/bp-core", branch = "refactor/consensus" }
bp-seals = { git = "https://github.com/BP-WG/bp-core", branch = "refactor/consensus" }
bp-core = { git = "https://github.com/BP-WG/bp-core", branch = "refactor/consensus" }
ultrasonic = { git = "https://github.com/AluVM/ultrasonic", branch = "master" }
bp-consensus = { git = "https://github.com/BP-WG/bp-core", branch = "wtxoseal" }
bp-dbc = { git = "https://github.com/BP-WG/bp-core", branch = "wtxoseal" }
bp-seals = { git = "https://github.com/BP-WG/bp-core", branch = "wtxoseal" }
bp-core = { git = "https://github.com/BP-WG/bp-core", branch = "wtxoseal" }
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extern crate serde;
mod verify;
mod seals;

pub use seals::{RgbSeal, SealAuthToken};
pub use seals::{RgbSealDef, RgbSealSrc};
pub use single_use_seals::*;
pub use verify::{ContractApi, ContractVerify, OperationSeals, ReadOperation, ReadWitness, Step, VerificationError};

Expand Down
Loading