tornado-relayer/.env.example

31 lines
595 B
Plaintext
Raw Normal View History

# DNS settings
VIRTUAL_HOST=
LETSENCRYPT_HOST=
# server settings
PORT=8000
2021-10-27 16:17:35 +03:00
# for production
REDIS_URL=redis://redis/0
# for development
# REDIS_URL=redis://127.0.0.1:6379
2021-10-27 16:17:35 +03:00
2021-10-22 12:26:13 +03:00
CHAIN_ID=100
2021-12-09 17:58:05 +03:00
2023-10-07 16:57:00 +03:00
RPC_URL=https://rpc.gnosischain.com
2021-12-09 17:58:05 +03:00
# ORACLE_RPC_URL should always point to the mainnet
2023-10-07 16:57:00 +03:00
ORACLE_RPC_URL=https://rpc.payload.de
2021-10-22 12:26:13 +03:00
REWARD_ADDRESS=
2021-07-14 16:56:28 +03:00
PRIVATE_KEY=
2021-07-22 12:36:31 +03:00
CONFIRMATIONS=4
MAX_GAS_PRICE=100
2021-10-22 12:26:13 +03:00
# commission for service
# transfer fee is a fixed value in ether, 0.01 means 0.01 ether
TRANSFER_SERVICE_FEE=0.00000001
2021-10-22 12:26:13 +03:00
# withdrawal fee is a percentage of the amount, 0.05 means 0.05%
WITHDRAWAL_SERVICE_FEE=0.05
2021-10-22 12:26:13 +03:00