forked from numinouslabs/numinous
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.validator.example
More file actions
30 lines (27 loc) · 1.49 KB
/
.env.validator.example
File metadata and controls
30 lines (27 loc) · 1.49 KB
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
# =============================================================================
# Validator Environment Variables
# =============================================================================
# Copy this file to .env.validator and fill in your wallet details
# Usage: docker compose -f docker-compose.validator.yaml --env-file .env.validator up -d
# =============================================================================
# -----------------------------------------------------------------------------
# Bittensor Wallet Configuration (Required)
# -----------------------------------------------------------------------------
# Your validator wallet name (coldkey directory name)
WALLET_NAME=validator
# Your validator hotkey name (hotkey file name)
WALLET_HOTKEY=default
# -----------------------------------------------------------------------------
# Wallet Path Configuration (Optional)
# -----------------------------------------------------------------------------
# Path to wallet directory on HOST filesystem (not inside container)
# This tells the validator where to find your wallet files on the host machine
#
# Default: ${HOME}/.bittensor/wallets (standard Bittensor location)
# This works for most users - ${HOME} expands to your home directory
#
# Only change this if your wallets are stored in a non-standard location
# Examples:
# HOST_WALLET_PATH=${HOME}/.bittensor/wallets (default)
# HOST_WALLET_PATH=/custom/path/to/wallets (custom location)
HOST_WALLET_PATH=${HOME}/.bittensor/wallets