Skip to content

Commit 10e6ee6

Browse files
committed
chore: update address default fallbacks
1 parent 070c1e1 commit 10e6ee6

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ HYP_KEY_COSMOSNATIVE=0x6e30efb1d3ebd30d1ba08c8d5fc9b190e08394009dc1dd787a69e60c3
1717
PRIVATE_KEY="0x82bfcfadbf1712f6550d8d2c00a39f05b33ec78939d0167be2a737d691f33a6a"
1818

1919
# Default ISM identifier deployed by the docker compose network.
20-
CELESTIA_ISM_ID="0x726f757465725f69736d000000000000000000000000002a0000000000000001"
20+
CELESTIA_ISM_ID="0x726f757465725f69736d000000000000000000000000002a0000000000000002"
2121

2222
# The Hyperlane Mailbox Address on Evolve
2323
MAILBOX_ADDRESS="0xa05915fd6e32a1aa7e67d800164cacb12487142d"

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ transfer:
5050
--volume celestia-zkevm_celestia-app:/home/celestia/.celestia-app \
5151
ghcr.io/celestiaorg/celestia-app-standalone:feature-zk-execution-ism \
5252
tx warp transfer 0x726f757465725f61707000000000000000000000000000010000000000000000 1234 0x000000000000000000000000aF9053bB6c4346381C77C2FeD279B17ABAfCDf4d "10000000" \
53-
--from default --fees 800utia --max-hyperlane-fee 36400utia --node http://celestia-validator:26657 --yes
53+
--from default --fees 1000utia --gas auto --max-hyperlane-fee 36400utia --node http://celestia-validator:26657 --yes
5454
.PHONY: transfer
5555

5656
## transfer-back: Transfer tokens back from the EVM roll-up to celestia-app.
@@ -110,5 +110,5 @@ deploy-ism-tee:
110110

111111
update-ism:
112112
@echo "--> Updating ISM"
113-
@RUST_LOG="ev_prover=info" cargo run -p ev-prover set-token-ism 0x726f757465725f69736d000000000000000000000000002a0000000000000001 0x726f757465725f61707000000000000000000000000000010000000000000000
113+
@RUST_LOG="ev_prover=info" cargo run -p ev-prover set-token-ism 0x726f757465725f69736d000000000000000000000000002a0000000000000002 0x726f757465725f61707000000000000000000000000000010000000000000000
114114
.PHONY: update-ism

crates/ev-prover/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ cargo run --release --features retry -p ev-hyperlane-script --bin ev-hyperlane -
128128

129129
Example with values:
130130
```bash
131-
cargo run --release --features retry -p ev-hyperlane-script --bin ev-hyperlane -- --snapshot-index 0 --mailbox-id 0x68797065726c616e650000000000000000000000000000000000000000000000 --contract 0x1D957dA7A6988f5a9d2D2454637B4B7fea0Aeea5 --rpc-url http://127.0.0.1:8545
131+
cargo run --release --features retry -p ev-hyperlane-script --bin ev-hyperlane -- --snapshot-index 0 --mailbox-id 0x68797065726c616e650000000000000000000000000000000000000000000000 --contract 0x6007cE81D2FD7b9b7f22e71cE9896e00d6017ba8 --rpc-url http://127.0.0.1:8545
132132
```
133133

134134
Assuming that there is an unfinalized snapshot at index `N` in the database and that the latest snapshot is >`N`, the correct snapshot-index to pass is `N-1`.

crates/ev-prover/src/config/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,8 @@ impl EvmHyperlaneConfig {
230230
impl Default for EvmHyperlaneConfig {
231231
fn default() -> Self {
232232
Self {
233-
mailbox_address: "0xb1c938f5ba4b3593377f399e12175e8db0c787ff".into(),
234-
merkle_tree_address: "0x1D957dA7A6988f5a9d2D2454637B4B7fea0Aeea5".into(),
233+
mailbox_address: "0xa05915fd6e32a1aa7e67d800164cacb12487142d".into(),
234+
merkle_tree_address: "0x6007cE81D2FD7b9b7f22e71cE9896e00d6017ba8".into(),
235235
}
236236
}
237237
}
@@ -249,7 +249,7 @@ pub struct CelestiaHyperlaneConfig {
249249
impl CelestiaHyperlaneConfig {
250250
pub fn from_env() -> Result<Self> {
251251
let ism_id = env::var("CELESTIA_ISM_ID")
252-
.unwrap_or_else(|_| "0x726f757465725f69736d000000000000000000000000002a0000000000000001".to_string());
252+
.unwrap_or_else(|_| "0x726f757465725f69736d000000000000000000000000002a0000000000000002".to_string());
253253
let mailbox_id = env::var("CELESTIA_MAILBOX_ADDRESS")
254254
.unwrap_or_else(|_| "0x68797065726c616e650000000000000000000000000000000000000000000000".to_string());
255255
Ok(Self { ism_id, mailbox_id })
@@ -259,7 +259,7 @@ impl CelestiaHyperlaneConfig {
259259
impl Default for CelestiaHyperlaneConfig {
260260
fn default() -> Self {
261261
Self {
262-
ism_id: "0x726f757465725f69736d000000000000000000000000002a0000000000000001".to_string(),
262+
ism_id: "0x726f757465725f69736d000000000000000000000000002a0000000000000002".to_string(),
263263
mailbox_id: "0x68797065726c616e650000000000000000000000000000000000000000000000".to_string(),
264264
}
265265
}

crates/ev-state-queries/src/hyperlane/indexer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ impl HyperlaneIndexer {
7070

7171
impl Default for HyperlaneIndexer {
7272
fn default() -> Self {
73-
let contract_address = Address::from_str("0xb1c938f5ba4b3593377f399e12175e8db0c787ff").unwrap();
73+
let contract_address = Address::from_str("0xa05915fd6e32a1aa7e67d800164cacb12487142d").unwrap();
7474
let filter = Filter::new()
7575
.address(contract_address)
7676
.event(&Dispatch::id())

crates/sp1/ev-hyperlane/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ See `.env.example` at the root of the repository.
5454
Run the `ev-hyperlane` binary in execution mode.
5555

5656
```shell
57-
RUST_LOG=info cargo run -p ev-hyperlane-script --release -- --execute --contract 0x1D957dA7A6988f5a9d2D2454637B4B7fea0Aeea5 --start-height 0 --target-height 268 --rpc-url http://127.0.0.1:8545
57+
RUST_LOG=info cargo run -p ev-hyperlane-script --release -- --execute --contract 0x6007cE81D2FD7b9b7f22e71cE9896e00d6017ba8 --start-height 0 --target-height 268 --rpc-url http://127.0.0.1:8545
5858
```
5959

6060
Run the `ev-hyperlane` binary in proving mode.

crates/sp1/ev-hyperlane/script/src/bin/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
//!
44
//! You can run this script using the following command:
55
//! ```shell
6-
//! RUST_LOG=info cargo run -p ev-hyperlane-script --release -- --execute --contract 0x1D957dA7A6988f5a9d2D2454637B4B7fea0Aeea5 --start-idx 0 --end-idx 23 --target-height 268 --rpc-url http://127.0.0.1:8545
6+
//! RUST_LOG=info cargo run -p ev-hyperlane-script --release -- --execute --contract 0x6007cE81D2FD7b9b7f22e71cE9896e00d6017ba8 --start-idx 0 --end-idx 23 --target-height 268 --rpc-url http://127.0.0.1:8545
77
//! ```
88
//! or
99
//! ```shell
10-
//! RUST_LOG=info cargo run -p ev-hyperlane-script --release -- --prove --contract 0x1D957dA7A6988f5a9d2D2454637B4B7fea0Aeea5 --start-idx 0 --end-idx 23 --target-height 268 --rpc-url http://127.0.0.1:8545
10+
//! RUST_LOG=info cargo run -p ev-hyperlane-script --release -- --prove --contract 0x6007cE81D2FD7b9b7f22e71cE9896e00d6017ba8 --start-idx 0 --end-idx 23 --target-height 268 --rpc-url http://127.0.0.1:8545
1111
//! ```
1212
1313
use alloy_primitives::{hex::FromHex, Address, FixedBytes};

0 commit comments

Comments
 (0)