# Zcash Testnet Relayer Configuration # Copy this file and modify with your actual values # === REQUIRED: Bitcoin Node Connection === RELAYER__BITCOIN__ENDPOINT=http://zcashd:18232 RELAYER__BITCOIN__NODE_USER=zcash RELAYER__BITCOIN__NODE_PASSWORD=zcash # === REQUIRED: NEAR Configuration === RELAYER__NEAR__ENDPOINT=https://rpc.testnet.near.org RELAYER__NEAR__BTC_LIGHT_CLIENT_ACCOUNT_ID=btc-client-v4.testnet RELAYER__NEAR__ACCOUNT_ID=your-relayer-account.testnet RELAYER__NEAR__PRIVATE_KEY=ed25519:your-private-key-here # === OPTIONAL: Relayer Behavior === RELAYER__MAX_FORK_LEN=500 RELAYER__FETCH_BATCH_SIZE=100 RELAYER__SUBMIT_BATCH_SIZE=10 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-testnet .env.zcash-testnet # 2. Edit with your values # 3. Run: docker compose --env-file .env.zcash-testnet -f compose-zec.yaml up