1use alloy_primitives::Address;
2use alloy_sol_types::SolInterface;
34pub struct DeployedContract<A: SolInterface> {
5/// Name of the contract.
6pub name: String,
7/// ABI contract object.
8pub functions: A,
9/// Address of the contract.
10pub address: Address,
11}