diff --git a/Cargo.lock b/Cargo.lock index 77930bda2..43cf74a3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -574,7 +574,7 @@ dependencies = [ [[package]] name = "chainhook-sdk" -version = "0.11.0" +version = "0.12.0" dependencies = [ "base58 0.2.0", "base64 0.13.1", @@ -609,7 +609,7 @@ dependencies = [ [[package]] name = "chainhook-types" -version = "1.2.0" +version = "1.3.0" dependencies = [ "hex", "schemars", @@ -738,7 +738,7 @@ dependencies = [ [[package]] name = "clarity" version = "2.2.0" -source = "git+https://github.com/stacks-network/stacks-core.git?branch=feat/clarity-wasm-next#4048f3461e8bb6c4402c12c1e089fb86282e16c2" +source = "git+https://github.com/stacks-network/stacks-core.git?branch=feat/clarity-wasm-next#4196a6dde5905561b1d2f6f66fad497d491cea4c" dependencies = [ "integer-sqrt", "lazy_static", @@ -762,7 +762,7 @@ dependencies = [ [[package]] name = "clarity-repl" version = "2.1.0" -source = "git+https://github.com/hirosystems/clarinet.git?branch=chore/upgrade-clarity-vm#dca55673335125cfb46e469c6f5b3cef088d77ba" +source = "git+https://github.com/hirosystems/clarinet.git?branch=chore/upgrade-clarity-vm#a1c8b2a751ab3c0885439e8007099c27d934195e" dependencies = [ "ansi_term", "atty", @@ -1806,7 +1806,7 @@ checksum = "3011d1213f159867b13cfd6ac92d2cd5f1345762c63be3554e84092d85a50bbd" [[package]] name = "hiro-system-kit" version = "0.1.0" -source = "git+https://github.com/hirosystems/clarinet.git?branch=chore/upgrade-clarity-vm#dca55673335125cfb46e469c6f5b3cef088d77ba" +source = "git+https://github.com/hirosystems/clarinet.git?branch=chore/upgrade-clarity-vm#a1c8b2a751ab3c0885439e8007099c27d934195e" dependencies = [ "ansi_term", "atty", @@ -4039,7 +4039,7 @@ dependencies = [ [[package]] name = "stacks-common" version = "0.0.2" -source = "git+https://github.com/stacks-network/stacks-core.git?branch=feat/clarity-wasm-next#4048f3461e8bb6c4402c12c1e089fb86282e16c2" +source = "git+https://github.com/stacks-network/stacks-core.git?branch=feat/clarity-wasm-next#4196a6dde5905561b1d2f6f66fad497d491cea4c" dependencies = [ "chrono", "curve25519-dalek", @@ -4062,12 +4062,13 @@ dependencies = [ "slog-term", "time 0.2.27", "winapi", + "wsts", ] [[package]] name = "stacks-rpc-client" version = "2.1.0" -source = "git+https://github.com/hirosystems/clarinet.git?branch=chore/upgrade-clarity-vm#dca55673335125cfb46e469c6f5b3cef088d77ba" +source = "git+https://github.com/hirosystems/clarinet.git?branch=chore/upgrade-clarity-vm#a1c8b2a751ab3c0885439e8007099c27d934195e" dependencies = [ "clarity-repl", "hmac 0.12.1", diff --git a/components/chainhook-cli/Cargo.toml b/components/chainhook-cli/Cargo.toml index 9113edd75..0fdbd17e6 100644 --- a/components/chainhook-cli/Cargo.toml +++ b/components/chainhook-cli/Cargo.toml @@ -15,7 +15,7 @@ redis = "0.21.5" serde-redis = "0.12.0" hex = "0.4.3" rand = "0.8.5" -chainhook-sdk = { version = "0.11.0", default-features = false, features = [ +chainhook-sdk = { version = "0.12.0", default-features = false, features = [ "zeromq", ], path = "../chainhook-sdk" } hiro-system-kit = "0.3.1" diff --git a/components/chainhook-sdk/Cargo.toml b/components/chainhook-sdk/Cargo.toml index 2a2f46169..05ea261ea 100644 --- a/components/chainhook-sdk/Cargo.toml +++ b/components/chainhook-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chainhook-sdk" -version = "0.11.0" +version = "0.12.0" description = "Stateless Transaction Indexing Engine for Stacks and Bitcoin" license = "GPL-3.0" edition = "2021" @@ -19,7 +19,7 @@ clarinet-utils = "1.0.0" hiro-system-kit = { version = "0.3.1", optional = true } # clarinet-utils = { version = "1", path = "../../../clarinet/components/clarinet-utils" } # hiro-system-kit = { version = "0.1.0", path = "../../../clarinet/components/hiro-system-kit" } -chainhook-types = { version = "1.2.0", path = "../chainhook-types-rs" } +chainhook-types = { version = "1.3.0", path = "../chainhook-types-rs" } rocket = { version = "=0.5.0-rc.3", features = ["json"] } bitcoincore-rpc = "0.16.0" bitcoincore-rpc-json = "0.16.0" diff --git a/components/chainhook-sdk/src/indexer/stacks/mod.rs b/components/chainhook-sdk/src/indexer/stacks/mod.rs index 26591ef15..0e70ba861 100644 --- a/components/chainhook-sdk/src/indexer/stacks/mod.rs +++ b/components/chainhook-sdk/src/indexer/stacks/mod.rs @@ -744,9 +744,10 @@ pub fn get_tx_description( TransactionPayload::Coinbase(_, _, _) => { (format!("coinbase"), StacksTransactionKind::Coinbase) } - TransactionPayload::TenureChange(_) => { - (format!("tenure change"), StacksTransactionKind::TenureChange) - } + TransactionPayload::TenureChange(_) => ( + format!("tenure change"), + StacksTransactionKind::TenureChange, + ), TransactionPayload::PoisonMicroblock(_, _) => { unimplemented!() } diff --git a/components/chainhook-types-rs/Cargo.toml b/components/chainhook-types-rs/Cargo.toml index a19510967..1a35bc0e6 100644 --- a/components/chainhook-types-rs/Cargo.toml +++ b/components/chainhook-types-rs/Cargo.toml @@ -2,7 +2,7 @@ name = "chainhook-types" description = "Bitcoin and Stacks data schemas, based on the Rosetta specification" license = "MIT" -version = "1.2.0" +version = "1.3.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html