The initCode
failed to create the smart account. There are two possible reasons:
- The
initCode
ran out of gas (OOG) - The
initCode
reverted during the account deployment process
Possible Solutions
- Check the account has native token to pay for its deployment if you aren't using a paymaster.
- Check that the factory address in the
initCode
is correct (the factory address is the first 20 bytes of theinitCode
). - Check that the
verificationGasLimit
is high enough for theinitCode
to complete without running out of gas. - If the
initCode
reverted, investigate why using tools like Tenderly.