Skip to content

Commit 83c2791

Browse files
authored
fix: new constants for pecorino (#106)
* fix: new constants for pecorino * feat: bump version to 0.9.0
1 parent 57fa642 commit 83c2791

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

Cargo.toml

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

55
[workspace.package]
6-
version = "0.8.4"
6+
version = "0.9.0"
77
edition = "2021"
88
rust-version = "1.81"
99
authors = ["init4"]
@@ -34,16 +34,16 @@ debug = false
3434
incremental = false
3535

3636
[workspace.dependencies]
37-
signet-bundle = { version = "0.8.0", path = "crates/bundle" }
38-
signet-constants = { version = "0.8.0", path = "crates/constants" }
39-
signet-evm = { version = "0.8.0", path = "crates/evm" }
40-
signet-extract = { version = "0.8.0", path = "crates/extract" }
41-
signet-node = { version = "0.8.0", path = "crates/node" }
42-
signet-sim = { version = "0.8.0", path = "crates/sim" }
43-
signet-types = { version = "0.8.0", path = "crates/types" }
44-
signet-tx-cache = { version = "0.8.0", path = "crates/tx-cache" }
45-
signet-zenith = { version = "0.8.0", path = "crates/zenith" }
46-
signet-test-utils = { version = "0.8.0", path = "crates/test-utils" }
37+
signet-bundle = { version = "0.9", path = "crates/bundle" }
38+
signet-constants = { version = "0.9", path = "crates/constants" }
39+
signet-evm = { version = "0.9", path = "crates/evm" }
40+
signet-extract = { version = "0.9", path = "crates/extract" }
41+
signet-node = { version = "0.9", path = "crates/node" }
42+
signet-sim = { version = "0.9", path = "crates/sim" }
43+
signet-types = { version = "0.9", path = "crates/types" }
44+
signet-tx-cache = { version = "0.9", path = "crates/tx-cache" }
45+
signet-zenith = { version = "0.9", path = "crates/zenith" }
46+
signet-test-utils = { version = "0.9", path = "crates/test-utils" }
4747

4848
# ajj
4949
ajj = { version = "0.3.4" }

crates/constants/src/chains/pecorino.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@ pub const HOST_NAME: &str = "Pecorino Host";
1212
/// Chain ID for the Pecorino testnet host chain.
1313
pub const HOST_CHAIN_ID: u64 = 3151908;
1414
/// Deployment height for the Pecorino testnet host chain.
15-
pub const DEPLOY_HEIGHT: u64 = 149984;
15+
pub const DEPLOY_HEIGHT: u64 = 366;
1616
/// `Zenith` contract address for the Pecorino testnet host chain.
17-
pub const HOST_ZENITH: Address = address!("0xbe45611502116387211D28cE493D6Fb3d192bc4E");
17+
pub const HOST_ZENITH: Address = address!("0xf17E98baF73F7C78a42D73DF4064de5B7A20EcA6");
1818
/// `Orders` contract address for the Pecorino testnet host chain.
19-
pub const HOST_ORDERS: Address = address!("0x4E8cC181805aFC307C83298242271142b8e2f249");
19+
pub const HOST_ORDERS: Address = address!("0x0A4f505364De0Aa46c66b15aBae44eBa12ab0380");
2020
/// `Passage` contract address for the Pecorino testnet host chain.
21-
pub const HOST_PASSAGE: Address = address!("0xd553C4CA4792Af71F4B61231409eaB321c1Dd2Ce");
21+
pub const HOST_PASSAGE: Address = address!("0x12585352AA1057443D6163B539EfD4487f023182");
2222
/// `Transactor` contract address for the Pecorino testnet host chain.
23-
pub const HOST_TRANSACTOR: Address = address!("0x1af3A16857C28917Ab2C4c78Be099fF251669200");
23+
pub const HOST_TRANSACTOR: Address = address!("0x3903279B59D3F5194053dA8d1f0C7081C8892Ce4");
2424

2525
/// USDC token for the Pecorino testnet host chain.
26-
pub const HOST_USDC: Address = address!("0x885F8DB528dC8a38aA3DDad9D3F619746B4a6A81");
26+
pub const HOST_USDC: Address = address!("0x65fb255585458de1f9a246b476aa8d5c5516f6fd");
2727
/// USDT token for the Pecorino testnet host chain.
28-
pub const HOST_USDT: Address = address!("0x7970D259D4a96764Fa9B23FF0715A35f06f52D1A");
28+
pub const HOST_USDT: Address = address!("0xb9df1b911b6cf6935b2a918ba03df2372e94e267");
2929
/// WBTC token for the Pecorino testnet host chain.
30-
pub const HOST_WBTC: Address = address!("0x9aeDED4224f3dD31aD8A0B1FcD05E2d7829283a7");
30+
pub const HOST_WBTC: Address = address!("0xfb29f7d7a4ce607d6038d44150315e5f69bea08a");
3131
/// WETH token for the Pecorino testnet host chain.
32-
pub const HOST_WETH: Address = address!("0x572C4d72080ed9E9997509b583a22B785B70cB3f");
32+
pub const HOST_WETH: Address = address!("0xd03d085B78067A18155d3B29D64914df3D19A53C");
3333

3434
/// USDC token record for the Pecorino testnet host chain.
3535
pub const HOST_USDC_RECORD: HostUsdRecord = HostUsdRecord::new(HOST_USDC, Cow::Borrowed("USDC"), 6);

0 commit comments

Comments
 (0)