Skip to content

Commit 690ee6a

Browse files
authored
feat: increase default gas limit to 36M (#7304)
1 parent 94dfa01 commit 690ee6a

File tree

9 files changed

+27
-27
lines changed

9 files changed

+27
-27
lines changed

docs/pages/run/validator-management/proposer-config.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ proposer_config:
1515
strict_fee_recipient_check: false
1616
fee_recipient: "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
1717
builder:
18-
gas_limit: "30000000"
18+
gas_limit: "36000000"
1919
selection: "executionalways"
2020
boost_factor: "0"
2121
"0xa4855c83d868f772a579133d9f23818008417b743e8447e235d8eb78b1d8f8a9f63f98c551beb7de254400f89592314d":
@@ -29,7 +29,7 @@ default_config:
2929
strict_fee_recipient_check: true
3030
fee_recipient: "0xcccccccccccccccccccccccccccccccccccccccc"
3131
builder:
32-
gas_limit: "30000000"
32+
gas_limit: "36000000"
3333
selection: "default"
3434
boost_factor: "90"
3535
```

packages/api/test/unit/keymanager/testData.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {GenericServerTestCases} from "../../utils/genericServerTest.js";
1212
const pubkeyRand = "0x84105a985058fc8740a48bf1ede9d223ef09e8c6b1735ba0a55cf4a9ff2ff92376b778798365e488dab07a652eb04576";
1313
const ethaddressRand = "0xabcf8e0d4e9587369b2301d0790347320302cc09";
1414
const graffitiRandUtf8 = "636861696e736166652f6c6f64657374";
15-
const gasLimitRand = 30_000_000;
15+
const gasLimitRand = 36_000_000;
1616
const builderBoostFactorRand = BigInt(100);
1717

1818
export const testData: GenericServerTestCases<Endpoints> = {

packages/beacon-node/test/sim/electra-interop.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ describe("executionEngine / ExecutionEngineHttp", () => {
158158
256
159159
),
160160
prevRandao: dataToBytes("0x0000000000000000000000000000000000000000000000000000000000000000", 32),
161-
gasLimit: 30000000,
161+
gasLimit: 36000000,
162162
gasUsed: 84714,
163163
timestamp: 16,
164164
extraData: dataToBytes("0x", 0),

packages/cli/test/e2e/propserConfigfromKeymanager.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ describe("import keystores from api, test DefaultProposerConfig", () => {
1616

1717
const defaultOptions = {
1818
suggestedFeeRecipient: "0x0000000000000000000000000000000000000000",
19-
gasLimit: 30_000_000,
19+
gasLimit: 36_000_000,
2020
graffiti: "aaaa",
2121
};
2222

2323
const updatedOptions = {
2424
suggestedFeeRecipient: "0xcccccccccccccccccccccccccccccccccccccccc",
25-
gasLimit: 35_000_000,
25+
gasLimit: 40_000_000,
2626
graffiti: "bbbb",
2727
};
2828

packages/cli/test/unit/validator/parseProposerConfig.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const testValue = {
1414
strictFeeRecipientCheck: true,
1515
feeRecipient: "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
1616
builder: {
17-
gasLimit: 30000000,
17+
gasLimit: 36000000,
1818
selection: undefined,
1919
boostFactor: undefined,
2020
},
@@ -35,7 +35,7 @@ const testValue = {
3535
strictFeeRecipientCheck: true,
3636
feeRecipient: "0xcccccccccccccccccccccccccccccccccccccccc",
3737
builder: {
38-
gasLimit: 30000000,
38+
gasLimit: 36000000,
3939
selection: routes.validator.BuilderSelection.MaxProfit,
4040
boostFactor: BigInt(50),
4141
},
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
proposer_config:
2-
'0xa99a76ed7796f7be22d5b7e85deeb7c5677e88e511e0b337618f8c4eb61349b4bf2d153f649f7b53359fe8b94a38e44c':
2+
"0xa99a76ed7796f7be22d5b7e85deeb7c5677e88e511e0b337618f8c4eb61349b4bf2d153f649f7b53359fe8b94a38e44c":
33
graffiti: 123
44
strict_fee_recipient_check: "true"
5-
fee_recipient: '0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'
5+
fee_recipient: "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
66
builder:
77
enabled: true
8-
gas_limit: "30000000"
9-
'0xa4855c83d868f772a579133d9f23818008417b743e8447e235d8eb78b1d8f8a9f63f98c551beb7de254400f89592314d':
10-
fee_recipient: '0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb'
8+
gas_limit: "36000000"
9+
"0xa4855c83d868f772a579133d9f23818008417b743e8447e235d8eb78b1d8f8a9f63f98c551beb7de254400f89592314d":
10+
fee_recipient: "0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"
1111
builder:
1212
enabled: "true"
1313
gas_limit: "35000000"
1414
default_config:
15-
graffiti: 'default graffiti'
15+
graffiti: "default graffiti"
1616
strict_fee_recipient_check: true
17-
fee_recipient: '0xcccccccccccccccccccccccccccccccccccccccc'
17+
fee_recipient: "0xcccccccccccccccccccccccccccccccccccccccc"
1818
builder:
1919
enabled: true
20-
gas_limit: "30000000"
20+
gas_limit: "36000000"
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
proposer_config:
2-
'0xa99a76ed7796f7be22d5b7e85deeb7c5677e88e511e0b337618f8c4eb61349b4bf2d153f649f7b53359fe8b94a38e44c':
3-
graffiti: 'graffiti'
2+
"0xa99a76ed7796f7be22d5b7e85deeb7c5677e88e511e0b337618f8c4eb61349b4bf2d153f649f7b53359fe8b94a38e44c":
3+
graffiti: "graffiti"
44
strict_fee_recipient_check: true
5-
fee_recipient: '0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'
5+
fee_recipient: "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
66
builder:
7-
gas_limit: "30000000"
8-
'0xa4855c83d868f772a579133d9f23818008417b743e8447e235d8eb78b1d8f8a9f63f98c551beb7de254400f89592314d':
9-
fee_recipient: '0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb'
7+
gas_limit: "36000000"
8+
"0xa4855c83d868f772a579133d9f23818008417b743e8447e235d8eb78b1d8f8a9f63f98c551beb7de254400f89592314d":
9+
fee_recipient: "0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"
1010
builder:
1111
gas_limit: "35000000"
1212
selection: "builderalways"
1313
boost_factor: "18446744073709551616"
1414
default_config:
15-
graffiti: 'default graffiti'
15+
graffiti: "default graffiti"
1616
strict_fee_recipient_check: "true"
17-
fee_recipient: '0xcccccccccccccccccccccccccccccccccccccccc'
17+
fee_recipient: "0xcccccccccccccccccccccccccccccccccccccccc"
1818
builder:
19-
gas_limit: "30000000"
19+
gas_limit: "36000000"
2020
selection: "maxprofit"
2121
boost_factor: "50"

packages/validator/src/services/validatorStore.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ type ValidatorData = ProposerConfig & {
131131

132132
export const defaultOptions = {
133133
suggestedFeeRecipient: "0x0000000000000000000000000000000000000000",
134-
defaultGasLimit: 30_000_000,
134+
defaultGasLimit: 36_000_000,
135135
builderSelection: routes.validator.BuilderSelection.ExecutionOnly,
136136
builderAliasSelection: routes.validator.BuilderSelection.Default,
137137
builderBoostFactor: BigInt(100),

packages/validator/test/unit/validatorStore.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe("ValidatorStore", () => {
2626
strictFeeRecipientCheck: true,
2727
feeRecipient: "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
2828
builder: {
29-
gasLimit: 30000000,
29+
gasLimit: 36000000,
3030
selection: routes.validator.BuilderSelection.ExecutionOnly,
3131
},
3232
},

0 commit comments

Comments
 (0)