mirror of
https://github.com/tornadocash/tornado-pool-relayer
synced 2024-02-02 15:04:09 +01:00
31 lines
596 B
Plaintext
31 lines
596 B
Plaintext
# DNS settings
|
|
VIRTUAL_HOST=
|
|
LETSENCRYPT_HOST=
|
|
|
|
# server settings
|
|
PORT=8000
|
|
|
|
# for production
|
|
REDIS_URL=redis://redis/0
|
|
# for development
|
|
# REDIS_URL=localhost
|
|
|
|
CHAIN_ID=100
|
|
# RPC_URL=https://rpc.xdaichain.com/tornado
|
|
|
|
# ORACLE_RPC_URL should always point to the mainnet
|
|
# ORACLE_RPC_URL=https://mainnet.infura.io
|
|
|
|
REWARD_ADDRESS=
|
|
|
|
PRIVATE_KEY=
|
|
CONFIRMATIONS=4
|
|
MAX_GAS_PRICE=100
|
|
|
|
# commission for service
|
|
# transfer fee is a fixed value in ether, 0.01 means 0.01 ether
|
|
TRANSFER_SERVICE_FEE=0.000000001
|
|
# withdrawal fee is a percentage of the amount, 0.05 means 0.05%
|
|
WITHDRAWAL_SERVICE_FEE=0.01
|
|
|