#!/bin/bash set -e contract_name="$1" provided_chain_name="$2" if [ -z "$contract_name" ]; then echo "Usage: ./script/deploy.sh " exit 1 fi if [ -z "$provided_chain_name" ]; then echo "Usage: ./script/deploy.sh " exit 1 fi echo "Sourcing .env" source .env rpc_url="" # Check if appropriate env vars are set if [ "$provided_chain_name" = "sepolia" ]; then if [ -z "$SEPOLIA_RPC_URL" ]; then echo "SEPOLIA_RPC_URL is not set" exit 1 else rpc_url="$SEPOLIA_RPC_URL" fi elif [ "$provided_chain_name" = "polygon-zkevm-testnet" ]; then if [ -z "$POLYGON_ZKEVM_TESTNET_RPC_URL" ]; then echo "POLYGON_ZKEVM_TESTNET_RPC_URL is not set" exit 1 else rpc_url="$POLYGON_ZKEVM_TESTNET_RPC_URL" fi else echo "Invalid chain name, try again with sepolia/polygon-zkevm-testnet" exit 1 fi if [ -z "$PRIVATE_KEY" ]; then echo "PRIVATE_KEY is not set" exit 1 fi echo "Deploying $contract_name..." # Deploy the contract if [ "$contract_name" = "rln" ]; then chain_id=$(cast chain-id --rpc-url "$rpc_url") chain_name="" verifier_url="" if [ -z "$chain_id" ]; then echo "Failed to get chain id" exit 1 fi if [ "$chain_id" = "11155111" ]; then chain_name="sepolia" elif [ "$chain_id" = "1442" ]; then chain_name="polygon-zkevm-testnet" else echo "Invalid chain id, try again with sepolia/polygon-zkevm-testnet" exit 1 fi forge script script/Deploy.s.sol:Deploy --chain $chain_name --rpc-url $rpc_url --private-key "$PRIVATE_KEY" --broadcast --verify echo "Deployed Rln contracts, Now verifying" echo "Verified $rln_name contract, now dumping the artifacts to ./deployments/$chain_id/latest.json" # Dump the artifacts to ./deployments/$chain_id/latest.json mkdir -p ./deployments/$chain_id cat ./broadcast/Deploy.s.sol/$chain_id/run-latest.json | jq -r '.["transactions"]' > ./deployments/$chain_id/latest.json else echo "Invalid contract name, please use rln." fi