github.com/klaytn/klaytn@v1.10.2/build/packaging/linux/conf/kcnd_baobab.conf (about)

     1  # Configuration file for the kcnd
     2  
     3  # cypress, baobab is only available if you don't specify NETWORK_ID.
     4  NETWORK="baobab"
     5  # if you specify NETWORK_ID, a private network is created.
     6  NETWORK_ID=
     7  
     8  PORT=32323
     9  
    10  SERVER_TYPE="http"
    11  SYNCMODE="full"
    12  VERBOSITY=3
    13  MAXCONNECTIONS=100
    14  # LDBCACHESIZE=10240
    15  REWARDBASE="0x0"
    16  
    17  # txpool options setting
    18  TXPOOL_EXEC_SLOTS_ALL=16384
    19  TXPOOL_NONEXEC_SLOTS_ALL=16384
    20  TXPOOL_EXEC_SLOTS_ACCOUNT=16384
    21  TXPOOL_NONEXEC_SLOTS_ACCOUNT=16384
    22  TXPOOL_LIFE_TIME="5m"
    23  
    24  # rpc options setting
    25  RPC_ENABLE=0 # if this is set, the following options will be used
    26  RPC_API="klay,eth,net,web3" # available apis: admin,debug,klay,eth,miner,net,personal,rpc,txpool,web3,governance
    27  RPC_PORT=8551
    28  RPC_ADDR="0.0.0.0"
    29  RPC_CORSDOMAIN="*"
    30  RPC_VHOSTS="*"
    31  
    32  # ws options setting
    33  WS_ENABLE=0 # if this is set, the following options will be used
    34  WS_API="klay,eth,net,web3" # available apis: admin,debug,klay,eth,miner,net,personal,rpc,txpool,web3,governance
    35  WS_ADDR="0.0.0.0"
    36  WS_PORT=8552
    37  WS_ORIGINS="*"
    38  
    39  # Setting 1 is to enable options, otherwise disabled.
    40  AUTO_RESTART=1
    41  METRICS=1
    42  PROMETHEUS=1
    43  DB_NO_PARALLEL_WRITE=0
    44  MULTICHANNEL=1
    45  SUBPORT=$((PORT + 1)) # used for multi channel option
    46  
    47  # discover options
    48  NO_DISCOVER=0 # setting 1 to disable discovery
    49  BOOTNODES=""
    50  
    51  # Raw options e.g) "--txpool.nolocals"
    52  ADDITIONAL=""
    53  
    54  # auto restart options
    55  AUTO_RESTART_NODE=0
    56  AUTO_RESTART_INTERVAL=0.1
    57  
    58  DATA_DIR=
    59  LOG_DIR=$DATA_DIR/logs