pub trait ProxyTrait: ProxyObjBase + Sized {
    // Provided methods
    fn is_paused(
        self
    ) -> ContractCall<Self::Api, <bool as EndpointResult>::DecodeAs> { ... }
    fn pause_endpoint(
        self
    ) -> ContractCall<Self::Api, <SCResult<()> as EndpointResult>::DecodeAs> { ... }
    fn unpause_endpoint(
        self
    ) -> ContractCall<Self::Api, <SCResult<()> as EndpointResult>::DecodeAs> { ... }
}

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§