github.com/nspcc-dev/neo-go@v0.105.2-0.20240517133400-6be757af3eba/config/protocol.privnet.yml (about)

     1  ProtocolConfiguration:
     2    Magic: 56753
     3    MaxTraceableBlocks: 200000
     4    TimePerBlock: 15s
     5    MemPoolSize: 50000
     6    StandbyCommittee:
     7      - 02b3622bf4017bdfe317c58aed5f4c753f206b7db896046fa7d774bbc4bf7f8dc2
     8      - 02103a7f7dd016558597f7960d27c516a4394fd968b9e65155eb4b013e4040406e
     9      - 03d90c07df63e690ce77912e10ab51acc944b66860237b608c4f8f8309e71ee699
    10      - 02a7bc55fe8684e0119768d104ba30795bdcc86619e864add26156723ed185cd62
    11    ValidatorsCount: 4
    12    SeedList:
    13      - localhost:20333
    14      - localhost:20334
    15      - localhost:20335
    16      - localhost:20336
    17    VerifyTransactions: true
    18    P2PSigExtensions: false
    19  
    20  ApplicationConfiguration:
    21    SkipBlockVerification: false
    22    # LogPath could be set up in case you need stdout logs to some proper file.
    23    # LogPath: "./log/neogo.log"
    24    DBConfiguration:
    25      Type: "leveldb" #other options: 'inmemory','boltdb'
    26      # DB type options. Uncomment those you need in case you want to switch DB type.
    27      LevelDBOptions:
    28        DataDirectoryPath: "./chains/privnet"
    29    #    BoltDBOptions:
    30    #      FilePath: "./chains/privnet.bolt"
    31    P2P:
    32      Addresses:
    33        - ":20332" # in form of "[host]:[port][:announcedPort]"
    34      DialTimeout: 3s
    35      ProtoTickInterval: 2s
    36      PingInterval: 30s
    37      PingTimeout: 90s
    38      MaxPeers: 10
    39      AttemptConnPeers: 5
    40      MinPeers: 3
    41    Relay: true
    42    Consensus:
    43      Enabled: false
    44      UnlockWallet:
    45        Path: "/cn_wallet.json"
    46        Password: "pass"
    47    P2PNotary:
    48      Enabled: false
    49      UnlockWallet:
    50        Path: "/notary_wallet.json"
    51        Password: "pass"
    52    RPC:
    53      Enabled: true
    54      Addresses:
    55        - ":20331"
    56      MaxGasInvoke: 15
    57      EnableCORSWorkaround: false
    58      SessionEnabled: true
    59      SessionExpirationTime: 180 # higher expiration time for manual requests and tests.
    60      TLSConfig:
    61          Enabled: false
    62          Addresses:
    63            - ":20330"
    64          CertFile: serv.crt
    65          KeyFile: serv.key
    66    Prometheus:
    67      Enabled: true
    68      Addresses:
    69        - ":2112"
    70    Pprof:
    71      Enabled: false
    72      Addresses:
    73        - ":2113"