Send Transfer Sui
sendTransfer(recipientAddress, amount)
: Creates a transaction to transfer SUI tokens to a recipient. This method requires the recipient's address and the amount to send.
Send Transfer Code Example
ts
// Import SDK
import { Sui } from '@everstake/wallet-sdk-sui';
import { Ed25519Keypair } from '@mysten/sui/keypairs/ed25519';
import { fromHex } from '@mysten/sui/utils';
// Initialize Sui client with the desired network
const client = new Sui('testnet');
// Recipient address
const recipientAddress = '0x123456789abcdef123456789abcdef123456789abcdef123456789abcdef1234';
// Amount to send in MIST
const amount = '1000000000';
// Create a transfer transaction
const transferTx = await client.sendTransfer(recipientAddress, amount);
// Get the private key
const privateKey = process.env.SUI_PK || '';
const pkBytes = fromHex(privateKey);
const keypair = Ed25519Keypair.fromSecretKey(pkBytes);
// Sign and execute the transaction
const txDetails = await client.client.signAndExecuteTransaction({
transaction: transferTx,
signer: keypair,
});
console.log(txDetails.digest); // transaction hash