124 lines
4.3 KiB
Bash
Executable File
124 lines
4.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
contract_name="$1"
|
|
provided_chain_name="$2"
|
|
|
|
if [ -z "$contract_name" ]; then
|
|
echo "Usage: ./script/deploy.sh <contract_name (rln)> <chain_name (sepolia, polygon-zkevm-testnet)>"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$provided_chain_name" ]; then
|
|
echo "Usage: ./script/deploy.sh <contract_name (rln)> <chain_name (sepolia, polygon-zkevm-testnet)>"
|
|
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 -v
|
|
echo "Deployed Rln contracts, Now verifying"
|
|
|
|
# Get the PoseidonT3 contract address from ./broadcast/Deploy.s.sol/$chain_id/run-latest.json
|
|
poseidon_t3_name=$(cat ./broadcast/Deploy.s.sol/$chain_id/run-latest.json | jq -r '.["transactions"][0]["contractName"]')
|
|
poseidon_t3_address=$(cat ./broadcast/Deploy.s.sol/$chain_id/run-latest.json | jq -r '.["transactions"][0]["contractAddress"]')
|
|
|
|
echo "Verifying $poseidon_t3_name library"
|
|
forge verify-contract $poseidon_t3_address \
|
|
--watch \
|
|
--chain $chain_name \
|
|
$poseidon_t3_name
|
|
|
|
# Get the BinaryIMT contract address from ./broadcast/Deploy.s.sol/$chain_id/run-latest.json
|
|
binary_imt_name=$(cat ./broadcast/Deploy.s.sol/$chain_id/run-latest.json | jq -r '.["transactions"][1]["contractName"]')
|
|
binary_imt_address=$(cat ./broadcast/Deploy.s.sol/$chain_id/run-latest.json | jq -r '.["transactions"][1]["contractAddress"]')
|
|
|
|
echo "Verifying $binary_imt_name library"
|
|
forge verify-contract $binary_imt_address \
|
|
--libraries "poseidon-solidity/PoseidonT3.sol:$poseidon_t3_name:$poseidon_t3_address" \
|
|
--watch \
|
|
--chain $chain_name \
|
|
$binary_imt_name
|
|
|
|
# Get the Verifier contract address from ./broadcast/Deploy.s.sol/$chain_id/run-latest.json
|
|
verifier_name=$(cat ./broadcast/Deploy.s.sol/$chain_id/run-latest.json | jq -r '.["transactions"][2]["contractName"]')
|
|
verifier_address=$(cat ./broadcast/Deploy.s.sol/$chain_id/run-latest.json | jq -r '.["transactions"][2]["contractAddress"]')
|
|
|
|
echo "Verifying $verifier_name contract"
|
|
forge verify-contract $verifier_address \
|
|
--watch \
|
|
--chain $chain_name \
|
|
$verifier_name
|
|
|
|
# Get the Rln contract address from ./broadcast/Deploy.s.sol/$chain_id/run-latest.json
|
|
rln_name=$(cat ./broadcast/Deploy.s.sol/$chain_id/run-latest.json | jq -r '.["transactions"][3]["contractName"]')
|
|
rln_address=$(cat ./broadcast/Deploy.s.sol/$chain_id/run-latest.json | jq -r '.["transactions"][3]["contractAddress"]')
|
|
|
|
echo "Verifying $rln_name contract"
|
|
forge verify-contract $rln_address \
|
|
--libraries "poseidon-solidity/PoseidonT3.sol:$poseidon_t3_name:$poseidon_t3_address" \
|
|
--libraries "@zk-kit/imt.sol/BinaryIMT.sol:$binary_imt_name:$binary_imt_address" \
|
|
--watch \
|
|
--chain $chain_name \
|
|
$rln_name \
|
|
--constructor-args $(cast abi-encode "constructor(uint256,uint256,address)" 0 20 "$verifier_address")
|
|
|
|
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 |