Skip to content

Commit

Permalink
Update taiko consts for testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
johntaiko committed Jan 10, 2024
1 parent 825a228 commit a3d03d7
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions primitives/src/taiko/consts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,24 @@ pub static GOLDEN_TOUCH_ACCOUNT: Lazy<Address> = Lazy::new(|| {
pub mod testnet {
use super::*;
pub const CHAIN_ID: u64 = 167008;
pub static L1_SIGNAL_SERVICE: Lazy<Address> = Lazy::new(|| {
Address::from_str("0xb36a8742CDeA0195f5e659DED165FeA0dCC9F485")
.expect("invalid l1 signal service")
});

pub static L2_SIGNAL_SERVICE: Lazy<Address> = Lazy::new(|| {
Address::from_str("0x1670080000000000000000000000000000000005")
.expect("invalid l2 signal service")
});

pub static L1_CONTRACT: Lazy<Address> = Lazy::new(|| {
Address::from_str("0x62Acda3Ad15B382C32B2fB21BEAc9DfB95bbb02F")
Address::from_str("0x488797321FA4272AF9d0eD4cDAe5Ec7a0210cBD5")
.expect("invalid l1 contract address")
});

pub static L1_SIGNAL_SERVICE: Lazy<Address> = Lazy::new(|| {
Address::from_str("0xf6eA848c7d7aC83de84db45Ae28EAbf377fe0eF9")
.expect("invalid l1 signal service")
});
pub static L2_CONTRACT: Lazy<Address> = Lazy::new(|| {
Address::from_str("0x1670080000000000000000000000000000010001")
.expect("invalid l2 contract address")
});

pub static L2_SIGNAL_SERVICE: Lazy<Address> = Lazy::new(|| {
Address::from_str("0x1670080000000000000000000000000000000005")
.expect("invalid l2 signal service")
});
}

pub mod internal_devnet_a {
Expand Down

0 comments on commit a3d03d7

Please sign in to comment.