Skip to content

Commit a806a1e

Browse files
committed
Most production constants except starting block
1 parent f2eb4e0 commit a806a1e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/dao.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,23 @@ pub const DAO_CHAIN_ID: u64 = 8453; // Base
2323
#[cfg(feature = "simulation-mode")]
2424
pub const DAO_CHAIN_ID: u64 = 31337; // Anvil / fakenet
2525
#[cfg(not(feature = "simulation-mode"))]
26-
pub const DAO_TIMELOCK_ADDRESS: &str = "0x322D23640D57f36aE058FCc43e02C2A307678166";
26+
pub const DAO_TIMELOCK_ADDRESS: &str = "0x0000000000c3442cbc1E194BBD6f74713816e51B";
2727
#[cfg(feature = "simulation-mode")]
2828
pub const DAO_TIMELOCK_ADDRESS: &str = "0xb7Dcc6Ce8efFD80Fc26f0FD1A5C226C3c53f6D8F";
2929

3030
#[cfg(not(feature = "simulation-mode"))]
31-
pub const DAO_GOVERNOR_ADDRESS: &str = "0x45d8B75bb9A961E88486C470bcf8aa13E506Ec9B";
31+
pub const DAO_GOVERNOR_ADDRESS: &str = "0x000000000048395579c3C60f2F8Cb2DECa457550";
3232
#[cfg(feature = "simulation-mode")]
3333
pub const DAO_GOVERNOR_ADDRESS: &str = "0x45d8B75bb9A961E88486C470bcf8aa13E506Ec9B";
3434

3535
#[cfg(not(feature = "simulation-mode"))]
36-
pub const DAO_VOTES_TOKEN_ADDRESS: &str = "0xec48905Bb1714bbf3B6f56E49a8FA2299Bfa55f5";
36+
pub const DAO_VOTES_TOKEN_ADDRESS: &str = "0x00000000004a50Daa1B759C47Ebf4239163aE5be";
3737
#[cfg(feature = "simulation-mode")]
3838
pub const DAO_VOTES_TOKEN_ADDRESS: &str = "0xec48905Bb1714bbf3B6f56E49a8FA2299Bfa55f5";
3939

4040
// First block to start caching DAO events from (can be refined later)
4141
#[cfg(not(feature = "simulation-mode"))]
42-
pub const DAO_FIRST_BLOCK: u64 = 0;
42+
pub const DAO_FIRST_BLOCK: u64 = 8_900_000;
4343
#[cfg(feature = "simulation-mode")]
4444
pub const DAO_FIRST_BLOCK: u64 = 0;
4545

0 commit comments

Comments
 (0)