oxen-observer/config.py

28 lines
964 B
Python
Raw Normal View History

2020-08-19 17:40:13 +02:00
# LMQ RPC endpoint of lokid; can be a unix socket 'ipc:///path/to/lokid.sock' (preferred) or a tcp
# socket 'tcp://127.0.0.1:5678'. Typically you want this running with admin permission.
2020-09-01 06:44:06 +02:00
# This is actually set for each observer in the ...net.py script.
lokid_rpc = None
2020-08-19 17:40:13 +02:00
# Default blocks per page for the index.
blocks_per_page=20
# Maximum blocks per page a user can request
max_blocks_per_page=100
# Some display and/or feature options:
pusher=False
key_image_checker=False
output_key_checker=False
2020-08-19 17:40:13 +02:00
autorefresh_option=True
enable_mixins_details=True
2020-08-19 17:40:13 +02:00
# URLs to networks other than the one we are on:
mainnet_url='https://blocks.lokinet.dev'
testnet_url='https://testnet.lokinet.dev'
devnet_url='https://devnet.lokinet.dev'
# Same as above, but these apply if we are on a .loki URL:
2021-01-04 18:07:01 +01:00
lokinet_mainnet_url='http://blocks.loki'
lokinet_testnet_url='http://testnet.loki'
2020-08-19 17:40:13 +02:00
lokinet_devnet_url='http://devnet.kcpyawm9se7trdbzncimdi5t7st4p5mh9i1mg7gkpuubi4k4ku1y.loki'