Skip to content
Merged
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
5 changes: 2 additions & 3 deletions op-deployer/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,9 @@ pre-deploy: build build-contracts
deploy-opcm release="dev" locator="$DEFAULT_LOCATOR": _validate_rpc
#!/bin/bash
echo "Using artifacts locator: {{locator}}"
./bin/op-deployer bootstrap implementations \
go run ./cmd/op-deployer bootstrap implementations \
--l1-rpc-url $ETH_RPC_URL \
--private-key $PRIVATE_KEY \
--mips-version 7 \
--protocol-versions-proxy $PROTOCOL_VERSIONS_PROXY \
--superchain-config-proxy $SUPERCHAIN_CONFIG_PROXY \
--l1-proxy-admin-owner $L1_PROXY_ADMIN_OWNER \
Expand All @@ -107,7 +106,7 @@ deploy-opcm release="dev" locator="$DEFAULT_LOCATOR": _validate_rpc
verify-opcm locator="$DEFAULT_LOCATOR": _validate_rpc
#!/bin/bash
echo "Using artifacts locator: {{locator}}"
./bin/op-deployer verify \
go run ./cmd/op-deployer verify \
--artifacts-locator {{locator}} \
--l1-rpc-url $ETH_RPC_URL \
--etherscan-api-key $ETHERSCAN_API_KEY \
Expand Down