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

     1  ProtocolConfiguration:
     2    Magic: 894710606
     3    MaxBlockSize: 2097152
     4    MaxBlockSystemFee: 150000000000
     5    MaxTraceableBlocks: 2102400
     6    MaxTransactionsPerBlock: 5000
     7    InitialGASSupply: 52000000
     8    TimePerBlock: 15s
     9    MemPoolSize: 50000
    10    StandbyCommittee:
    11    - 023e9b32ea89b94d066e649b124fd50e396ee91369e8e2a6ae1b11c170d022256d
    12    - 03009b7540e10f2562e5fd8fac9eaec25166a58b26e412348ff5a86927bfac22a2
    13    - 02ba2c70f5996f357a43198705859fae2cfea13e1172962800772b3d588a9d4abd
    14    - 03408dcd416396f64783ac587ea1e1593c57d9fea880c8a6a1920e92a259477806
    15    - 02a7834be9b32e2981d157cb5bbd3acb42cfd11ea5c3b10224d7a44e98c5910f1b
    16    - 0214baf0ceea3a66f17e7e1e839ea25fd8bed6cd82e6bb6e68250189065f44ff01
    17    - 030205e9cefaea5a1dfc580af20c8d5aa2468bb0148f1a5e4605fc622c80e604ba
    18    - 025831cee3708e87d78211bec0d1bfee9f4c85ae784762f042e7f31c0d40c329b8
    19    - 02cf9dc6e85d581480d91e88e8cbeaa0c153a046e89ded08b4cefd851e1d7325b5
    20    - 03840415b0a0fcf066bcc3dc92d8349ebd33a6ab1402ef649bae00e5d9f5840828
    21    - 026328aae34f149853430f526ecaa9cf9c8d78a4ea82d08bdf63dd03c4d0693be6
    22    - 02c69a8d084ee7319cfecf5161ff257aa2d1f53e79bf6c6f164cff5d94675c38b3
    23    - 0207da870cedb777fceff948641021714ec815110ca111ccc7a54c168e065bda70
    24    - 035056669864feea401d8c31e447fb82dd29f342a9476cfd449584ce2a6165e4d7
    25    - 0370c75c54445565df62cfe2e76fbec4ba00d1298867972213530cae6d418da636
    26    - 03957af9e77282ae3263544b7b2458903624adc3f5dee303957cb6570524a5f254
    27    - 03d84d22b8753cf225d263a3a782a4e16ca72ef323cfde04977c74f14873ab1e4c
    28    - 02147c1b1d5728e1954958daff2f88ee2fa50a06890a8a9db3fa9e972b66ae559f
    29    - 03c609bea5a4825908027e4ab217e7efc06e311f19ecad9d417089f14927a173d5
    30    - 0231edee3978d46c335e851c76059166eb8878516f459e085c0dd092f0f1d51c21
    31    - 03184b018d6b2bc093e535519732b3fd3f7551c8cffaf4621dd5a0b89482ca66c9
    32    ValidatorsCount: 7
    33    SeedList:
    34    - seed1t5.neo.org:20333
    35    - seed2t5.neo.org:20333
    36    - seed3t5.neo.org:20333
    37    - seed4t5.neo.org:20333
    38    - seed5t5.neo.org:20333
    39    VerifyTransactions: false
    40    P2PSigExtensions: false
    41    Hardforks:
    42      Aspidochelone: 210000
    43      Basilisk: 2680000
    44      Cockatrice: 3967000
    45  
    46  ApplicationConfiguration:
    47    SkipBlockVerification: false
    48    # LogPath could be set up in case you need stdout logs to some proper file.
    49    # LogPath: "./log/neogo.log"
    50    DBConfiguration:
    51      Type: "leveldb" #other options: 'inmemory','boltdb'
    52      # DB type options. Uncomment those you need in case you want to switch DB type.
    53      LevelDBOptions:
    54        DataDirectoryPath: "./chains/testnet"
    55    #    BoltDBOptions:
    56    #      FilePath: "./chains/testnet.bolt"
    57    P2P:
    58      Addresses:
    59        - ":20333" # in form of "[host]:[port][:announcedPort]"
    60      DialTimeout: 3s
    61      ProtoTickInterval: 2s
    62      PingInterval: 30s
    63      PingTimeout: 90s
    64      MaxPeers: 100
    65      AttemptConnPeers: 20
    66      MinPeers: 10
    67    Relay: true
    68    Consensus:
    69      Enabled: false
    70      UnlockWallet:
    71        Path: "/cn_wallet.json"
    72        Password: "pass"
    73    Oracle:
    74      Enabled: false
    75      AllowedContentTypes:
    76        - application/json
    77    P2PNotary:
    78      Enabled: false
    79      UnlockWallet:
    80        Path: "/notary_wallet.json"
    81        Password: "pass"
    82    RPC:
    83      Enabled: true
    84      Addresses:
    85        - ":20332"
    86      MaxGasInvoke: 15
    87      EnableCORSWorkaround: false
    88      TLSConfig:
    89        Enabled: false
    90        Addresses:
    91          - ":20331"
    92        CertFile: serv.crt
    93        KeyFile: serv.key
    94    Prometheus:
    95      Enabled: true
    96      Addresses:
    97        - ":2112"
    98    Pprof:
    99      Enabled: false
   100      Addresses:
   101        - ":2113"