mirror of
https://github.com/logos-messaging/logos-messaging-rlnv2-contract.git
synced 2026-01-07 08:23:09 +00:00
14 lines
299 B
Bash
14 lines
299 B
Bash
|
|
# This script is used to assert if require env vars are present for deployment
|
||
|
|
# RPC_URL: RPC URL for the network
|
||
|
|
# ACCOUNT: Accessed with `cast wallet` command
|
||
|
|
|
||
|
|
if [ -z "$RPC_URL" ]; then
|
||
|
|
echo "RPC_URL is required"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
if [ -z "$ACCOUNT" ]; then
|
||
|
|
echo "ACCOUNT is required"
|
||
|
|
exit 1
|
||
|
|
fi
|