Add xDai multicall contract address (#324)

This commit is contained in:
Oliver Nordbjerg 2021-07-05 12:37:12 +02:00 committed by GitHub
parent 2a513f88d3
commit 7b68c70cd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -38,6 +38,11 @@ pub static ADDRESS_BOOK: Lazy<HashMap<U256, Address>> = Lazy::new(|| {
let addr =
Address::from_str("2cc8688c5f75e365aaeeb4ea8d6a480405a48d2a").expect("Decoding failed");
m.insert(U256::from(42u8), addr);
// xdai
let addr =
Address::from_str("b5b692a88bdfc81ca69dcb1d924f59f0413a602a").expect("Decoding failed");
m.insert(U256::from(100u8), addr);
m
});