Skip to content

Commit

Permalink
Add mainnet config (Copy test) to fix ci build
Browse files Browse the repository at this point in the history
  • Loading branch information
BlockchainJames committed Nov 7, 2018
1 parent 15ad1d6 commit 75903a3
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 1 deletion.
51 changes: 51 additions & 0 deletions zbs-mainnet.conf
@@ -0,0 +1,51 @@
# Zbs node settings
zbs {

# P2P Network settings
network {
# Network address
bind-address = "0.0.0.0"

# Port number
port = 7430

known-peers = ["206.189.241.138:7430"]

# Node name to send during handshake. Give your Node a name, or comment this string out to set random node name.
node-name = "ZBS Testnet Node"

# String with IP address and port to send as external address during handshake. Could be set automatically if uPnP is enabled.
#declared-address = "1.2.3.4:7430"

black-list-residence-time = 30 minutes
}

# Wallet settings
wallet {
# Password to protect wallet file - CHANGE THIS AND KEEP IT SECURE.
password = "MySecurePassword!"

# Wallet seed as BASE58 string. If commented out, a wallet will be generated for the node automatically.
# seed = ""
}

# Blockchain settings
blockchain.type = TESTNET

# Node's REST API settings. Enable if you want to use your node for testing your own software developed for the 0bsnetwork platform.
rest-api {
# Enable/disable node's REST API
enable = no

# Network address to bind to. IF YOU WANT TO ENABLE ACCESS VIA THE INTERNET, DO IT USING A REVERSE PROXY (eg. Nginx) FOR SECURITY REASONS.
bind-address = "127.0.0.1"

# Port to listen to REST API requests
port = 7431

# Hash of API key string. CHANGE THIS IF YOU ENABLE NODE API. OTHERWISE YOUR NODE WILL BE OPEN TO EVERYONE.
api-key-hash = "Ar5uQmERstJyhpnn8QKU3qDJ43SydGMESy2TfCuthBoE"
}
}

include "local.conf"
2 changes: 1 addition & 1 deletion zbs-testnet.conf
@@ -1,4 +1,4 @@
# Zbs node settins
# Zbs node settings
zbs {

# P2P Network settings
Expand Down

0 comments on commit 75903a3

Please sign in to comment.