pub struct SendWrapper<A>{ /* private fields */ }
Expand description

API that groups methods that either send MOAX or DCT, or that call other contracts.

Implementations§

source§

impl<A> SendWrapper<A>

source

pub fn dct_system_sc_proxy(&self) -> DCTSystemSmartContractProxy<A>

source

pub fn contract_call<R>( &self, to: ManagedAddress<A>, endpoint_name: ManagedBuffer<A> ) -> ContractCall<A, R>

source

pub fn direct_moax<D>( &self, to: &ManagedAddress<A>, amount: &BigUint<A>, data: D )
where D: ManagedInto<A, ManagedBuffer<A>>,

Sends MOAX to a given address, directly. Used especially for sending MOAX to regular accounts.

source

pub fn direct<D>( &self, to: &ManagedAddress<A>, token: &TokenIdentifier<A>, nonce: u64, amount: &BigUint<A>, data: D )
where D: ManagedInto<A, ManagedBuffer<A>>,

Sends either MOAX, DCT or NFT to the target address, depending on the token identifier and nonce

source

pub fn transfer_dct_via_async_call<D>( &self, to: &ManagedAddress<A>, token: &TokenIdentifier<A>, nonce: u64, amount: &BigUint<A>, data: D ) -> !
where D: ManagedInto<A, ManagedBuffer<A>>,

Performs a simple DCT/NFT transfer, but via async call.
As with any async call, this immediately terminates the execution of the current call.
So only use as the last call in your endpoint.
If you want to perform multiple transfers, use self.send().transfer_multiple_dct_via_async_call() instead.
Note that MOAX can NOT be transfered with this function.

source

pub fn transfer_multiple_dct_via_async_call<D>( &self, to: &ManagedAddress<A>, payments: &ManagedVec<A, DctTokenPayment<A>>, data: D ) -> !
where D: ManagedInto<A, ManagedBuffer<A>>,

source

pub fn change_owner_address( &self, child_sc_address: ManagedAddress<A>, new_owner: &ManagedAddress<A> ) -> ContractCall<A, ()>

Sends a synchronous call to change a smart contract address.

source

pub fn call_local_dct_built_in_function( &self, gas: u64, endpoint_name: &ManagedBuffer<A>, arg_buffer: &ManagedArgBuffer<A> ) -> ManagedVec<A, ManagedBuffer<A>>

Allows synchronously calling a local function by name. Execution is resumed afterwards. You should never have to call this function directly. Use the other specific methods instead.

source

pub fn dct_local_mint( &self, token: &TokenIdentifier<A>, nonce: u64, amount: &BigUint<A> )

Allows synchronous minting of DCT/SFT (depending on nonce). Execution is resumed afterwards. Note that the SC must have the DCTLocalMint or DCTNftAddQuantity roles set, or this will fail with “action is not allowed” For SFTs, you must use self.send().dct_nft_create() before adding additional quantity. This function cannot be used for NFTs.

source

pub fn dct_local_burn( &self, token: &TokenIdentifier<A>, nonce: u64, amount: &BigUint<A> )

Allows synchronous burning of DCT/SFT/NFT (depending on nonce). Execution is resumed afterwards. Note that the SC must have the DCTLocalBurn or DCTNftBurn roles set, or this will fail with “action is not allowed”

source

pub fn dct_nft_create<T: TopEncode>( &self, token: &TokenIdentifier<A>, amount: &BigUint<A>, name: &ManagedBuffer<A>, royalties: &BigUint<A>, hash: &ManagedBuffer<A>, attributes: &T, uris: &ManagedVec<A, ManagedBuffer<A>> ) -> u64

Creates a new NFT token of a certain type (determined by token_identifier).
attributes can be any serializable custom struct.
This is a built-in function, so the smart contract execution is resumed after. Must have DCTNftCreate role set, or this will fail with “action is not allowed”. Returns the nonce of the newly created NFT.

source

pub fn sell_nft( &self, nft_id: &TokenIdentifier<A>, nft_nonce: u64, nft_amount: &BigUint<A>, buyer: &ManagedAddress<A>, payment_token: &TokenIdentifier<A>, payment_nonce: u64, payment_amount: &BigUint<A> ) -> BigUint<A>

Sends thr NFTs to the buyer address and calculates and sends the required royalties to the NFT creator. Returns the payment amount left after sending royalties.

Auto Trait Implementations§

§

impl<A> RefUnwindSafe for SendWrapper<A>
where A: RefUnwindSafe,

§

impl<A> Send for SendWrapper<A>
where A: Send,

§

impl<A> Sync for SendWrapper<A>
where A: Sync,

§

impl<A> Unpin for SendWrapper<A>
where A: Unpin,

§

impl<A> UnwindSafe for SendWrapper<A>
where A: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<M, F> ManagedFrom<M, F> for F
where M: ManagedTypeApi,

source§

fn managed_from(_: M, t: F) -> F

source§

impl<M, F, T> ManagedInto<M, T> for F
where T: ManagedFrom<M, F>, M: ManagedTypeApi,

source§

fn managed_into(self, api: M) -> T

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.