Skip to content
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
115 changes: 61 additions & 54 deletions madara/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions madara/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,8 @@ mc-e2e-tests = { path = "crates/tests" }
build-version = { path = "../build-artifacts" }

# Starknet dependencies
starknet-accounts = "0.11.0"
starknet-core = "0.12"
starknet-crypto = "0.7"
starknet-providers = "0.12"
starknet-signers = "0.10"
starknet = "0.12.0"
starknet = "0.13.0"

starknet-types-core = { version = "0.1.7", default-features = false, features = [
"hash",
Expand Down Expand Up @@ -265,4 +261,4 @@ chrono = { version = "0.4", features = ["serde"] }
[patch.crates-io]
rocksdb = { git = "https://github.com/madara-alliance/rust-rocksdb", branch = "read-options-set-raw-snapshot" }
librocksdb-sys = { git = "https://github.com/madara-alliance/rust-rocksdb", branch = "read-options-set-raw-snapshot" }
starknet-core = { git = "https://github.com/kasarlabs/starknet-rs.git", rev = "70e1ee45dc701afc2a7629bf88bb5d90a93d51a7" }
starknet-core = { git = "https://github.com/kasarlabs/starknet-rs.git", branch = "fork" }
2 changes: 1 addition & 1 deletion madara/crates/client/block_production/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ mp-utils.workspace = true

# Starknet
blockifier.workspace = true
starknet-core.workspace = true
starknet.workspace = true
starknet-types-core.workspace = true
starknet_api.workspace = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use mp_rpc::v0_7_1::BroadcastedTxn;
use mp_transactions::IntoStarknetApiExt;
use mp_transactions::{L1HandlerTransaction, L1HandlerTransactionWithFee};
use rstest::fixture;
use starknet_core::utils::get_selector_from_name;
use starknet::core::utils::get_selector_from_name;
use std::sync::Arc;
use std::time::Duration;
use tokio::sync::mpsc::UnboundedSender;
Expand Down
Loading
Loading