AA15 initCode must create sender
The smart account deployment process with the initCode
does not return any sender
address. There are two possible reasons:
- The
initCode
factory is not creating an account. - The
initCode
factory is creating an account, but is not implemented correctly as it is not returning the deployedsender
address.
Possible solutions
- Verify that the factory address in the
initCode
is correct (the factory address is the first 20 bytes of theinitCode
). - Verify that the
initCode
factory is implemented correctly. The factory must deploy the smart account and return the deployedsender
address. - If all else fails, investigate why the
initCode
factory does not return asender
address using tools like Tenderly.