Skip to content

Commit b4f569b

Browse files
feat: bump gas values for L2 (which tend to require more for storage)
1 parent 1a005fe commit b4f569b

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

pkg/accountsindex/accountsindex.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const (
2121
solidityVersion = "0.8.25+commit.b61c2a91"
2222
evmFork = "istanbul"
2323

24-
gasLimit = 2_000_000
24+
gasLimit = 2_500_000
2525
)
2626

2727
var (

pkg/contractsregistry/contractsregistry.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const (
2121
solidityVersion = "0.8.25+commit.b61c2a91"
2222
evmFork = "istanbul"
2323

24-
gasLimit = 2_000_000
24+
gasLimit = 2_500_000
2525
)
2626

2727
var (

pkg/custodialregistrationproxy/custodialregistrationproxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const (
2121
solidityVersion = "0.8.25+commit.b61c2a91"
2222
evmFork = "istanbul"
2323

24-
gasLimit = 750_000
24+
gasLimit = 1_000_000
2525
)
2626

2727
var (

pkg/decimalquote/decimalquote.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const (
2121
solidityVersion = "0.8.19+commit.7dd6d404"
2222
evmFork = "byzantium"
2323

24-
gasLimit = 750_000
24+
gasLimit = 1_000_000
2525
)
2626

2727
var (

pkg/erc20/erc20.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const (
2121
solidityVersion = "0.8.25+commit.b61c2a91"
2222
evmFork = "istanbul"
2323

24-
gasLimit = 3_000_000
24+
gasLimit = 4_000_000
2525
)
2626

2727
var (

pkg/erc20demurrage/erc20demurrage.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const (
2121
solidityVersion = "0.8.25+commit.b61c2a91"
2222
evmFork = "istanbul"
2323

24-
gasLimit = 7_500_000
24+
gasLimit = 10_000_000
2525
)
2626

2727
var (

pkg/ethfaucet/ethfaucet.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const (
2121
solidityVersion = "0.8.25+commit.b61c2a91"
2222
evmFork = "istanbul"
2323

24-
gasLimit = 2_000_000
24+
gasLimit = 3_000_000
2525
)
2626

2727
var (

pkg/limiter/limiter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const (
2121
solidityVersion = "0.8.19+commit.7dd6d404"
2222
evmFork = "byzantium"
2323

24-
gasLimit = 750_000
24+
gasLimit = 1_000_000
2525
)
2626

2727
var (

pkg/limiterindex/limiterindex.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const (
2727
solidityVersion = "0.8.19+commit.7dd6d404"
2828
evmFork = "byzantium"
2929

30-
gasLimit = 750_000
30+
gasLimit = 1_000_000
3131
)
3232

3333
var (

pkg/periodsimple/periodsimple.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const (
2121
solidityVersion = "0.8.25+commit.b61c2a91"
2222
evmFork = "istanbul"
2323

24-
gasLimit = 1_000_000
24+
gasLimit = 1_500_000
2525
)
2626

2727
var (

0 commit comments

Comments
 (0)