Skip to content

Commit 5d2495c

Browse files
authored
chore(genesis): correct RU orders address (#85)
* chore(genesis): correct RU orders address * chore: version bump * chore: make passage address dummy value (0xff) * chore: repeat byte
1 parent ac2ccfe commit 5d2495c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.4.2"
6+
version = "0.4.3"
77
edition = "2021"
88
rust-version = "1.81"
99
authors = ["init4"]

crates/constants/src/chains/pecorino.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ pub const RU_NAME: &str = "Pecorino";
4141
/// Chain ID for the Pecorino testnet RU chain.
4242
pub const RU_CHAIN_ID: u64 = 14174;
4343
/// `Orders` contract address for the Pecorino testnet RU chain.
44-
pub const RU_ORDERS: Address = address!("0x8e9806fFF56d0660683F0A8157cE70F541A49dD0");
44+
pub const RU_ORDERS: Address = address!("0xC2D3Dac6B115564B10329697195656459BFb2c74");
4545
/// `Passage` contract address for the Pecorino testnet RU chain.
46-
pub const RU_PASSAGE: Address = address!("0x862c10E42B7D07dfDE6F74af61B20A55ca5243FE");
46+
/// This is currently a dummy value and will be replaced with the actual Passage contract address in the future.
47+
pub const RU_PASSAGE: Address = Address::repeat_byte(0xff);
4748
/// Base fee recipient address for the Pecorino testnet RU chain.
4849
pub const BASE_FEE_RECIPIENT: Address = address!("0xe0eDA3701D44511ce419344A4CeD30B52c9Ba231");
4950

0 commit comments

Comments
 (0)