From c890e41bd2df5b655bf87ad79c5496d1a23acbde Mon Sep 17 00:00:00 2001 From: evalir Date: Tue, 2 Dec 2025 17:36:30 +0100 Subject: [PATCH] chore: v0.18.0-rc.0 --- Cargo.toml | 6 +++--- src/utils/calc.rs | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8666259..7bdbf3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "init4-bin-base" description = "Internal utilities for binaries produced by the init4 team" keywords = ["init4", "bin", "base"] -version = "0.17.0" +version = "0.18.0-rc.0" edition = "2021" rust-version = "1.85" authors = ["init4", "James Prestwich", "evalir"] @@ -15,8 +15,8 @@ repository = "https://github.com/init4tech/bin-base" init4-from-env-derive = "0.1.0" # Signet -signet-constants = { version = "0.14" } -signet-tx-cache = { version = "0.14", optional = true } +signet-constants = { version = "0.16.0-rc.0" } +signet-tx-cache = { version = "0.16.0-rc.0", optional = true } # alloy alloy = { version = "1.0.35", optional = true, default-features = false, features = ["std", "signer-local", "consensus", "network"] } diff --git a/src/utils/calc.rs b/src/utils/calc.rs index f2828af..0cb824f 100644 --- a/src/utils/calc.rs +++ b/src/utils/calc.rs @@ -312,6 +312,7 @@ impl From for SlotCalculator { match value { KnownChains::Pecorino => SlotCalculator::pecorino_host(), KnownChains::Test => SlotCalculator::new(12, 0, 12), + KnownChains::Mainnet => SlotCalculator::mainnet(), } } }