mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-10 05:53:46 +00:00
Merge pull request #12 from primevprotocol/deployer-naming
deployer env var name change
This commit is contained in:
commit
51f2ea2eea
3 changed files with 4 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
CONTRACT_DEPLOYER_PRIVATE_KEY=
|
HYPERLANE_DEPLOYER_PRIVATE_KEY=
|
||||||
NODE1_PRIVATE_KEY=
|
NODE1_PRIVATE_KEY=
|
||||||
NODE2_PRIVATE_KEY=
|
NODE2_PRIVATE_KEY=
|
||||||
RELAYER_PRIVATE_KEY=
|
RELAYER_PRIVATE_KEY=
|
||||||
|
|
|
||||||
|
|
@ -186,7 +186,7 @@ services:
|
||||||
interval: 5s
|
interval: 5s
|
||||||
retries: 100
|
retries: 100
|
||||||
environment:
|
environment:
|
||||||
- CONTRACT_DEPLOYER_PRIVATE_KEY=${CONTRACT_DEPLOYER_PRIVATE_KEY}
|
- HYPERLANE_DEPLOYER_PRIVATE_KEY=${HYPERLANE_DEPLOYER_PRIVATE_KEY}
|
||||||
networks:
|
networks:
|
||||||
primev_net:
|
primev_net:
|
||||||
ipv4_address: '172.29.0.50'
|
ipv4_address: '172.29.0.50'
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ else
|
||||||
--chains /chain-config.yml \
|
--chains /chain-config.yml \
|
||||||
--ism /multisig-ism.yml \
|
--ism /multisig-ism.yml \
|
||||||
--out "/hyperlane-monorepo/artifacts" \
|
--out "/hyperlane-monorepo/artifacts" \
|
||||||
--key $CONTRACT_DEPLOYER_PRIVATE_KEY
|
--key $HYPERLANE_DEPLOYER_PRIVATE_KEY
|
||||||
expect {
|
expect {
|
||||||
"*low balance on*" {
|
"*low balance on*" {
|
||||||
send -- "Y\r"
|
send -- "Y\r"
|
||||||
|
|
@ -48,7 +48,7 @@ else
|
||||||
set timeout -1
|
set timeout -1
|
||||||
spawn hyperlane deploy warp \
|
spawn hyperlane deploy warp \
|
||||||
--yes \
|
--yes \
|
||||||
--key $CONTRACT_DEPLOYER_PRIVATE_KEY \
|
--key $HYPERLANE_DEPLOYER_PRIVATE_KEY \
|
||||||
--chains /chain-config.yml \
|
--chains /chain-config.yml \
|
||||||
--config /warp-tokens.yml \
|
--config /warp-tokens.yml \
|
||||||
--core /hyperlane-monorepo/artifacts/core-deployment.json
|
--core /hyperlane-monorepo/artifacts/core-deployment.json
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue