You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
5 years ago
|
#########################################
|
||
|
# CONFIGURATION OF A LOCAL INDEXER
|
||
|
#########################################
|
||
|
|
||
|
# Install and run a local indexer inside Docker
|
||
|
# Set this option to 'off' for using an indexer hosted outside of Docker
|
||
|
# or when using a different data source (local bitcoind, OXT)
|
||
|
# Value: on | off
|
||
|
INDEXER_INSTALL=off
|
||
|
|
||
|
# IP address of the local indexer used by Dojo
|
||
|
# Set value to 172.28.1.6 if INDEXER_INSTALL is set to 'on'
|
||
|
# Type: string
|
||
|
INDEXER_IP=172.28.1.6
|
||
|
|
||
|
# Port of the RPC API
|
||
|
# Set value to 50001 if INDEXER_INSTALL is set to 'on'
|
||
|
# Type: integer
|
||
|
INDEXER_RPC_PORT=50001
|
||
|
|
||
|
# Support of batch requests by the local indexer
|
||
|
# Set value to inactive if INDEXER_INSTALL is set to 'on'
|
||
|
# Value: active | inactive
|
||
|
INDEXER_BATCH_SUPPORT=inactive
|
||
|
|
||
|
|
||
|
#
|
||
|
# EXPERT SETTINGS
|
||
|
# (ACTIVE IF INDEXER_INSTALL IS SET TO ON)
|
||
|
#
|
||
|
|
||
|
# Number of blocks to get in one JSONRPC request from bitcoind
|
||
|
# Type: integer
|
||
|
INDEXER_BATCH_SIZE=10
|
||
|
|
||
|
# Total size of block txids to cache (in MB)
|
||
|
# Type: integer
|
||
|
INDEXER_BLK_TXIDS_CACHE_SIZE_MB=10
|
||
|
|
||
|
# Number of transactions to lookup before returning an error
|
||
|
# Type: integer
|
||
|
INDEXER_TXID_LIMIT=501
|