Learn how to manage balances, UTXOs, and VTXOs in Arkade
Arkade allows you to easily check your wallet balances, both onchain and offchain. The balance information is structured to provide detailed insights into your funds.
Copy
Ask AI
const balance = await wallet.getBalance()// total is spendable in settlementconsole.log('Total :', balance.total)// available is spendable in offchain transactionsconsole.log('Available :', balance.available)