Unstake Sui
unstake(stakedSuiId)
: Creates a transaction to unstake previously staked SUI tokens. This method requires the ID of the staked SUI object to be withdrawn.
Unstake 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');
// The staked SUI ID to withdraw
const stakedSuiId = '0x0ae7349842915f9f3c4e7e3dfe607bff607701f2ca432ef04bd57f7eb8367002';
// Create an unstaking transaction
const unstakeTx = await client.unstake(stakedSuiId);
// 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: unstakeTx,
signer: keypair,
});
console.log(txDetails.digest); // transaction hash