# Zcash Mainnet Relayer Configuration # Copy this file and modify with your actual values RUST_LOG=debug # === REQUIRED: Bitcoin Node Connection === RELAYER__BITCOIN__ENDPOINT=http://zcashd:8232 RELAYER__BITCOIN__NODE_USER=zcash RELAYER__BITCOIN__NODE_PASSWORD=zcash # === REQUIRED: NEAR Configuration === RELAYER__NEAR__ENDPOINT=https://rpc.mainnet.near.org RELAYER__NEAR__BTC_LIGHT_CLIENT_ACCOUNT_ID=btc-client.bridge.near RELAYER__NEAR__ACCOUNT_ID=your-relayer-account.near RELAYER__NEAR__PRIVATE_KEY=ed25519:your-private-key-here # === OPTIONAL: Relayer Behavior === RELAYER__MAX_FORK_LEN=500 RELAYER__FETCH_BATCH_SIZE=150 RELAYER__SUBMIT_BATCH_SIZE=15 RELAYER__SLEEP_TIME_ON_FAIL_SEC=30 RELAYER__SLEEP_TIME_ON_REACH_LAST_BLOCK_SEC=60 RELAYER__SLEEP_TIME_AFTER_SYNC_ITERATION_SEC=5 # === USAGE === # 1. Copy this file: cp examples/.env.zcash-mainnet .env.zcash-mainnet # 2. Edit with your values # 3. Run: docker compose --env-file .env.zcash-mainnet -f compose-zec.yaml up