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

     1  ProtocolConfiguration:
     2    Magic: 56753
     3    MaxTraceableBlocks: 200000
     4    TimePerBlock: 1s
     5    MemPoolSize: 50000
     6    StandbyCommittee:
     7      - 02b3622bf4017bdfe317c58aed5f4c753f206b7db896046fa7d774bbc4bf7f8dc2
     8    ValidatorsCount: 1
     9    SeedList:
    10      - node_single:20333
    11    VerifyTransactions: true
    12    P2PSigExtensions: false
    13  
    14  ApplicationConfiguration:
    15    SkipBlockVerification: false
    16    # LogPath could be set up in case you need stdout logs to some proper file.
    17    # LogPath: "./log/neogo.log"
    18    DBConfiguration:
    19      Type: "leveldb" #other options: 'inmemory','boltdb'
    20      # DB type options. Uncomment those you need in case you want to switch DB type.
    21      LevelDBOptions:
    22        DataDirectoryPath: "/chains/single"
    23    #    BoltDBOptions:
    24    #      FilePath: "./chains/privnet.bolt"
    25    P2P:
    26      Addresses:
    27        - ":20333" # in form of "[host]:[port][:announcedPort]"
    28      DialTimeout: 3s
    29      ProtoTickInterval: 2s
    30      PingInterval: 30s
    31      PingTimeout: 90s
    32      MaxPeers: 10
    33      AttemptConnPeers: 5
    34      MinPeers: 0
    35    Relay: true
    36    Oracle:
    37      Enabled: false
    38      AllowedContentTypes:
    39        - application/json
    40      Nodes:
    41        - http://node_single:30333
    42      RequestTimeout: 5s
    43      UnlockWallet:
    44        Path: "/wallet1_solo.json"
    45        Password: "one"
    46    P2PNotary:
    47      Enabled: false
    48      UnlockWallet:
    49        Path: "/notary_wallet.json"
    50        Password: "pass"
    51    RPC:
    52      Enabled: true
    53      Addresses:
    54        - ":30333"
    55      EnableCORSWorkaround: false
    56      MaxGasInvoke: 15
    57      SessionEnabled: true
    58    Prometheus:
    59      Enabled: true
    60      Addresses:
    61        - ":20001"
    62    Pprof:
    63      Enabled: false
    64      Addresses:
    65        - ":20011"
    66    Consensus:
    67      Enabled: true
    68      UnlockWallet:
    69        Path: "/wallet1.json"
    70        Password: "one"