Questions tagged [erc-4337]
The erc-4337 tag has no summary.
55 questions
0 votes
1 answer
16 views
How to approve 1inch limit order hashes for Safe (Gnosis Safe) wallets using SignMessageLib?
I'm creating 1inch v4 limit orders from a Safe (Gnosis Safe v1.4.1) smart contract wallet on Base. Orders are accepted by the 1inch API but cannot be filled by market makers due to EIP-1271 signature ...
1 vote
1 answer
72 views
UserOps in ERC 4337
I am trying to create a website that uses ERC-4337. In the current version of account-abstraction(v0.8.0) by eth-infinitism. The userOp has been updated to address sender; uint256 nonce; bytes ...
1 vote
1 answer
61 views
Multi Signer Safe Accounts not working using permissionless SDK
So, I'm attempting to create a Safe Smart Account with Pimlico's 'permissionless' sdk, and while I was able to send the transaction successfully, as you can see, it is setting my Smart Account ...
0 votes
0 answers
60 views
ERC-4337 UserOperation Hashing Fails with Silent Revert - Full Implementation Review Needed
Title: "ERC-4337 UserOperation Hashing Fails with Silent Revert - Full Implementation Review Needed" Body: I'm implementing an ERC-4337 bundler for the Pharos network and encountering silent ...
0 votes
0 answers
40 views
ERC4337 account abstraction. How to get the deployed contract address? using thirdweb's AA
well the question is pretty straight-forward. const deploy = async () => { const client = createThirdwebClient({ clientId, secretKey, }) const personalAccount = ...
0 votes
0 answers
49 views
Privacy for ERC4337 Wallet
I'm a beginner working on a wallet app based on ERC-4337. I’m wondering how user privacy can be protected, if wallet-related data (like balances) is stored or accessible on-chain. Is this kind of ...
1 vote
1 answer
117 views
Deploy a 4337 Safe in another chain
I deployed a 4337 Safe using the Safe SDK and sponsored the deployment via Pimlico on Ethereum Mainnet. However, I now have a situation where a user mistakenly sent funds to the same Safe address but ...
0 votes
1 answer
39 views
ERC-7677 Paymaster Web Service Capability - Does the Paymaster Service also provide bundling?
I am trying to understand how paymasters work with ERC-7677 (Paymaster Web Service Capability). With the paymaster that was described in ERC-4337, I understood how the Paymaster had to have deposits ...
0 votes
0 answers
52 views
How to Deploy an NFT contract from a Smart Account on ERC-4337?
I have set up a local Ethereum entrypoint instance and a bundler using eth-infinitism/bundler with a SimpleAccount and SimpleAccountFactory contract deployed at the ACCOUNT_FACTORY address. Setup ...
0 votes
0 answers
29 views
How to Adjust preVerificationGas in UserOperation When Deploying NFT Contracts via ERC-4337 Smart Account?
I have set up a local Ethereum entrypoint instance and a bundler using eth-infinitism/bundler with a SimpleAccount and SimpleAccountFactory contract deployed at the ACCOUNT_FACTORY address. To create ...
0 votes
1 answer
36 views
In ERC-4337 Account Abstraction Spec, what is Accoun2 in the sequence diagrams?
I am reading the ERC-4337 spec here: https://eips.ethereum.org/EIPS/eip-4337 It contains following sequence diagram under Required entry point contract functionality heading: I am not able to tell ...
0 votes
1 answer
75 views
ProviderError when calling eth_sendUserOperation on Sepolia
I'm trying to send a User Operation on the Sepolia testnet using the following code: await ethers.provider.send("eth_sendUserOperation", [userOp, EP_ADDRESS]); However, I get the following ...
0 votes
1 answer
57 views
Looking for a BSC RPC that supports ERC-4337 calls
I'm currently working on a project that requires ERC-4337 compatibility on the BSC network. Specifically, I'm looking for an RPC endpoint or provider that supports ERC-4337 functionalities like ...
0 votes
2 answers
66 views
Why is there an overestimation in the PimlicoFeeEstimator in the relay-kit and Entry Point 0.7
Why is there a buffer added into callGasLimit, verificationGasLimit and preVerificationGas in the PimlicoFeeEstimator in the relay-kit ? What's the reasoning? https://github.com/safe-global/safe-core-...
0 votes
1 answer
42 views
predicting safe addresses
given identical salt and other options (owner, threshold) and deploying two safes on respectively gnosis and base, i would expect the predicted safe address to be the same. But somehow they are not. I ...