From 22347177d9a4c63a86e839bed84c1f6d9632c931 Mon Sep 17 00:00:00 2001 From: dylan Date: Wed, 4 Jun 2025 12:10:54 -0600 Subject: [PATCH 1/4] sets signet-sdk dependency back to point at main --- Cargo.toml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8a9174b..5b8d01d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,11 +27,11 @@ integration = [] [dependencies] init4-bin-base = { version = "0.4.1", features = ["perms"] } -signet-constants = { git = "https://github.com/init4tech/signet-sdk", rev = "ba5894f6fac35299d495ae115cd465a1f0791637" } -signet-sim = { git = "https://github.com/init4tech/signet-sdk", rev = "ba5894f6fac35299d495ae115cd465a1f0791637" } -signet-tx-cache = { git = "https://github.com/init4tech/signet-sdk", rev = "ba5894f6fac35299d495ae115cd465a1f0791637" } -signet-types = { git = "https://github.com/init4tech/signet-sdk", rev = "ba5894f6fac35299d495ae115cd465a1f0791637" } -signet-zenith = { git = "https://github.com/init4tech/signet-sdk", rev = "ba5894f6fac35299d495ae115cd465a1f0791637" } +signet-constants = { git = "https://github.com/init4tech/signet-sdk" } +signet-sim = { git = "https://github.com/init4tech/signet-sdk" } +signet-tx-cache = { git = "https://github.com/init4tech/signet-sdk" } +signet-types = { git = "https://github.com/init4tech/signet-sdk" } +signet-zenith = { git = "https://github.com/init4tech/signet-sdk" } trevm = { version = "0.23.4", features = ["concurrent-db", "test-utils"] } @@ -43,6 +43,7 @@ alloy = { version = "1.0.5", features = [ "rlp", "node-bindings", "serde", + "getrandom" ] } serde = { version = "1.0.197", features = ["derive"] } From d0751b42e0e4901d707b21b47e0fea8a1d692267 Mon Sep 17 00:00:00 2001 From: dylan Date: Wed, 4 Jun 2025 16:53:13 -0600 Subject: [PATCH 2/4] bump bin-base to 0.4.2 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5b8d01d..a66ddbb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ path = "bin/submit_transaction.rs" integration = [] [dependencies] -init4-bin-base = { version = "0.4.1", features = ["perms"] } +init4-bin-base = { version = "0.4.2", features = ["perms"] } signet-constants = { git = "https://github.com/init4tech/signet-sdk" } signet-sim = { git = "https://github.com/init4tech/signet-sdk" } From da4de413929a97a454c962dcf30964a337a35b57 Mon Sep 17 00:00:00 2001 From: dylan Date: Fri, 6 Jun 2025 16:08:22 -0600 Subject: [PATCH 3/4] fixes tracing import path issue - Creates ENG-1123 --- Cargo.toml | 11 ++++++----- src/quincey.rs | 2 +- src/tasks/submit.rs | 4 ++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a66ddbb..1d1ffc4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,11 +27,11 @@ integration = [] [dependencies] init4-bin-base = { version = "0.4.2", features = ["perms"] } -signet-constants = { git = "https://github.com/init4tech/signet-sdk" } -signet-sim = { git = "https://github.com/init4tech/signet-sdk" } -signet-tx-cache = { git = "https://github.com/init4tech/signet-sdk" } -signet-types = { git = "https://github.com/init4tech/signet-sdk" } -signet-zenith = { git = "https://github.com/init4tech/signet-sdk" } +signet-constants = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" } +signet-sim = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" } +signet-tx-cache = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" } +signet-types = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" } +signet-zenith = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" } trevm = { version = "0.23.4", features = ["concurrent-db", "test-utils"] } @@ -58,3 +58,4 @@ tokio = { version = "1.36.0", features = ["full", "macros", "rt-multi-thread"] } oauth2 = "5" tokio-stream = "0.1.17" url = "2.5.4" +tracing = "0.1.41" diff --git a/src/quincey.rs b/src/quincey.rs index c4ad2c2..cb80a03 100644 --- a/src/quincey.rs +++ b/src/quincey.rs @@ -1,7 +1,7 @@ use alloy::signers::Signer; use eyre::bail; use init4_bin_base::{ - deps::tracing::{self, debug, info, instrument, trace}, + deps::tracing::{debug, info, instrument, trace}, perms::SharedToken, utils::signer::LocalOrAws, }; diff --git a/src/tasks/submit.rs b/src/tasks/submit.rs index 6065a7d..02efc26 100644 --- a/src/tasks/submit.rs +++ b/src/tasks/submit.rs @@ -16,7 +16,7 @@ use alloy::{ use eyre::bail; use init4_bin_base::deps::{ metrics::{counter, histogram}, - tracing::{self, Instrument, debug, debug_span, error, info, instrument, warn}, + tracing::{Instrument, debug, debug_span, error, info, instrument, warn}, }; use signet_sim::BuiltBlock; use signet_types::{SignRequest, SignResponse}; @@ -221,7 +221,7 @@ impl SubmitTask { // Extract fills from the built block let fills = self.extract_fills(block); - debug!(?fills, "extracted fills"); + debug!(fill_count = fills.len(), "extracted fills"); // Create a blob transaction with the blob header and signature values and return it let tx = self From 7c37a08e1fc38d1050b27e858ca1863e5a783262 Mon Sep 17 00:00:00 2001 From: dylan Date: Fri, 6 Jun 2025 16:10:03 -0600 Subject: [PATCH 4/4] fix --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1d1ffc4..a468bd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,11 +27,11 @@ integration = [] [dependencies] init4-bin-base = { version = "0.4.2", features = ["perms"] } -signet-constants = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" } -signet-sim = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" } -signet-tx-cache = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" } -signet-types = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" } -signet-zenith = { git = "https://github.com/init4tech/signet-sdk", branch = "dylan/logging" } +signet-constants = { git = "https://github.com/init4tech/signet-sdk" } +signet-sim = { git = "https://github.com/init4tech/signet-sdk" } +signet-tx-cache = { git = "https://github.com/init4tech/signet-sdk" } +signet-types = { git = "https://github.com/init4tech/signet-sdk" } +signet-zenith = { git = "https://github.com/init4tech/signet-sdk" } trevm = { version = "0.23.4", features = ["concurrent-db", "test-utils"] }