Get Sui Stake Balance
The getStakeBalanceByAddress
method retrieves all delegated stakes for a specific address.
getStakeBalanceByAddress(address)
: returns all staking information for the given address
Get Stake Balance Code Example
ts
// Import SDK
import { Sui } from '@everstake/wallet-sdk-sui';
// Initialize Sui client
const client = new Sui('mainnet');
// User Public Address
const address = '0x1bae2a9343bd546e14c5e696b45be50b7d215bb627949e1e5f82470bee9bdb62';
// Get delegated stakes for the address
const balances = await client.getStakeBalanceByAddress(address);
console.log(balances); // array of DelegatedStake objects