// Get all VTXOs and check their status
const vtxos = await wallet.getVtxos()
const pendingVtxos = vtxos.filter(vtxo => vtxo.virtualStatus.state === 'preconfirmed')
const settledVtxos = vtxos.filter(vtxo => vtxo.virtualStatus.state === 'settled')
console.log('Preconfirmed VTXOs:', pendingVtxos.length)
console.log('Settled VTXOs:', settledVtxos.length)