zcash-grant-system/blockchain/.env.example

33 lines
682 B
Plaintext
Raw Normal View History

# Webhooks Config
WEBHOOK_URL="http://localhost:5000/api/v1"
2018-12-28 15:24:46 -08:00
# REST Server Config
PORT="5051"
2018-12-28 15:24:46 -08:00
# ZCash Node (Defaults are for regtest)
ZCASH_NODE_URL="http://localhost:18232"
ZCASH_NODE_USERNAME="zcash_user"
ZCASH_NODE_PASSWORD="zcash_password"
MINIMUM_BLOCK_CONFIRMATIONS="6"
# Shared Server Config, run `yarn genkey` to generate
API_SECRET_HASH=""
API_SECRET_KEY=""
2018-12-28 15:24:46 -08:00
# Addresses, run `yarn genaddress` to get sprout information
SPROUT_ADDRESS=""
SPROUT_VIEWKEY=""
# extended public seed
BIP32_XPUB=""
# Block heights to fall back on for starting our scan
MAINNET_START_BLOCK="464000"
TESTNET_START_BLOCK="390000"
# Sentry URL
SENTRY_DSN=""
# Logging level
LOG_LEVEL="debug"