-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
57 lines (44 loc) · 1.68 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# The API key others will use to access this service
# Default: None (no API key required)
# EXPECTED_ACCESS_KEY = xxxx
############################
# API's wallet information #
############################
# The cold and hot key wallet names used by this service to access the bittensor network.
COLDKEY_WALLET_NAME = "test_coldkey" # define your own coldkey wallet name here
HOTKEY_WALLET_NAME = "test_hotkey" # define your own hotkey wallet name here
# Leave the WALLET_PATH as None to use the default wallet path.
# Default: '~/.bittensor/wallets'
# WALLET_PATH = '~/.bittensor/wallets'
##########################
# Which network to query #
##########################
# The subtensor network to connect to.
# None or finney = the main (prod) network
# test = testnet
# local = your own local network
# Default: None (finney)
# SUBTENSOR_NETWORK = "finney" # define your own subtensor network here
# The subnet UID to connect to.
# 1 = Subnet 1
# 61 = Subnet 1 on testnet
# Default: 1
# NETUID = 1 # define your own netuid here
############################
# How to query the network #
############################
# When we query the network, we return only unique cold keys (default is false)
# Default: false
# QUERY_UNIQUE_COLDKEYS = "false"
# When we query the network, we return only unique IPs
# Default: false
# QUERY_UNIQUE_IPS = "false"
# Validator port to query (Change if multiple validators on the same UID are running - like the OTF)
# Default: None
# QUERY_VALIDATOR_PORT = xxxx
# The minimum staked tao a UID must have to be considered a validator
# Default: 4096
# VALIDATOR_MIN_STAKE = 4096
# The interval to resync the metagraph
# Default: 60 seconds
# RESYNC_METAGRAPH_INTERVAL = 60