pub trait ProxyTrait: ProxyObjBase + Sized {
// Provided methods
fn issue_merged_token<Arg0: ProxyArg<ManagedBuffer<Self::Api>>, Arg1: ProxyArg<ManagedBuffer<Self::Api>>>(
&mut self,
token_display_name: Arg0,
token_ticker: Arg1
) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>> { ... }
fn add_mergeable_tokens_to_whitelist<Arg0: ProxyArg<MultiValueEncoded<Self::Api, TokenIdentifier<Self::Api>>>>(
&mut self,
tokens: Arg0
) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>> { ... }
fn remove_mergeable_tokens_from_whitelist<Arg0: ProxyArg<MultiValueEncoded<Self::Api, TokenIdentifier<Self::Api>>>>(
&mut self,
tokens: Arg0
) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>> { ... }
fn merged_token(
&mut self
) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<NonFungibleTokenMapper<Self::Api>>> { ... }
fn mergeable_tokens_whitelist(
&mut self
) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<UnorderedSetMapper<Self::Api, TokenIdentifier<Self::Api>>>> { ... }
}
Provided Methods§
fn issue_merged_token<Arg0: ProxyArg<ManagedBuffer<Self::Api>>, Arg1: ProxyArg<ManagedBuffer<Self::Api>>>( &mut self, token_display_name: Arg0, token_ticker: Arg1 ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>>
fn add_mergeable_tokens_to_whitelist<Arg0: ProxyArg<MultiValueEncoded<Self::Api, TokenIdentifier<Self::Api>>>>( &mut self, tokens: Arg0 ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>>
fn remove_mergeable_tokens_from_whitelist<Arg0: ProxyArg<MultiValueEncoded<Self::Api, TokenIdentifier<Self::Api>>>>( &mut self, tokens: Arg0 ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<()>>
fn merged_token( &mut self ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<NonFungibleTokenMapper<Self::Api>>>
fn mergeable_tokens_whitelist( &mut self ) -> Tx<TxScEnv<Self::Api>, (), Self::To, (), (), FunctionCall<Self::Api>, OriginalResultMarker<UnorderedSetMapper<Self::Api, TokenIdentifier<Self::Api>>>>
Object Safety§
This trait is not object safe.