From 72eb719abc33fdc169fd287658878eba5520953c Mon Sep 17 00:00:00 2001 From: Swanny Date: Sun, 17 May 2026 19:23:14 -0400 Subject: [PATCH 1/6] feat: handle KnownChains::Gouda (delegate to parmigiana host) Bump signet-constants to git-rev 8a85a4636bccf971226a9c80c311832ce33e998c (v0.19.0, adds KnownChains::Gouda) and add the Gouda arm in the From for SlotCalculator impl, delegating to parmigiana_host() since Gouda runs on the same host chain. Co-Authored-By: Claude Sonnet 4.6 --- Cargo.toml | 2 +- src/utils/calc.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ef7b1ff..01e4366 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ init4-from-env-derive = { version = "0.2.0", path = "from-env-derive" } # Signet signet-cold-sql = { version = "0.9.0", optional = true, default-features = false, features = ["postgres", "sqlite"] } -signet-constants = { version = "0.18.0" } +signet-constants = { git = "https://github.com/init4tech/signet-sdk", rev = "8a85a4636bccf971226a9c80c311832ce33e998c" } signet-tx-cache = { version = "0.18.0", optional = true } # alloy diff --git a/src/utils/calc.rs b/src/utils/calc.rs index 81bb5d4..4227c12 100644 --- a/src/utils/calc.rs +++ b/src/utils/calc.rs @@ -340,6 +340,7 @@ impl From for SlotCalculator { match value { KnownChains::Mainnet => SlotCalculator::mainnet(), KnownChains::Parmigiana => SlotCalculator::parmigiana_host(), + KnownChains::Gouda => SlotCalculator::parmigiana_host(), #[allow(deprecated)] KnownChains::Pecorino => SlotCalculator::pecorino_host(), KnownChains::Test => SlotCalculator::new( From 68a60bbc613d4eded415ad51cc45f5f056d9be83 Mon Sep 17 00:00:00 2001 From: Swanny Date: Sun, 17 May 2026 20:13:36 -0400 Subject: [PATCH 2/6] chore(deps): pin signet-storage family to gouda branch Replace crates.io signet-cold-sql v0.9.0 with a git-rev pin against the signet-storage gouda branch (7841fabdd71dd5b58a7bd21ccd9b7d25d11ddc55) to eliminate the diamond dep when consumed by node-components. Co-Authored-By: Claude Sonnet 4.6 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 01e4366..b6804a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ repository = "https://github.com/init4tech/bin-base" init4-from-env-derive = { version = "0.2.0", path = "from-env-derive" } # Signet -signet-cold-sql = { version = "0.9.0", optional = true, default-features = false, features = ["postgres", "sqlite"] } +signet-cold-sql = { git = "https://github.com/init4tech/storage", rev = "7841fabdd71dd5b58a7bd21ccd9b7d25d11ddc55", optional = true, default-features = false, features = ["postgres", "sqlite"] } signet-constants = { git = "https://github.com/init4tech/signet-sdk", rev = "8a85a4636bccf971226a9c80c311832ce33e998c" } signet-tx-cache = { version = "0.18.0", optional = true } From eb1ea72f67eff0f08c3233b216e1bfc3c0d6ff2b Mon Sep 17 00:00:00 2001 From: Swanny Date: Sun, 17 May 2026 21:50:37 -0400 Subject: [PATCH 3/6] chore(deps): bump signet-constants to gouda chains commit (3489c6b) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b6804a4..e0540fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ init4-from-env-derive = { version = "0.2.0", path = "from-env-derive" } # Signet signet-cold-sql = { git = "https://github.com/init4tech/storage", rev = "7841fabdd71dd5b58a7bd21ccd9b7d25d11ddc55", optional = true, default-features = false, features = ["postgres", "sqlite"] } -signet-constants = { git = "https://github.com/init4tech/signet-sdk", rev = "8a85a4636bccf971226a9c80c311832ce33e998c" } +signet-constants = { git = "https://github.com/init4tech/signet-sdk", rev = "3489c6b" } signet-tx-cache = { version = "0.18.0", optional = true } # alloy From 46d8f32fe51768b9c0eaa8bb1f0a6a6fcaad0cd4 Mon Sep 17 00:00:00 2001 From: Swanny Date: Sun, 17 May 2026 22:02:21 -0400 Subject: [PATCH 4/6] chore(deps): bump signet-cold-sql to storage gouda chains commit Update storage family pin from 7841fabd to 5ab8f75e to match the new gouda SHA and resolve the diamond dependency with downstream consumers. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e0540fe..bfd228d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ repository = "https://github.com/init4tech/bin-base" init4-from-env-derive = { version = "0.2.0", path = "from-env-derive" } # Signet -signet-cold-sql = { git = "https://github.com/init4tech/storage", rev = "7841fabdd71dd5b58a7bd21ccd9b7d25d11ddc55", optional = true, default-features = false, features = ["postgres", "sqlite"] } +signet-cold-sql = { git = "https://github.com/init4tech/storage", rev = "5ab8f75e2e89628b60128204132a8186afff1a4f", optional = true, default-features = false, features = ["postgres", "sqlite"] } signet-constants = { git = "https://github.com/init4tech/signet-sdk", rev = "3489c6b" } signet-tx-cache = { version = "0.18.0", optional = true } From dc2f86cd0b3a496ee92751eeeaef79977284395f Mon Sep 17 00:00:00 2001 From: Swanny Date: Sun, 17 May 2026 22:52:09 -0400 Subject: [PATCH 5/6] chore(deps): bump signet-constants to host-start-timestamp fix (ecce6a4) Co-Authored-By: Claude Sonnet 4.6 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bfd228d..1288a72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ init4-from-env-derive = { version = "0.2.0", path = "from-env-derive" } # Signet signet-cold-sql = { git = "https://github.com/init4tech/storage", rev = "5ab8f75e2e89628b60128204132a8186afff1a4f", optional = true, default-features = false, features = ["postgres", "sqlite"] } -signet-constants = { git = "https://github.com/init4tech/signet-sdk", rev = "3489c6b" } +signet-constants = { git = "https://github.com/init4tech/signet-sdk", rev = "ecce6a48a6af81c5f668c142b3a63452de02a146" } signet-tx-cache = { version = "0.18.0", optional = true } # alloy From b2f92e42bad741ed4b8eb02337085afb952a7c49 Mon Sep 17 00:00:00 2001 From: Swanny Date: Sun, 17 May 2026 23:01:52 -0400 Subject: [PATCH 6/6] chore(deps): bump signet-cold-sql to storage host-timestamp-fix (d5bf6fa) Co-Authored-By: Claude Sonnet 4.6 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1288a72..fa5e6cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ repository = "https://github.com/init4tech/bin-base" init4-from-env-derive = { version = "0.2.0", path = "from-env-derive" } # Signet -signet-cold-sql = { git = "https://github.com/init4tech/storage", rev = "5ab8f75e2e89628b60128204132a8186afff1a4f", optional = true, default-features = false, features = ["postgres", "sqlite"] } +signet-cold-sql = { git = "https://github.com/init4tech/storage", rev = "d5bf6fa", optional = true, default-features = false, features = ["postgres", "sqlite"] } signet-constants = { git = "https://github.com/init4tech/signet-sdk", rev = "ecce6a48a6af81c5f668c142b3a63452de02a146" } signet-tx-cache = { version = "0.18.0", optional = true }