use ethers_contract::{abigen, Lazy};
use ethers_core::types::{Address, U256};
use std::collections::HashMap;
pub static ADDRESS_BOOK: Lazy<HashMap<U256, Address>> = Lazy::new(|| {
HashMap::from([
(U256::from(1_u64), "eefba1e63905ef1d7acba5a8513c70307c1ce441".parse().unwrap()),
])
});
abigen!(
DsProxyFactory,
"./contracts/DSProxyFactory.json",
methods {
build() as build_with_sender;
}
);