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

     1  ProtocolConfiguration:
     2    Magic: 860833102
     3    MaxTraceableBlocks: 2102400
     4    InitialGASSupply: 52000000
     5    TimePerBlock: 15s
     6    MemPoolSize: 50000
     7    StandbyCommittee:
     8    - 03b209fd4f53a7170ea4444e0cb0a6bb6a53c2bd016926989cf85f9b0fba17a70c
     9    - 02df48f60e8f3e01c48ff40b9b7f1310d7a8b2a193188befe1c2e3df740e895093
    10    - 03b8d9d5771d8f513aa0869b9cc8d50986403b78c6da36890638c3d46a5adce04a
    11    - 02ca0e27697b9c248f6f16e085fd0061e26f44da85b58ee835c110caa5ec3ba554
    12    - 024c7b7fb6c310fccf1ba33b082519d82964ea93868d676662d4a59ad548df0e7d
    13    - 02aaec38470f6aad0042c6e877cfd8087d2676b0f516fddd362801b9bd3936399e
    14    - 02486fd15702c4490a26703112a5cc1d0923fd697a33406bd5a1c00e0013b09a70
    15    - 023a36c72844610b4d34d1968662424011bf783ca9d984efa19a20babf5582f3fe
    16    - 03708b860c1de5d87f5b151a12c2a99feebd2e8b315ee8e7cf8aa19692a9e18379
    17    - 03c6aa6e12638b36e88adc1ccdceac4db9929575c3e03576c617c49cce7114a050
    18    - 03204223f8c86b8cd5c89ef12e4f0dbb314172e9241e30c9ef2293790793537cf0
    19    - 02a62c915cf19c7f19a50ec217e79fac2439bbaad658493de0c7d8ffa92ab0aa62
    20    - 03409f31f0d66bdc2f70a9730b66fe186658f84a8018204db01c106edc36553cd0
    21    - 0288342b141c30dc8ffcde0204929bb46aed5756b41ef4a56778d15ada8f0c6654
    22    - 020f2887f41474cfeb11fd262e982051c1541418137c02a0f4961af911045de639
    23    - 0222038884bbd1d8ff109ed3bdef3542e768eef76c1247aea8bc8171f532928c30
    24    - 03d281b42002647f0113f36c7b8efb30db66078dfaaa9ab3ff76d043a98d512fde
    25    - 02504acbc1f4b3bdad1d86d6e1a08603771db135a73e61c9d565ae06a1938cd2ad
    26    - 0226933336f1b75baa42d42b71d9091508b638046d19abd67f4e119bf64a7cfb4d
    27    - 03cdcea66032b82f5c30450e381e5295cae85c5e6943af716cc6b646352a6067dc
    28    - 02cd5a5547119e24feaa7c2a0f37b8c9366216bab7054de0065c9be42084003c8a
    29    ValidatorsCount: 7
    30    SeedList:
    31    - seed1.neo.org:10333
    32    - seed2.neo.org:10333
    33    - seed3.neo.org:10333
    34    - seed4.neo.org:10333
    35    - seed5.neo.org:10333
    36    VerifyTransactions: false
    37    P2PSigExtensions: false
    38    Hardforks:
    39      Aspidochelone: 1730000
    40      Basilisk: 4120000
    41      Cockatrice: 5450000
    42  
    43  ApplicationConfiguration:
    44    SkipBlockVerification: false
    45    # LogPath could be set up in case you need stdout logs to some proper file.
    46    # LogPath: "./log/neogo.log"
    47    DBConfiguration:
    48      Type: "leveldb" #other options: 'inmemory','boltdb'
    49      # DB type options. Uncomment those you need in case you want to switch DB type.
    50      LevelDBOptions:
    51        DataDirectoryPath: "./chains/mainnet"
    52    #    BoltDBOptions:
    53    #      FilePath: "./chains/mainnet.bolt"
    54    P2P:
    55      Addresses:
    56        - ":10333" # in form of "[host]:[port][:announcedPort]"
    57      DialTimeout: 3s
    58      ProtoTickInterval: 2s
    59      PingInterval: 30s
    60      PingTimeout: 90s
    61      MaxPeers: 100
    62      AttemptConnPeers: 20
    63      MinPeers: 10
    64    Relay: true
    65    Consensus:
    66      Enabled: false
    67      UnlockWallet:
    68        Path: "/cn_wallet.json"
    69        Password: "pass"
    70    Oracle:
    71      Enabled: false
    72      AllowedContentTypes:
    73        - application/json
    74    P2PNotary:
    75      Enabled: false
    76      UnlockWallet:
    77        Path: "/notary_wallet.json"
    78        Password: "pass"
    79  
    80    RPC:
    81      Enabled: true
    82      Addresses:
    83        - ":10332"
    84      MaxGasInvoke: 15
    85      EnableCORSWorkaround: false
    86      TLSConfig:
    87        Enabled: false
    88        Addresses:
    89          - ":10331"
    90        CertFile: serv.crt
    91        KeyFile: serv.key
    92    Prometheus:
    93      Enabled: true
    94      Addresses:
    95        - ":2112"
    96    Pprof:
    97      Enabled: false
    98      Addresses:
    99        - ":2113"