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
2 changes: 1 addition & 1 deletion pkg/tasks/generate_builder_deposits/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Builders are identified either by deriving keys from a `mnemonic` & key range, o
indexCount: 0
publicKey: ""
walletPrivkey: ""
builderDepositContract: "0x0000884d2AA32eAa155F59A2f24eFa73D9008282"
builderDepositContract: "0x0000bFF46984e3725691FA540a8C7589300D8282"
depositAmount: 1
withdrawalCredentials: ""
builderAddress: ""
Expand Down
2 changes: 1 addition & 1 deletion pkg/tasks/generate_builder_deposits/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ type Config struct {

func DefaultConfig() Config {
return Config{
BuilderDepositContract: "0x0000884d2AA32eAa155F59A2f24eFa73D9008282",
BuilderDepositContract: "0x0000bFF46984e3725691FA540a8C7589300D8282",
DepositAmount: 1, // 1 ETH (BUILDER_MIN_DEPOSIT)
TxFeeCap: big.NewInt(100000000000), // 100 gwei
TxTipCap: big.NewInt(1000000000), // 1 gwei
Expand Down
2 changes: 1 addition & 1 deletion pkg/tasks/generate_builder_exits/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ The builders to exit can be specified either by an explicit `sourcePubkey`, or b
sourceStartIndex: 0
sourceIndexCount: 0
walletPrivkey: ""
builderExitContract: "0x000014574A74c805590AFF9499fc7A690f008282"
builderExitContract: "0x000064D678505ad48F8cCb093BC65613800E8282"
txAmount: "1000000000000000"
txFeeCap: "100000000000"
txTipCap: "1000000000"
Expand Down
2 changes: 1 addition & 1 deletion pkg/tasks/generate_builder_exits/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type Config struct {

func DefaultConfig() Config {
return Config{
BuilderExitContract: "0x000014574A74c805590AFF9499fc7A690f008282",
BuilderExitContract: "0x000064D678505ad48F8cCb093BC65613800E8282",
TxAmount: big.NewInt(100000000000000000), // 0.1 ETH
TxFeeCap: big.NewInt(100000000000), // 100 Gwei
TxTipCap: big.NewInt(1000000000), // 1 Gwei
Expand Down
410 changes: 371 additions & 39 deletions playbooks/_index.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion playbooks/gloas-dev/builder-deposit-spam.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ timeout: 1h
config:
walletPrivkey: ''
# Builder deposit system contract (EIP-8282).
builderDepositContract: '0x0000884d2AA32eAa155F59A2f24eFa73D9008282'
builderDepositContract: '0x0000bFF46984e3725691FA540a8C7589300D8282'
# Total deposits to push through the chain. Set to 0 to run unbounded until timeout.
totalDeposits: 1000
# Hard cap of in-flight deposit transactions so we don't drown the mempool.
Expand Down
2 changes: 1 addition & 1 deletion playbooks/gloas-dev/builder-deposit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ timeout: 30m
config:
walletPrivkey: ''
# Builder deposit system contract (EIP-8282).
builderDepositContract: '0x0000884d2AA32eAa155F59A2f24eFa73D9008282'
builderDepositContract: '0x0000bFF46984e3725691FA540a8C7589300D8282'
tasks:
- name: check_clients_are_healthy
title: Check if at least one client is ready
Expand Down
4 changes: 2 additions & 2 deletions playbooks/gloas-dev/builder-lifecycle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ config:
# Regular validator deposit contract (pre-fork builder onboarding via 0xB0 creds).
depositContract: '0x00000000219ab540356cBB839Cbe05303d7705Fa'
# EIP-8282 builder system contracts (post-fork deposits / exits).
builderDepositContract: '0x0000884d2AA32eAa155F59A2f24eFa73D9008282'
builderExitContract: '0x000014574A74c805590AFF9499fc7A690f008282'
builderDepositContract: '0x0000bFF46984e3725691FA540a8C7589300D8282'
builderExitContract: '0x000064D678505ad48F8cCb093BC65613800E8282'
# Builders per onboarding path.
builderCount: 5
depositAmount: 5
Expand Down
2 changes: 1 addition & 1 deletion playbooks/gloas-dev/exit-builders.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ config:
builderStartIndex: 0
builderCount: 500
# Builder exit system contract (EIP-8282).
builderExitContract: "0x000014574A74c805590AFF9499fc7A690f008282"
builderExitContract: "0x000064D678505ad48F8cCb093BC65613800E8282"

tasks:
- name: check_clients_are_healthy
Expand Down
Loading