pub trait ContractProxy<SA, BigInt, BigUint>
where BigUint: BigUintApi + 'static, BigInt: BigIntApi<BigUint> + 'static, SA: SendApi<BigUint> + Clone + 'static,
{ // Required methods fn new(send_api: SA, address: Address) -> Self; fn with_token_transfer( self, token: TokenIdentifier, amount: BigUint ) -> Self; }

Required Methods§

source

fn new(send_api: SA, address: Address) -> Self

source

fn with_token_transfer(self, token: TokenIdentifier, amount: BigUint) -> Self

Object Safety§

This trait is not object safe.

Implementors§