mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-09 09:01:52 +08:00
47 lines
1.5 KiB
Python
47 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
import logbook
|
|
|
|
''' You can override the LOG level from your environment.
|
|
For example, if you want to see the DEBUG messages, run:
|
|
$ export CATALYST_LOG_LEVEL=10
|
|
'''
|
|
LOG_LEVEL = int(os.environ.get('CATALYST_LOG_LEVEL', logbook.INFO))
|
|
|
|
SYMBOLS_URL = 'https://s3.amazonaws.com/enigmaco/catalyst-exchanges/' \
|
|
'{exchange}/symbols.json'
|
|
|
|
DATE_TIME_FORMAT = '%Y-%m-%d %H:%M'
|
|
DATE_FORMAT = '%Y-%m-%d'
|
|
|
|
try:
|
|
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
except Exception as e:
|
|
print('unable to get catalyst path: {}'.format(e))
|
|
|
|
AUTO_INGEST = False
|
|
|
|
AUTH_SERVER = 'https://data.enigma.co'
|
|
|
|
# TODO: switch to mainnet
|
|
ETH_REMOTE_NODE = 'https://ropsten.infura.io/'
|
|
|
|
|
|
MARKETPLACE_CONTRACT = 'https://raw.githubusercontent.com/enigmampc/' \
|
|
'catalyst/master/catalyst/marketplace/' \
|
|
'contract_marketplace_address.txt'
|
|
|
|
MARKETPLACE_CONTRACT_ABI = 'https://raw.githubusercontent.com/enigmampc/' \
|
|
'catalyst/master/catalyst/marketplace/' \
|
|
'contract_marketplace_abi.json'
|
|
|
|
# TODO: switch to mainnet
|
|
ENIGMA_CONTRACT = 'https://raw.githubusercontent.com/enigmampc/catalyst/' \
|
|
'master/catalyst/marketplace/' \
|
|
'contract_enigma_address.txt'
|
|
|
|
ENIGMA_CONTRACT_ABI = 'https://raw.githubusercontent.com/enigmampc/' \
|
|
'catalyst/master/catalyst/marketplace/' \
|
|
'contract_enigma_abi.json'
|