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

     1  ProtocolConfiguration:
     2    Magic: 91414437
     3    MaxTraceableBlocks: 2102400
     4    InitialGASSupply: 52000000
     5    TimePerBlock: 15s
     6    MemPoolSize: 50000
     7    StandbyCommittee:
     8    - 026fa34ec057d74c2fdf1a18e336d0bd597ea401a0b2ad57340d5c220d09f44086
     9    - 039a9db2a30942b1843db673aeb0d4fd6433f74cec1d879de6343cb9fcf7628fa4
    10    - 0366d255e7ce23ea6f7f1e4bedf5cbafe598705b47e6ec213ef13b2f0819e8ab33
    11    - 023f9cb7bbe154d529d5c719fdc39feaa831a43ae03d2a4280575b60f52fa7bc52
    12    - 039ba959e0ab6dc616df8b803692f1c30ba9071b76b05535eb994bf5bbc402ad5f
    13    - 035a2a18cddafa25ad353dea5e6730a1b9fcb4b918c4a0303c4387bb9c3b816adf
    14    - 031f4d9c66f2ec348832c48fd3a16dfaeb59e85f557ae1e07f6696d0375c64f97b
    15    ValidatorsCount: 7
    16    SeedList:
    17    - morph1.fs.neo.org:40333
    18    - morph2.fs.neo.org:40333
    19    - morph3.fs.neo.org:40333
    20    - morph4.fs.neo.org:40333
    21    - morph5.fs.neo.org:40333
    22    - morph6.fs.neo.org:40333
    23    - morph7.fs.neo.org:40333
    24    VerifyTransactions: true
    25    P2PSigExtensions: true
    26    Hardforks:
    27      Aspidochelone: 3000000
    28      Basilisk: 4500000
    29      Cockatrice: 5800000
    30  
    31  ApplicationConfiguration:
    32    SkipBlockVerification: false
    33    # LogPath could be set up in case you need stdout logs to some proper file.
    34    # LogPath: "./log/neogo.log"
    35    DBConfiguration:
    36      Type: "leveldb" #other options: 'inmemory','boltdb'
    37      # DB type options. Uncomment those you need in case you want to switch DB type.
    38      LevelDBOptions:
    39        DataDirectoryPath: "./chains/mainnet.neofs"
    40    #    BoltDBOptions:
    41    #      FilePath: "./chains/mainnet.bolt"
    42    P2P:
    43      Addresses:
    44        - ":40333" # in form of "[host]:[port][:announcedPort]"
    45      DialTimeout: 3s
    46      ProtoTickInterval: 2s
    47      PingInterval: 30s
    48      PingTimeout: 90s
    49      MaxPeers: 100
    50      AttemptConnPeers: 20
    51      MinPeers: 5
    52    Relay: true
    53    Consensus:
    54      Enabled: false
    55      UnlockWallet:
    56        Path: "/cn_wallet.json"
    57        Password: "pass"
    58    Oracle:
    59      Enabled: false
    60      AllowedContentTypes:
    61        - application/json
    62    RPC:
    63      Enabled: true
    64      Addresses:
    65        - ":40332"
    66      MaxGasInvoke: 15
    67      EnableCORSWorkaround: false
    68      TLSConfig:
    69        Enabled: false
    70        Addresses:
    71          - ":40331"
    72        CertFile: serv.crt
    73        KeyFile: serv.key
    74    Prometheus:
    75      Enabled: false
    76      Addresses:
    77        - ":2112"
    78    Pprof:
    79      Enabled: false
    80      Addresses:
    81        - ":2113"