mirror of
https://github.com/conduition/dlctix.git
synced 2026-01-30 13:15:11 +01:00
This adds additional states to the SigningSession state machine which encapsulate the 2nd round of signing, and the final state after signing is completed. Once all signatures have been received, the Ticketed DLC is active and enforceable. Players can begin buying ticket preimages from the market maker.
24 lines
643 B
TOML
24 lines
643 B
TOML
[package]
|
|
name = "dlctix"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
authors = ["conduition <conduition@proton.me>"]
|
|
description = "Ticketed Discreet Log Contracts"
|
|
readme = "README.md"
|
|
license = "Unlicense"
|
|
repository = "https://github.com/conduition/ticketed-dlc"
|
|
keywords = ["dlc", "smart", "contract", "ticket", "auction"]
|
|
|
|
[dependencies]
|
|
bitcoin = { version = "0.31.1" }
|
|
hex = "0.4.3"
|
|
musig2 = { version = "0.0.7", features = ["rand"] }
|
|
rand = "0.8.5"
|
|
secp = { version = "0.2.1" }
|
|
secp256k1 = { version = "0.28.2", features = ["global-context"] }
|
|
sha2 = "0.10.8"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|