# Configure
TIP
Connect to the right network
# Start Forging
WARNING
Do not reuse your delegate secret on different GNY Blockchain networks (localnet, testnet, mainnet). Otherwise you will make yourself vulnerable to replay attacks (opens new window).
TIP
In order to start forging you need to first register as delegate. Be sure to checkout our Guides on how to register as delegate and how to create a random secret.
In order to start forging please pass a secret or multiple secrets (comma separated) to the GNY Blockchain. This option is optional.
Change CLI arguments:
- npm run start
+ npm run start -- --secret="chief next globe deny try danger trust wet spoil away eight task"
 2
Change your docker-compose.yml:
services:
  # db1 service omitted
  node1:
    # other keys omitted
    environment:
+     - GNY_SECRET=chief next globe deny try danger trust wet spoil away eight task
 2
3
4
5
6
# Configure Public IP
WARNING
The publicIp option is mandatory on the testnet and on the mainnet. If you don't set it then the node will automatically use its privateIp which which will make the p2p communication with other nodes not work.
Pass public ip as argument:
- npm run start
+ npm run start -- --publicIP="20.188.42.0"
 2
Pass public ip as environment variable:
services:
  # db1 service omitted
  node1:
    # other keys omitted
    environment:
+	  - GNY_PUBLIC_IP=20.188.42.0
 2
3
4
5
6
TIP
After that the nodes own public ip configuration should be checked with the HTTP API endpoint /api/peers/info. This endpoint displays information about the own node!

# Configure Network
The option network sets which network the node should connect to. This option is mandatory.
The network can be passed to the GNY node:
- as argument 
--network=mainnet - as environment variable 
GNY_NETWORK=mainnet 
# Configure P2P Secret
The p2p secret keeps the connection between peers secure. This is option is mandatory.
The p2p secret can be passed to the GNY node:
- as argument: 
--privateP2PKey="CAASqQkwggSlAgEA..." - as environment variable: 
GNY_P2P_SECRET="CAASqQkwggSlAgEA..." 
Pass p2p secret as argument:
- npm run start
+ npm run start -- --privateP2PKey="CAASqQkwggSlAgEA..."
 2
Pass p2p secret as environment variable:
services:
  # db1 service omitted
  node1:
    # other keys omitted
    environment:
+	  - GNY_P2P_SECRET="CAASqQkwggSlAgEA..."
 2
3
4
5
6
# Configure P2P Peers
The p2p peers option says to which peer(s) (comma separated) we should connect in the network. This option is optional
The p2p peers option can be passed to the GNY node:
- as argument: 
--peers="/ip4/192.248.155.206/tcp/4097/p2p/QmUTkMvTdFsgNdtYMcN6U7VHBMzcVbg2oC3xYCagCJbRNs" - as environment variable: 
GNY_P2P_PEERS=/ip4/192.248.155.206/tcp/4097/p2p/QmUTkMvTdFsgNdtYMcN6U7VHBMzcVbg2oC3xYCagCJbRNs 
# Configure DB Password
The dbPassword option sets the password for the db to connect to.
The dbPassword option can be passed to the GNY node:
- as argument: 
--dbPassword=docker - as environment variable: 
GNY_DB_PASSWORD=docker 
Pass dbPassword as argument:
- npm run start
+ npm run start -- --dbPassword=docker
 2
Pass dbPassword as environment variable:
services:
  # db1 service omitted
  node1:
    # other keys omitted
    environment:
+    - GNY_DB_PASSWORD=docker
 2
3
4
5
6
# Configure DB Name
The dbDatabase configures the database name to which the GNY Blockchain should connect to.
The dbDatabase option can be passed to the GNY node:
- as argument: 
--dbDatabase=postgres - as environment variable: 
GNY_DB_DATABASE=postgres 
Pass dbDatabase as argument:
- npm run start
+ npm run start -- --dbDatabase=postgres
 2
Pass dbDatabase as environment variable:
services:
  # db1 service omitted
  node1:
    # other keys omitted
    environment:
+    - GNY_DB_DATABASE=postgres
 2
3
4
5
6
# Configure DB User
The dbUser sets the database user with which the GNY Blockchain should connect to.
The dbUser option can be passed to the GNY node:
- as argument: 
--dbUser=postgres - as environment variable: 
GNY_DB_USER=postgres 
Pass dbUser as argument:
- npm run start
+ npm run start -- --dbUser=postgres
 2
Pass dbUser as environment variable:
services:
  # db1 service omitted
  node1:
    # other keys omitted
    environment:
+    - GNY_DB_USER=postgres
 2
3
4
5
6
# Configure DB Host
The dbHost sets the database host to which the GNY Blockchain should connect to.
The dbHost option can be passed to the GNY node:
- as argument: 
--dbHost=db1 - as environment variable: 
GNY_DB_HOST=db1 
Pass dbHost as argument:
- npm run start
+ npm run start -- --dbUser=db1
 2
Pass dbHost as environment variable:
services:
  # db1 service omitted
  node1:
    # other keys omitted
    environment:
+    - GNY_DB_HOST=db1
 2
3
4
5
6
# Configure DB Port
The dbPort sets the database port to which the GNY Blockchain should connect to.
The dbPort option can be passed to the GNY node:
- as argument: 
--dbPort=5432 - as environment variable: 
GNY_DB_PORT=5432 
Pass dbPort as argument:
- npm run start
+ npm run start -- --dbPort=5432
 2
Pass dbPort as environment variable:
services:
  # db1 service omitted
  node1:
    # other keys omitted
    environment:
+    - GNY_DB_Port=5432
 2
3
4
5
6
# All Environment Variable Options
# All available Options
Options:
  -V, --version            output the version number
  --config <path>          Config file path
  --port <port>            Listening port number
  --address <ip>           Listening host name or ip
  --genesisblock <path>    Genesisblock path
  --peers [peers...]       Peers list
  --log <level>            Log level: log|trace|debug|info|warn|error|fatal
  --base <dir>             Base directory
  --privateP2PKey <key>    Private P2P Key (base64 encoded) - overrides p2p_key.json file
  --secret [secret...]     comma separated secrets
  --publicIP <ip>          Public IP of own server, default private IP
  --network <network>      Must be: localnet | testnet | mainnet
  --dbPassword <password>
  --dbDatabase <database>
  --dbUser <user>
  --dbHost <host>
  --dbPort <port>
  -h, --help               output usage information
Environment Variables:
  GNY_NETWORK=<network>       Must be: localnet | testnet | mainnet
  GNY_PORT=<port>             Listening port number
  GNY_LOG_LEVEL=<level>       log|trace|debug|info|warn|error|fatal
  GNY_P2P_SECRET=<key>        Private P2P Key (base64 encoded) - overrides p2p_key.json file
  GNY_SECRET=[secret...]      comma separated secrets
  GNY_PUBLIC_IP=<ip>          Public IP of own server, default private IP
  GNY_P2P_PEERS=[peers...]    comma separated peers
  GNY_ADDRESS=<address>       Listening host name or ip
  GNY_DB_PASSWORD=<password>  db password
  GNY_DB_DATABASE=<database>  db name
  GNY_DB_USER=<user>          db user
  GNY_DB_HOST=<host>          db host
  GNY_DB_PORT=<port>          db port
 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