Benjamin A

Results 2 comments of Benjamin A

You need to make sure that your RPC endpoint supports the ERC 4337 that handles RPC methods such as: "method":"eth_sendUserOperation". You can try Stackup ones. https://docs.stackup.sh/docs/node-api

have you try updating you next config like this: https://nextjs.org/docs/app/api-reference/next-config-js/serverComponentsExternalPackages ``` const path = require("path"); /** @type {import('next').NextConfig} */ const nextConfig = { experimental: { serverComponentsExternalPackages: ["typeorm"], }, }; module.exports...