// Check if wallet is connected and supports signingif (!wallet.connected || !wallet.signTransaction) { throw new Error('Wallet not properly connected');}
Solution: Ensure the wallet is connected and has the required methods before attempting to sign transactions.
// SOL operations may fail if lookup tables are unavailable// This is handled automatically by OneBalance, but can cause delaysconsole.log('Address lookup tables:', operation.addressLookupTableAddresses);
Solution: SOL operations with complex swaps may require address lookup tables. OneBalance handles this automatically, but it can cause additional processing time.