Skip to content

chore: sets signet-sdk dependency back to latest #101

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ 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", 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"] }

Expand All @@ -43,6 +43,7 @@ alloy = { version = "1.0.5", features = [
"rlp",
"node-bindings",
"serde",
"getrandom"
] }

serde = { version = "1.0.197", features = ["derive"] }
Expand All @@ -57,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"
2 changes: 1 addition & 1 deletion src/quincey.rs
Original file line number Diff line number Diff line change
@@ -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,
};
Expand Down
4 changes: 2 additions & 2 deletions src/tasks/submit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down Expand Up @@ -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
Expand Down