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
callGasLimit is a valid param for both 0.6 and 0.7 user operations, however it is not possible to specify this parameter when calling smart account actions such as deployContract (https://github.com/pimlicolabs/permissionless.js/blob/main/packages/permissionless/actions/smartAccount/deployContract.ts#L106) - could it be added to the args param please? This is blocking some work for us as we are not able to deploy larger contracts via a kernel account due to the call running out of gas. On the other hand, if I manually patch the lib to pass callGasLimit, I am able to deploy my contracts via the smart account.
The text was updated successfully, but these errors were encountered:
Resorted sending the user operation directly myself. Btw seems like when calldata gets too big, bundlers fail to estimate the correct gas limit required, so have to calculate using "prepareUserOperation" and add a 5-10% extra to be safe - not sure that's relevant still here
callGasLimit is a valid param for both 0.6 and 0.7 user operations, however it is not possible to specify this parameter when calling smart account actions such as
deployContract
(https://github.com/pimlicolabs/permissionless.js/blob/main/packages/permissionless/actions/smartAccount/deployContract.ts#L106) - could it be added to the args param please? This is blocking some work for us as we are not able to deploy larger contracts via a kernel account due to the call running out of gas. On the other hand, if I manually patch the lib to pass callGasLimit, I am able to deploy my contracts via the smart account.The text was updated successfully, but these errors were encountered: