pub trait ProxyObjBase {
    type Api: VMApi;

    fn contract(self, address: ManagedAddress<Self::Api>) -> Self;
}

Required Associated Types§

Required Methods§

Specify the target contract to call. Not taken into account for deploys.

Implementors§