verbs_rs/contract/
deployed_contract.rs

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