Skip to content
This repository was archived by the owner on Oct 20, 2024. It is now read-only.

Commit 2858a13

Browse files
authored
1 parent b9733f0 commit 2858a13

File tree

4 files changed

+19
-27
lines changed

4 files changed

+19
-27
lines changed

abi/entrypoint.json

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,8 @@
33
"inputs": [
44
{ "internalType": "uint256", "name": "preOpGas", "type": "uint256" },
55
{ "internalType": "uint256", "name": "paid", "type": "uint256" },
6-
{ "internalType": "uint256", "name": "deadline", "type": "uint256" },
7-
{
8-
"internalType": "uint256",
9-
"name": "paymasterDeadline",
10-
"type": "uint256"
11-
}
6+
{ "internalType": "uint64", "name": "validAfter", "type": "uint64" },
7+
{ "internalType": "uint64", "name": "validBefore", "type": "uint64" }
128
],
139
"name": "ExecutionResult",
1410
"type": "error"
@@ -42,12 +38,9 @@
4238
"components": [
4339
{ "internalType": "uint256", "name": "preOpGas", "type": "uint256" },
4440
{ "internalType": "uint256", "name": "prefund", "type": "uint256" },
45-
{ "internalType": "uint256", "name": "deadline", "type": "uint256" },
46-
{
47-
"internalType": "uint256",
48-
"name": "paymasterDeadline",
49-
"type": "uint256"
50-
},
41+
{ "internalType": "bool", "name": "sigFailed", "type": "bool" },
42+
{ "internalType": "uint64", "name": "validAfter", "type": "uint64" },
43+
{ "internalType": "uint64", "name": "validUntil", "type": "uint64" },
5144
{
5245
"internalType": "bytes",
5346
"name": "paymasterContext",
@@ -107,12 +100,9 @@
107100
"components": [
108101
{ "internalType": "uint256", "name": "preOpGas", "type": "uint256" },
109102
{ "internalType": "uint256", "name": "prefund", "type": "uint256" },
110-
{ "internalType": "uint256", "name": "deadline", "type": "uint256" },
111-
{
112-
"internalType": "uint256",
113-
"name": "paymasterDeadline",
114-
"type": "uint256"
115-
},
103+
{ "internalType": "bool", "name": "sigFailed", "type": "bool" },
104+
{ "internalType": "uint64", "name": "validAfter", "type": "uint64" },
105+
{ "internalType": "uint64", "name": "validUntil", "type": "uint64" },
116106
{
117107
"internalType": "bytes",
118108
"name": "paymasterContext",

internal/config/values.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func GetValues() *Values {
4444
// Default variables
4545
viper.SetDefault("erc4337_bundler_port", 4337)
4646
viper.SetDefault("erc4337_bundler_data_directory", "/tmp/stackup_bundler")
47-
viper.SetDefault("erc4337_bundler_supported_entry_points", "0x1306b01bC3e4AD202612D3843387e94737673F53")
47+
viper.SetDefault("erc4337_bundler_supported_entry_points", "0x0F46c65C17AA6b4102046935F33301f0510B163A")
4848
viper.SetDefault("erc4337_bundler_max_verification_gas", 1500000)
4949
viper.SetDefault("erc4337_bundler_debug_mode", false)
5050
viper.SetDefault("erc4337_bundler_gin_mode", gin.ReleaseMode)

0 commit comments

Comments
 (0)