Skip to content

Commit

Permalink
Historical release: v0.142.1
Browse files Browse the repository at this point in the history
  • Loading branch information
popzxc committed Aug 15, 2024
1 parent 2c212fc commit 9975a64
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion crates/circuit_encodings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "circuit_encodings"
version = "0.141.1"
version = "0.142.1"
edition = "2021"
authors = ["The Matter Labs Team <hello@matterlabs.dev>"]
homepage = "https://zksync.io/"
Expand Down
12 changes: 6 additions & 6 deletions crates/circuit_sequencer_api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "circuit_sequencer_api"
version = "0.141.1"
version = "0.142.1"
edition = "2021"
authors = ["The Matter Labs Team <hello@matterlabs.dev>"]
homepage = "https://zksync.io/"
Expand All @@ -10,17 +10,17 @@ keywords = ["blockchain", "zksync"]
categories = ["cryptography"]
description = "ZKsync Era circuits API for sequencer"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
circuit_encodings = { version = "0.142", path = "../circuit_encodings"} # Not pinned, because it's an old dependency used by MultiVM

zk_evm = { version = "0.141", path = "../zk_evm" }
bellman = { package = "bellman_ce", version = "0" } # Not pinned, because it's an old dependency used by MultiVM

circuit_encodings = { version = "0.141", path = "../circuit_encodings" } # Not pinned, because it's an old dependency used by MultiVM
zk_evm = { version = "0.141", path = "../zk_evm" } # Not pinned, because it's an old dependency used by MultiVM
bellman = { package = "bellman_ce", version = "0" } # Not pinned, because it's an old dependency used by MultiVM

derivative = "2.2"
serde = {version = "1", features = ["derive"]}
rayon = "1.10"


[features]
default = []
6 changes: 6 additions & 0 deletions crates/circuit_sequencer_api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@ pub mod utils;
pub use circuit_encodings::boojum;

pub const INITIAL_MONOTONIC_CYCLE_COUNTER: u32 = 1024;

// Export parameters needed for 4844 blobs.
pub use circuit_encodings::zkevm_circuits::eip_4844::input::{
BLOB_CHUNK_SIZE, ELEMENTS_PER_4844_BLOCK,
};
pub use circuit_encodings::zkevm_circuits::scheduler::block_header::MAX_4844_BLOBS_PER_BLOCK;

0 comments on commit 9975a64

Please sign in to comment.