Skip to content

Commit

Permalink
Merge branch 'nightly' into chores/upgrade_dalek_ed25519_to_2x
Browse files Browse the repository at this point in the history
# Conflicts:
#	Cargo.lock
#	module-system/sov-modules-api/Cargo.toml
  • Loading branch information
citizen-stig committed Aug 31, 2023
2 parents 43bdb65 + d66b9a0 commit 66c5562
Show file tree
Hide file tree
Showing 25 changed files with 434 additions and 387 deletions.
289 changes: 82 additions & 207 deletions Cargo.lock

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@ members = [
"examples/demo-simple-stf",
"examples/demo-rollup",
"examples/demo-nft-module",

"full-node/db/sov-db",
"full-node/sov-sequencer",
"utils/zk-cycle-macros",
"utils/zk-cycle-utils",
"full-node/sov-ethereum",

"full-node/sov-stf-runner",

"utils/zk-cycle-macros",
"utils/zk-cycle-utils",

"module-system/sov-cli",
"module-system/sov-modules-stf-template",
Expand All @@ -27,7 +28,7 @@ members = [
"module-system/utils/sov-data-generators",
"module-system/module-implementations/sov-accounts",
"module-system/module-implementations/sov-bank",
"module-system/module-implementations/sov-chain-state",
"module-system/module-implementations/sov-chain-state",
"module-system/module-implementations/sov-blob-storage",
"module-system/module-implementations/sov-evm",
"module-system/module-implementations/sov-prover-incentives",
Expand All @@ -53,9 +54,8 @@ repository = "https://github.com/sovereign-labs/sovereign-sdk"
rust-version = "1.66"

[workspace.dependencies]
# Dependencies maintained by sovereign
# TODO: replace by release number once available on crates.io: tracking issue https://github.com/Sovereign-Labs/sovereign-sdk/issues/632
jmt = { git = "https://github.com/penumbra-zone/jmt", commit = "46b4b00" }
# Dependencies maintained by Sovereign
jmt = { version = "0.7.0" }

# External dependencies
async-trait = "0.1.71"
Expand All @@ -76,7 +76,7 @@ proptest-derive = "0.3.0"
rand = "0.8"
rayon = "1.5.2"
rocksdb = { version = "0.21.0", features = ["lz4"] }
serde = { version = "1.0.188", features = ["derive", "rc"]}
serde = { version = "1.0.188", features = ["derive", "rc"] }
serde_json = { version = "1.0" }
sha2 = "0.10.6"
digest = "0.10.6"
Expand All @@ -87,7 +87,7 @@ bech32 = "0.9.1"
derive_more = "0.99.11"
clap = { version = "4.2.7", features = ["derive"] }
toml = "0.7.3"
jsonrpsee = {version = "0.18.2", features = ["jsonrpsee-types"] }
jsonrpsee = { version = "0.18.2", features = ["jsonrpsee-types"] }
schemars = { version = "0.8.12", features = ["derive"] }
tempfile = "3.5"
tokio = { version = "1", features = ["full"] }
Expand All @@ -101,10 +101,10 @@ ethers-providers = "=2.0.8"
ethers-signers = { version = "=2.0.8", default-features = false }
ethers-middleware = "=2.0.8"

reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "4ab924c5d361bbfdcdad9f997d16d67b4a1730b7"}
reth-rpc-types = { git = "https://github.com/paradigmxyz/reth", rev = "4ab924c5d361bbfdcdad9f997d16d67b4a1730b7"}
reth-rpc = { git = "https://github.com/paradigmxyz/reth", rev = "4ab924c5d361bbfdcdad9f997d16d67b4a1730b7"}
reth-revm = { git = "https://github.com/paradigmxyz/reth", rev = "4ab924c5d361bbfdcdad9f997d16d67b4a1730b7"}
reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "4ab924c5d361bbfdcdad9f997d16d67b4a1730b7" }
reth-rpc-types = { git = "https://github.com/paradigmxyz/reth", rev = "4ab924c5d361bbfdcdad9f997d16d67b4a1730b7" }
reth-rpc = { git = "https://github.com/paradigmxyz/reth", rev = "4ab924c5d361bbfdcdad9f997d16d67b4a1730b7" }
reth-revm = { git = "https://github.com/paradigmxyz/reth", rev = "4ab924c5d361bbfdcdad9f997d16d67b4a1730b7" }

revm = { git = "https://github.com/bluealloy/revm/", branch = "release/v25" }
revm-primitives = { git = "https://github.com/bluealloy/revm/", branch = "release/v25" }
Expand Down
4 changes: 2 additions & 2 deletions adapters/celestia/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ async-trait = { workspace = true }
anyhow = { workspace = true }
sha2 = { workspace = true }
base64 = "0.21.2"
hex = { version = "0.4.3", features = ["serde"] }
hex = { workspace = true, features = ["serde"] }
hex-literal = "0.4.1"
jsonrpsee = { version = "0.16.2", features = ["http-client"], optional = true }
jsonrpsee = { workspace = true, features = ["http-client"], optional = true }
serde = { workspace = true }
serde_json = { workspace = true, optional = true }
tokio = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion adapters/celestia/src/da_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ impl CelestiaService {

jsonrpsee::http_client::HttpClientBuilder::default()
.set_headers(headers)
.max_request_body_size(config.max_celestia_response_body_size) // 100 MB
.max_request_size(config.max_celestia_response_body_size)
.request_timeout(std::time::Duration::from_secs(
config.celestia_rpc_timeout_seconds,
))
Expand Down
Loading

0 comments on commit 66c5562

Please sign in to comment.