Type Alias ContractDeployer

Source
pub type ContractDeployer<M, C> = ContractDeploymentTx<Arc<M>, M, C>;
Expand description

ContractDeployer is a ContractDeploymentTx object with an Arc middleware. This type alias exists to preserve backwards compatibility with less-abstract Contracts.

For full usage docs, see ContractDeploymentTx.

Aliased Type§

pub struct ContractDeployer<M, C> {
    pub deployer: Deployer<Arc<M>, M>,
    /* private fields */
}

Fields§

§deployer: Deployer<Arc<M>, M>

the actual deployer, exposed for overriding the defaults