Skip to content

Commit

Permalink
v0.6.2 changes (#1748)
Browse files Browse the repository at this point in the history
  • Loading branch information
eyusufatik authored Jan 27, 2025
1 parent 36cbf7e commit 87bf7ff
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
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 @@ -12,7 +12,7 @@ extern crate alloc;
///
/// Mostly used for web3_clientVersion RPC calls and might be used for other purposes.
#[cfg(feature = "native")]
pub const CITREA_VERSION: &str = "v0.6.1";
pub const CITREA_VERSION: &str = "v0.6.2";

/// Fork module
pub mod fork;
Expand Down
8 changes: 4 additions & 4 deletions docs/run-testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Finally run this command to run your Citrea full node:

Mac:
```sh
RISC0_DEV_MODE=1 ./citrea-v0.6.1-osx-arm64 --network testnet --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis
RISC0_DEV_MODE=1 ./citrea-v0.6.2-osx-arm64 --network testnet --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis
```

or if you wish to use environment variables for configuring your node:
Expand Down Expand Up @@ -147,12 +147,12 @@ SYNC_BLOCKS_COUNT=10 \
RUST_LOG=info \
JSON_LOGS=1 \
RISC0_DEV_MODE=1 \
./citrea-v0.6.1-osx-arm64 --network testnet --da-layer bitcoin --genesis-paths ./genesis
./citrea-v0.6.2-osx-arm64 --network testnet --da-layer bitcoin --genesis-paths ./genesis
```

Linux:
```sh
RISC0_DEV_MODE=1 ./citrea-v0.6.1-linux-amd64 --network testnet --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis
RISC0_DEV_MODE=1 ./citrea-v0.6.2-linux-amd64 --network testnet --da-layer bitcoin --rollup-config-path ./rollup_config.toml --genesis-paths ./genesis
```

or if you wish to use environment variables for configuring your node:
Expand Down Expand Up @@ -183,7 +183,7 @@ SYNC_BLOCKS_COUNT=10 \
RUST_LOG=info \
JSON_LOGS=1 \
RISC0_DEV_MODE=1 \
./citrea-v0.6.1-linux-amd64 --network testnet --da-layer bitcoin --genesis-paths ./genesis
./citrea-v0.6.2-linux-amd64 --network testnet --da-layer bitcoin --genesis-paths ./genesis
```

Your full node should be serving RPC at `http://0.0.0.0:8080` now.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const NETWORK: Network = match option_env!("CITREA_NETWORK") {
const L2_GENESIS_ROOT: [u8; 32] = {
let hex_root = match NETWORK {
Network::Mainnet => "0000000000000000000000000000000000000000000000000000000000000000",
Network::Testnet => "30137f8bc0844bbbe0a324c17cb3a1920b086c6f8a2e11999f77299455c33079",
Network::Testnet => "0a1db64d55fe6f130504c804ae7a004bb7f221bc802a3ea68b7f64595e27d725",
Network::Devnet => "774cfc6982d0fbcbbe888ef0be395e67aac8eb1ed123021ae5380562f1d94281",
Network::Nightly | Network::TestNetworkWithForks => match option_env!("L2_GENESIS_ROOT") {
Some(hex_root) => hex_root,
Expand Down Expand Up @@ -57,7 +57,7 @@ const INITIAL_BATCH_PROOF_METHOD_IDS: &[(u64, [u32; 8])] = {
(
5546000,
decode_to_u32_array(
"b4a441f12ec8eb7e53967198bf006e98c2898cfe4ef68757d3d40918254e6bce",
"50757c7c24e165267d92794e59aca4e57758f3ac87cd20c512894aed4b87d4ff",
),
),
],
Expand Down
Binary file modified resources/guests/risc0/testnet/batch-1.elf
Binary file not shown.
Binary file modified resources/guests/risc0/testnet/light-0.elf
Binary file not shown.

0 comments on commit 87bf7ff

Please sign in to comment.