Skip to content

Commit d406920

Browse files
committed
Fix keys
1 parent 0b6247b commit d406920

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

espresso/.env

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@ CAFF_PORT=9547
3030
OP_ENGINE_PORT=8552
3131
OP_HTTP_PORT=8546
3232

33-
OPERATOR_PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
33+
OPERATOR_PRIVATE_KEY=0x7c852118294e51e653712a81e05800f419141751be58f605c371e15141b007a6
3434
# cast wallet address --private-key $OPERATOR_PRIVATE_KEY
35-
OPERATOR_ADDRESS=0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266
35+
OPERATOR_ADDRESS=0x90F79bf6EB2c4f870365E785982E1f101E93b906
3636

3737
OP_BATCHER_PRIVATE_KEY=$OPERATOR_PRIVATE_KEY
38+
# cast wallet address --private-key $OPERATOR_PRIVATE_KEY
39+
OP_BATCHER_ADDRESS=0x90F79bf6EB2c4f870365E785982E1f101E93b906
3840

3941
# cast wallet address --mnemonic "test test ... junk" --hd-path "m/44'/60'/0'/0/1"
4042
PROPOSER_ADDRESS=0x70997970C51812dc3A010C7d01b50e0d17dc79C8

espresso/scripts/prepare-allocs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ dasel put -f "${DEPLOYER_DIR}/intent.toml" -s .chains.[0].l1FeeVaultRecipient -v
8080
dasel put -f "${DEPLOYER_DIR}/intent.toml" -s .chains.[0].sequencerFeeVaultRecipient -v "${OPERATOR_ADDRESS}"
8181
dasel put -f "${DEPLOYER_DIR}/intent.toml" -s .chains.[0].roles.systemConfigOwner -v "${OPERATOR_ADDRESS}"
8282
dasel put -f "${DEPLOYER_DIR}/intent.toml" -s .chains.[0].roles.unsafeBlockSigner -v "${OPERATOR_ADDRESS}"
83-
dasel put -f "${DEPLOYER_DIR}/intent.toml" -s .chains.[0].roles.batcher -v "${OPERATOR_ADDRESS}"
83+
dasel put -f "${DEPLOYER_DIR}/intent.toml" -s .chains.[0].roles.batcher -v "${OP_BATCHER_ADDRESS}"
8484
dasel put -f "${DEPLOYER_DIR}/intent.toml" -s .chains.[0].roles.proposer -v "${PROPOSER_ADDRESS}"
8585

8686
# Fill in a specified create2Salt for the deployer, in order to ensure that the

0 commit comments

Comments
 (0)