#!/bin/bashset-eL1_NETWORK=ops-l1L2_NETWORK=ops-l2# Step 1: deploy the Proxy to the predeploy address on L2npx hardhat deploy --tags L2ERC721BridgeProxy --network$L2_NETWORK# Step 2: deploy the Proxy for the L1ERC721Bridge to L1npx hardhat deploy --tags L1ERC721BridgeProxy --network$L1_NETWORK# Step 3: deploy the L2ERC721Bridge implementationnpx hardhat deploy --tags L2ERC721BridgeImplementation --network$L2_NETWORK# Step 4: deploy the L1ERC721Bridge implementation to L1npx hardhat deploy --tags L1ERC721BridgeImplementation --network$L1_NETWORK# Step 5: deploy the Proxy for the OptimismMintableERC721Factory to L2npx hardhat deploy --tags OptimismMintableERC721FactoryProxy --network$L2_NETWORK