mirror of
https://github.com/autistic-symposium/blockchain-data-engineering-toolkit.git
synced 2025-04-26 10:49:23 -04:00
46 lines
848 B
Plaintext
46 lines
848 B
Plaintext
#########################
|
|
##### requests settings
|
|
#########################
|
|
|
|
RPC_PROVIDER_URL =
|
|
TOKEN_CONTRACT =
|
|
TOKEN_CONTRACT_ABI =
|
|
TOKEN_DECIMALS =
|
|
|
|
#########################
|
|
##### indexing token data
|
|
#########################
|
|
|
|
MAX_RETRIES = 4
|
|
SIZE_CHUNK_NEXT = 5000
|
|
|
|
|
|
#########################
|
|
##### system settings
|
|
#########################
|
|
|
|
LOG_LEVEL=info
|
|
OUTPUT_DIR = ./output
|
|
|
|
|
|
|
|
#########################
|
|
##### mongodb settings
|
|
#########################
|
|
|
|
## locally: mongodb://localhost:27017
|
|
## production: mongodb://user:password@host:port
|
|
MONGODB_URI = mongodb://localhost:27017
|
|
MONGODB_DB_NAME = balances
|
|
MONGODB_COLLECTION_NAME = balances
|
|
|
|
|
|
#########################
|
|
##### api settings
|
|
#########################
|
|
|
|
## locally: http://localhost:80
|
|
## production: http://host:port
|
|
API_HOST_URL = http://localhost
|
|
API_HOST_URL_PORT = 80
|