Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/pages/run/validator-management/proposer-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ proposer_config:
strict_fee_recipient_check: false
fee_recipient: "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
builder:
gas_limit: "36000000"
gas_limit: "45000000"
selection: "executionalways"
boost_factor: "0"
"0xa4855c83d868f772a579133d9f23818008417b743e8447e235d8eb78b1d8f8a9f63f98c551beb7de254400f89592314d":
Expand All @@ -29,7 +29,7 @@ default_config:
strict_fee_recipient_check: true
fee_recipient: "0xcccccccccccccccccccccccccccccccccccccccc"
builder:
gas_limit: "36000000"
gas_limit: "45000000"
selection: "default"
boost_factor: "90"
```
Expand Down
2 changes: 1 addition & 1 deletion packages/api/test/unit/keymanager/testData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {GenericServerTestCases} from "../../utils/genericServerTest.js";
const pubkeyRand = "0x84105a985058fc8740a48bf1ede9d223ef09e8c6b1735ba0a55cf4a9ff2ff92376b778798365e488dab07a652eb04576";
const ethaddressRand = "0xabcf8e0d4e9587369b2301d0790347320302cc09";
const graffitiRandUtf8 = "636861696e736166652f6c6f64657374";
const gasLimitRand = 36_000_000;
const gasLimitRand = 45_000_000;
const builderBoostFactorRand = BigInt(100);

export const testData: GenericServerTestCases<Endpoints> = {
Expand Down
2 changes: 1 addition & 1 deletion packages/beacon-node/test/sim/electra-interop.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ describe("executionEngine / ExecutionEngineHttp", () => {
256
),
prevRandao: dataToBytes("0x0000000000000000000000000000000000000000000000000000000000000000", 32),
gasLimit: 36000000,
gasLimit: 45000000,
gasUsed: 84714,
timestamp: 16,
extraData: dataToBytes("0x", 0),
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/test/e2e/propserConfigfromKeymanager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ describe("import keystores from api, test DefaultProposerConfig", () => {

const defaultOptions = {
suggestedFeeRecipient: "0x0000000000000000000000000000000000000000",
gasLimit: 36_000_000,
gasLimit: 45_000_000,
graffiti: "aaaa",
};

const updatedOptions = {
suggestedFeeRecipient: "0xcccccccccccccccccccccccccccccccccccccccc",
gasLimit: 40_000_000,
gasLimit: 50_000_000,
graffiti: "bbbb",
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const testValue = {
strictFeeRecipientCheck: true,
feeRecipient: "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
builder: {
gasLimit: 36000000,
gasLimit: 45000000,
selection: undefined,
boostFactor: undefined,
},
Expand All @@ -35,7 +35,7 @@ const testValue = {
strictFeeRecipientCheck: true,
feeRecipient: "0xcccccccccccccccccccccccccccccccccccccccc",
builder: {
gasLimit: 36000000,
gasLimit: 45000000,
selection: routes.validator.BuilderSelection.MaxProfit,
boostFactor: BigInt(50),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ proposer_config:
fee_recipient: "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
builder:
enabled: true
gas_limit: "36000000"
gas_limit: "45000000"
"0xa4855c83d868f772a579133d9f23818008417b743e8447e235d8eb78b1d8f8a9f63f98c551beb7de254400f89592314d":
fee_recipient: "0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"
builder:
Expand All @@ -17,4 +17,4 @@ default_config:
fee_recipient: "0xcccccccccccccccccccccccccccccccccccccccc"
builder:
enabled: true
gas_limit: "36000000"
gas_limit: "45000000"
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ proposer_config:
strict_fee_recipient_check: true
fee_recipient: "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
builder:
gas_limit: "36000000"
gas_limit: "45000000"
"0xa4855c83d868f772a579133d9f23818008417b743e8447e235d8eb78b1d8f8a9f63f98c551beb7de254400f89592314d":
fee_recipient: "0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"
builder:
Expand All @@ -16,6 +16,6 @@ default_config:
strict_fee_recipient_check: "true"
fee_recipient: "0xcccccccccccccccccccccccccccccccccccccccc"
builder:
gas_limit: "36000000"
gas_limit: "45000000"
selection: "maxprofit"
boost_factor: "50"
2 changes: 1 addition & 1 deletion packages/validator/src/services/validatorStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ type ValidatorData = ProposerConfig & {

export const defaultOptions = {
suggestedFeeRecipient: "0x0000000000000000000000000000000000000000",
defaultGasLimit: 36_000_000,
defaultGasLimit: 45_000_000,
builderSelection: routes.validator.BuilderSelection.ExecutionOnly,
builderAliasSelection: routes.validator.BuilderSelection.Default,
builderBoostFactor: BigInt(100),
Expand Down
2 changes: 1 addition & 1 deletion packages/validator/test/unit/validatorStore.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe("ValidatorStore", () => {
strictFeeRecipientCheck: true,
feeRecipient: "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
builder: {
gasLimit: 36000000,
gasLimit: 45000000,
selection: routes.validator.BuilderSelection.ExecutionOnly,
},
},
Expand Down
Loading