From 79aa953330c00fdb5a8a588cf65526008567df0f Mon Sep 17 00:00:00 2001 From: Paul Razvan Berg Date: Sun, 17 Dec 2023 15:58:50 +0200 Subject: [PATCH] refactor: rename multi-chain script --- shell/{deploy-multi-chains.sh => deploy-multi-chain.sh} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename shell/{deploy-multi-chains.sh => deploy-multi-chain.sh} (96%) diff --git a/shell/deploy-multi-chains.sh b/shell/deploy-multi-chain.sh similarity index 96% rename from shell/deploy-multi-chains.sh rename to shell/deploy-multi-chain.sh index b2d8c5a2b..1a1179fcd 100755 --- a/shell/deploy-multi-chains.sh +++ b/shell/deploy-multi-chain.sh @@ -1,14 +1,14 @@ #!/usr/bin/env bash -# Usage: ./shell/deploy-multi-chains.sh [options] [[chain1 chain2 ...]] +# Usage: ./shell/deploy-multi-chain.sh [options] [[chain1 chain2 ...]] # Options: # --all Deploy on all chains. # --broadcast Broadcast the deployment and verify on Etherscan. # --deterministic Deploy using the deterministic script. # --with-gas-price Specify gas price for transaction. -# Example: ./shell/deploy-multi-chains.sh # By default, deploys only to Sepolia -# Example: ./shell/deploy-multi-chains.sh --broadcast optimism mainnet -# Example: ./shell/deploy-multi-chains.sh --broadcast --deterministic mainnet +# Example: ./shell/deploy-multi-chain.sh # By default, deploys only to Sepolia +# Example: ./shell/deploy-multi-chain.sh --broadcast optimism mainnet +# Example: ./shell/deploy-multi-chain.sh --broadcast --deterministic mainnet # Make sure you set-up your `.env.deployment` file first.