pub trait TxProxyTrait<Env, From, To, Gas>{
type TxProxyMethods;
// Required method
fn proxy_methods(
self,
tx: Tx<Env, From, To, (), Gas, (), ()>,
) -> Self::TxProxyMethods;
}
Expand description
Defines a proxy object for a smart contract.
Required Associated Types§
type TxProxyMethods
Required Methods§
Sourcefn proxy_methods(
self,
tx: Tx<Env, From, To, (), Gas, (), ()>,
) -> Self::TxProxyMethods
fn proxy_methods( self, tx: Tx<Env, From, To, (), Gas, (), ()>, ) -> Self::TxProxyMethods
Creates the associated type that contains the proxy methods implementations.