Skip to content

Commit

Permalink
feat: log broadcast files
Browse files Browse the repository at this point in the history
  • Loading branch information
yiweichi committed Aug 1, 2024
1 parent 2fc37bd commit 1f9cdd7
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docker/scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,14 @@ forge script scripts/deterministic/DeployScroll.s.sol:DeployScroll --rpc-url "$L
echo ""
echo "deploying on L2"
forge script scripts/deterministic/DeployScroll.s.sol:DeployScroll --rpc-url "$L2_RPC_ENDPOINT" --batch-size "$BATCH_SIZE" --sig "run(string,string)" "L2" "verify-config" --broadcast --legacy || exit 1

# log broadcast files
echo ""
echo "Broadcast files:"
for file in broadcast/DeployScroll.s.sol/*/*; do
if [ -f "$file" ]; then
echo "$file:"
cat "$file"
echo ""
fi
done

0 comments on commit 1f9cdd7

Please sign in to comment.