We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1a0815 commit ce71719Copy full SHA for ce71719
src/wallet.rs
@@ -2303,9 +2303,9 @@ impl UserOperationBuilder {
2303
nonce: U256::ZERO,
2304
init_code: Vec::new(),
2305
call_data: Vec::new(),
2306
- call_gas_limit: U256::from(100_000),
2307
- verification_gas_limit: U256::from(150_000),
2308
- pre_verification_gas: U256::from(21_000),
+ call_gas_limit: U256::from(80_000), // Reduced from 100k
+ verification_gas_limit: U256::from(100_000), // Reduced from 150k
+ pre_verification_gas: U256::from(50_000), // Increased from 21k for L2
2309
// Set reasonable gas prices for Base chain
2310
max_fee_per_gas: U256::from(1_000_000_000), // 1 gwei
2311
max_priority_fee_per_gas: U256::from(1_000_000_000), // 1 gwei
0 commit comments