Skip to content

Release v0.7.0 rc.3 #2247

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

Merged
merged 11 commits into from
Apr 14, 2025
70 changes: 35 additions & 35 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ members = [
]

[workspace.package]
version = "0.7.0-rc.2"
version = "0.7.0-rc.3"
edition = "2021"
license = "GPL-3.0"
authors = ["Chainway Labs <[email protected]>"]
Expand Down
18 changes: 9 additions & 9 deletions crates/bitcoin-da/src/network_constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,19 @@ pub const INITIAL_TESTNET4_STATE: LatestDaState = LatestDaState {

pub const INITIAL_SIGNET_STATE: LatestDaState = LatestDaState {
block_hash: [
195, 231, 238, 18, 219, 138, 28, 49, 67, 111, 70, 30, 22, 196, 205, 86, 220, 247, 116, 52,
98, 251, 105, 153, 152, 53, 36, 217, 0, 0, 0, 0,
245, 79, 209, 136, 168, 232, 39, 32, 63, 156, 16, 98, 53, 39, 221, 58, 154, 156, 163, 63,
207, 76, 63, 27, 100, 126, 53, 190, 9, 3, 0, 0,
],
block_height: 29999,
block_height: 12,
total_work: [
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 248, 208,
52, 42, 132,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 191,
197, 4,
],
current_target_bits: 0x1d00f27e,
epoch_start_time: 1743078157,
current_target_bits: 0x1e0377ae,
epoch_start_time: 1598918400,
prev_11_timestamps: [
1744094019, 1744095015, 1744096351, 1744090144, 1744090180, 1744090255, 1744090821,
1744091059, 1744091830, 1744093263, 1744093286,
1732838717, 1732838728, 1732838622, 1732838632, 1732838643, 1732838653, 1732838665,
1732838675, 1732838686, 1732838696, 1732838707,
],
};

Expand Down
4 changes: 2 additions & 2 deletions crates/light-client-prover/src/circuit/initial_values.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ pub mod bitcoinda {
};

pub const DEVNET_GENESIS_ROOT: [u8; 32] = match const_hex::const_decode_to_array(
b"e5bb343b25b6ef5341c8d1d04e388d31c448248c5f8a86ed7db3f134463220b7",
b"ee72838efc878217d4a8150828f19afa9e58c3270269413a3c757aeddbad05a6",
) {
Ok(root) => root,
Err(_) => panic!("Can't happen"),
Expand Down Expand Up @@ -119,7 +119,7 @@ pub mod bitcoinda {

pub const DEVNET_INITIAL_BATCH_PROOF_METHOD_IDS: &[(u64, [u32; 8])] = &[(
0,
decode_to_u32_array("e61101ffeef3a30cbf301b09288934f82767d1026d2a2672ec790979363ac1e0"),
decode_to_u32_array("26af8a6fbafcf3eb81fe6d56c8c6e79ad78af645ab7b9803393477d6001cf8e4"),
)];

pub const NIGHTLY_INITIAL_BATCH_PROOF_METHOD_IDS: &[(u64, [u32; 8])] = {
Expand Down
6 changes: 1 addition & 5 deletions crates/primitives/src/forks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,7 @@ pub const TESTNET_FORKS: [Fork; 3] = [
Fork::new(SpecId::Tangerine, 5546000 * 4), // TODO: Update
];

pub const DEVNET_FORKS: [Fork; 3] = [
Fork::new(SpecId::Genesis, 0),
Fork::new(SpecId::Kumquat, 1921835),
Fork::new(SpecId::Tangerine, 5625700),
];
pub const DEVNET_FORKS: [Fork; 1] = [Fork::new(SpecId::Tangerine, 0)];

pub const NIGHTLY_FORKS: [Fork; 1] = [Fork::new(SpecId::Tangerine, 0)];

Expand Down
2 changes: 1 addition & 1 deletion crates/sovereign-sdk/rollup-interface/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
///
/// Mostly used for web3_clientVersion RPC calls and might be used for other purposes.
#[cfg(feature = "native")]
pub const CITREA_VERSION: &str = "v0.7.0-rc.1";
pub const CITREA_VERSION: &str = "v0.7.0-rc.3";

/// Fork module
pub mod fork;
Expand Down
Loading
Loading