pub type ContractDeployer<M, C> = ContractDeploymentTx<Arc<M>, M, C>;
Available on crate feature providers only.
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§

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