diff --git a/packages/rpc/src/rpcHandler.ts b/packages/rpc/src/rpcHandler.ts index c734ad2a..28102d5e 100644 --- a/packages/rpc/src/rpcHandler.ts +++ b/packages/rpc/src/rpcHandler.ts @@ -189,7 +189,12 @@ export class RpcHandler implements IRpcEndpoint { userOperation.verificationGasLimit = 10_000_000n userOperation.callGasLimit = 10_000_000n - if (this.chainId === 84531 || this.chainId === 8453 || this.chainId === chains.celoAlfajores.id) { + if ( + this.chainId === 84531 || + this.chainId === 8453 || + this.chainId === chains.celoAlfajores.id || + this.chainId === chains.celo.id + ) { userOperation.verificationGasLimit = 1_000_000n userOperation.callGasLimit = 1_000_000n }