Skip to content

Commit

Permalink
comments on same line as variable
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmgb committed Oct 3, 2023
1 parent f3cead2 commit 14a3ef6
Showing 1 changed file with 19 additions and 36 deletions.
55 changes: 19 additions & 36 deletions network.env.dist
Original file line number Diff line number Diff line change
Expand Up @@ -89,39 +89,26 @@ SLICES="[0 0],[0 1],[0 2],[1 0],[1 1],[1 2],[2 0],[2 1],[2 2]"

# Boolean Variables

# ENABLE_HTTP enables or disables http porting.
# ENABLE_WS enables or disables websocket porting.
# ENABLE_ARCHIVE enables or disables running an archive node.

ENABLE_HTTP=true
ENABLE_WS=true
ENABLE_ARCHIVE=false
ENABLE_HTTP=true # ENABLE_HTTP enables or disables http API.
ENABLE_WS=true # ENABLE_WS enables or disables websocket API.
ENABLE_ARCHIVE=false # ENABLE_ARCHIVE enables or disables running an archive node.


# Input Variables

# WARNING: Only allow websocket connections (i.e. WS_ADDR) from a trusted
# network. At time of writing, no transport security is implemented, but this is
# a trusted communication channel.

# NETWORK options include colosseum (mainnet), garden (testnet), and local.
# You will need to input the correct NONCE to join the P2P network.
# HTTP_ADDR options include 0.0.0.0 and 127.0.0.1 (local host)
# WS_ADDR options include 0.0.0.0 and 127.0.0.1 (local host)
# WS_API and HTTPS_API options include any blockchain compatible API
# ENABLE_NAT should be turned to true if port forwarding is being used.
# EXT_IP should be set to the node's external IP if port forwarding is being used.
# Turning RUN_BLAKE3 to true allows for BLAKE3 mining to be performed when running a local node.

NETWORK=colosseum
NONCE=5926993 #Change this along with network
HTTP_ADDR=localhost
WS_ADDR=localhost
WS_API=eth,quai
HTTP_API=quai
ENABLE_NAT=false
# EXT_IP=Optional, enable if you have port forwarding
RUN_BLAKE3=false
# a trusted communication channel.

NETWORK=colosseum # NETWORK options include colosseum (mainnet), garden (testnet), and local.
NONCE=5926993 # Change this along with network. You will need to input the correct NONCE to join the P2P network.
HTTP_ADDR=localhost # HTTP_ADDR options include 0.0.0.0 and 127.0.0.1 (local host)
WS_ADDR=localhost # WS_ADDR options include 0.0.0.0 and 127.0.0.1 (local host)
WS_API=eth,quai # WS_API and HTTPS_API options include any blockchain compatible API
HTTP_API=quai
ENABLE_NAT=false # ENABLE_NAT should be turned to true if port forwarding is being used.
# EXT_IP=Optional # EXT_IP should be set to the node's external IP if port forwarding is being used.
RUN_BLAKE3=false # Turning RUN_BLAKE3 to true allows for BLAKE3 mining to be performed when running a local node.


# Bootnode-Specific Variables
Expand All @@ -133,25 +120,21 @@ BOOTNODE=false
CORS=false


# Verbosity Variable
# Lowers or raises the debug level to print more or less information about the node.
# Verbosity Variable

VERBOSITY=4
VERBOSITY=4 # Lowers or raises the debug level to print more or less information about the node.


# Syncmode Variables
# SYNCMODE specifies what type of syncing the node will perform. Currently, only full syncing is supported.

SYNCMODE=full
SYNCMODE=full # SYNCMODE specifies what type of syncing the node will perform. Currently, only full syncing is supported.
NO_DISCOVER=false


# Stats Information
# QUAI_STATS determines whether or not the node should be displayed on the node stats page (https://stats.quai.network/).
# If invited, a node can specify the provided STATS_NAME, STATS_PASS, and STATS_HOST to share information to the stats page.

QUAI_STATS=false
STATS_NAME=
QUAI_STATS=false # QUAI_STATS determines whether or not the node should be displayed on the node stats page (https://stats.quai.network/).
STATS_NAME= # If invited, a node can specify the provided STATS_NAME, STATS_PASS, and STATS_HOST to share information to the stats page.
STATS_PASS=
STATS_HOST=

Expand Down

0 comments on commit 14a3ef6

Please sign in to comment.