executeTokenTransfer

Transfer a fungible token from one destination to another.

This function transfers fungible tokens (ex. ERC20/TRC20/VIP180/NEP5/GO20/โ€ฆโ€‹) from one address to another. The destination can be any blockchain address, a wallet, or a smart contract, it can even be an email address.

venlyConnect.signer.executeTokenTransfer({ walletId: '71dec640-4eb8-4321-adb8-b79461573fc4', to: '0xf147cA0b981C0CD0955D1323DB9980F4B43e9FED', value: 1010, tokenAddress: '0x02f96ef85cad6639500ca1cc8356f0b5ca5bf1d2' secretType: 'ETHEREUM', })

๐Ÿ“˜

๐Ÿง™ You donโ€™t have to take into account the number of decimals for different tokens, Venly handles that for you.

Example: If a token has 18 decimals and you want to transfer 1 token, provide the value 1. Venly will translate this to the correct non-decimal value (1 * 10e18).

Signature:

signer.executeTokenTransfer(tokenTransferRequestDto, options?): Promise<SignerResult>

Returns:

Promise<SignerResult>

Parameters:

ParameterRequiredDescription
tokenTransferRequestDtoTrueThe transfer request you want to execute. For more info on how this request should look like, see tokenTransferRequestDto .
optionsFalseRedirect options you want to pass. Only available when using a REDIRECT signer

Example:

venlyConnect.signer.executeTokenTransfer({ walletId: '71dec640-4eb8-4321-adb8-b79461573fc4', to: '0xf147cA0b981C0CD0955D1323DB9980F4B43e9FED', value: 1010, tokenAddress: '0x02f96ef85cad6639500ca1cc8356f0b5ca5bf1d2' secretType: 'ETHEREUM', }).then((signerResult) => { if (signerResult.success) { console.log(`Transaction ${signerResult.result.transactionHash} has been successfully executed!`); } else { console.warn(`Something went wrong while executing the transaction`); } }).catch((reason) => { console.log(error); });

๐Ÿ“˜

๐Ÿง™ Using the network parameter, the node to which the transaction is sent can be set manually. It allows you to submit a transaction to any mainnet or testnet node of your choosing, public or private. ( Ethereum only)

Object Types

๐Ÿ“˜


Did this page help you?