Skip to content

Commit

Permalink
Merge pull request #286 from RGB-WG/wtxoseal
Browse files Browse the repository at this point in the history
Differentiate witness txo-based seals from existing utxo-based seals
  • Loading branch information
dr-orlovsky authored Jan 30, 2025
2 parents 2be7f6c + b818ad1 commit 4a020e0
Show file tree
Hide file tree
Showing 5 changed files with 178 additions and 115 deletions.
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

0 comments on commit 4a020e0

Please sign in to comment.