Entrypoint Errors
Error AA13: InitCode Execution Failed or Insufficient Gas
OOG = Out Of Gas
The EntryPoint couldn’t create the smart account using the provided initCode
. This could be due to:
- Gas depletion during
initCode
execution initCode
reverting during account setup
Potential Fixes
- Ensure the factory address in
initCode
is accurate (first 20 bytes ofinitCode
) - Confirm
initCode
correctness - Verify if
verificationGasLimit
is sufficient forinitCode
completion - For reverts, investigate the
initCode
execution using debugging tools like Tenderly
By addressing these potential issues, you can resolve the AA13 error and successfully execute the initCode
.