You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: strip null optional accounts from Adrena instructions (error 3007)
buildInstruction was passing null for optional accounts (referrerProfile)
to Anchor. Anchor v0.30 resolves null for optional accounts without PDA
seeds to a wrong address, causing on-chain error 3007 (account owned by
different program). This affected closePositionShort, closePositionLong,
and all builders that pass referrerProfile = null.
Fix: strip null entries from the accounts object before passing to
Anchor, so optional accounts are omitted entirely from the instruction.