Balance Sui
getBalanceByAddress(address)
: Retrieves the Sui balance for a given address. This method returns a BigInt representing the balance in the smallest denomination (MIST). To convert to SUI, divide by 10^9.
Balance Code Example
ts
// Import SDK
import { Sui } from '@everstake/wallet-sdk-sui';
// Initialize Sui client with the desired network
const client = new Sui('mainnet');
// User address
const address = '0x123456789abcdef123456789abcdef123456789abcdef123456789abcdef1234';
// Get the balance
const balance = await client.getBalanceByAddress(address);
// Convert from MIST to SUI (1 SUI = 10^9 MIST)
const balanceInSui = Number(balance) / 1e9;
console.log(`Balance: ${balanceInSui} SUI`);