diff --git a/config/protocol.mainnet.neofs.yml b/config/protocol.mainnet.neofs.yml new file mode 100644 index 000000000..88ca750d9 --- /dev/null +++ b/config/protocol.mainnet.neofs.yml @@ -0,0 +1,80 @@ +ProtocolConfiguration: + Magic: 91414437 + MaxTraceableBlocks: 2102400 + InitialGASSupply: 52000000 + SecondsPerBlock: 15 + MemPoolSize: 50000 + StandbyCommittee: + - 026fa34ec057d74c2fdf1a18e336d0bd597ea401a0b2ad57340d5c220d09f44086 + - 039a9db2a30942b1843db673aeb0d4fd6433f74cec1d879de6343cb9fcf7628fa4 + - 0366d255e7ce23ea6f7f1e4bedf5cbafe598705b47e6ec213ef13b2f0819e8ab33 + - 023f9cb7bbe154d529d5c719fdc39feaa831a43ae03d2a4280575b60f52fa7bc52 + - 039ba959e0ab6dc616df8b803692f1c30ba9071b76b05535eb994bf5bbc402ad5f + - 035a2a18cddafa25ad353dea5e6730a1b9fcb4b918c4a0303c4387bb9c3b816adf + - 031f4d9c66f2ec348832c48fd3a16dfaeb59e85f557ae1e07f6696d0375c64f97b + ValidatorsCount: 7 + SeedList: + - morph1.fs.neo.org:40333 + - morph2.fs.neo.org:40333 + - morph3.fs.neo.org:40333 + - morph4.fs.neo.org:40333 + - morph5.fs.neo.org:40333 + - morph6.fs.neo.org:40333 + - morph7.fs.neo.org:40333 + VerifyBlocks: true + VerifyTransactions: true + P2PSigExtensions: false + Hardforks: + Aspidochelone: 2550000 + NativeActivations: + ContractManagement: [0] + StdLib: [0] + CryptoLib: [0] + LedgerContract: [0] + NeoToken: [0] + GasToken: [0] + PolicyContract: [0] + RoleManagement: [0] + OracleContract: [0] + +ApplicationConfiguration: + # LogPath could be set up in case you need stdout logs to some proper file. + # LogPath: "./log/neogo.log" + DBConfiguration: + Type: "leveldb" #other options: 'inmemory','boltdb' + # DB type options. Uncomment those you need in case you want to switch DB type. + LevelDBOptions: + DataDirectoryPath: "./chains/mainnet.neofs" + # BoltDBOptions: + # FilePath: "./chains/mainnet.bolt" + # Uncomment in order to set up custom address for node. + # Address: localhost + NodePort: 40333 + Relay: true + DialTimeout: 3 + ProtoTickInterval: 2 + PingInterval: 30 + PingTimeout: 90 + MaxPeers: 100 + AttemptConnPeers: 20 + MinPeers: 5 + Oracle: + Enabled: false + AllowedContentTypes: + - application/json + RPC: + Enabled: true + MaxGasInvoke: 15 + EnableCORSWorkaround: false + Port: 40332 + TLSConfig: + Enabled: false + Port: 40331 + CertFile: serv.crt + KeyFile: serv.key + Prometheus: + Enabled: false + Port: 2112 + Pprof: + Enabled: false + Port: 2113 diff --git a/config/protocol.testnet.neofs.yml b/config/protocol.testnet.neofs.yml new file mode 100644 index 000000000..8945e5077 --- /dev/null +++ b/config/protocol.testnet.neofs.yml @@ -0,0 +1,86 @@ +ProtocolConfiguration: + Magic: 735783775 + MaxTraceableBlocks: 2102400 + InitialGASSupply: 52000000 + SecondsPerBlock: 15 + MemPoolSize: 50000 + StandbyCommittee: + - 0337f5f45e5be5aeae4a919d0787fcb743656560949061d5b8b05509b85ffbfd53 + - 020b86534a9a264d28b79155b0ec36d555ed0068eb1b0c4d40c35cc7d2f04759b8 + - 02c2efdc01181b0bc14fc19e0acb12281396c8c9ffe64458d621d781a1ded436b7 + - 026f9b40a73f29787ef5b289ac845bc43c64680fdd42fc170b1171d3c57213a89f + - 0272350def90715494b857315c9b9c70181739eeec52d777424fef2891c3396cad + - 03a8cee2d3877bcce5b4595578714d77ca2d47673150b8b9cd4e391b7c73b6bda3 + - 0215e735a657f6e23478728d1d0718d516bf50c06c2abd92ec7c00eba2bd7a2552 + StateRootInHeader: false + ValidatorsCount: 7 + SeedList: + - morph1.t5.fs.neo.org:50333 + - morph2.t5.fs.neo.org:50333 + - morph3.t5.fs.neo.org:50333 + - morph4.t5.fs.neo.org:50333 + - morph5.t5.fs.neo.org:50333 + - morph6.t5.fs.neo.org:50333 + - morph7.t5.fs.neo.org:50333 + VerifyBlocks: true + VerifyTransactions: true + P2PSigExtensions: true + NativeActivations: + ContractManagement: [0] + StdLib: [0] + CryptoLib: [0] + LedgerContract: [0] + NeoToken: [0] + GasToken: [0] + PolicyContract: [0] + RoleManagement: [0] + OracleContract: [0] + Notary: [0] + +ApplicationConfiguration: + # LogPath could be set up in case you need stdout logs to some proper file. + # LogPath: "./log/neogo.log" + DBConfiguration: + Type: "leveldb" #other options: 'inmemory','boltdb' + # DB type options. Uncomment those you need in case you want to switch DB type. + LevelDBOptions: + DataDirectoryPath: "./chains/testnet.neofs" + # BoltDBOptions: + # FilePath: "./chains/testnet.bolt" + # Uncomment in order to set up custom address for node. + # Address: localhost + NodePort: 50333 + Relay: true + DialTimeout: 3 + ProtoTickInterval: 2 + PingInterval: 30 + PingTimeout: 90 + MaxPeers: 100 + AttemptConnPeers: 20 + MinPeers: 5 + Oracle: + Enabled: false + AllowedContentTypes: + - application/json + RPC: + Enabled: true + EnableCORSWorkaround: false + MaxGasInvoke: 100 + Port: 50332 + StartWhenSynchronized: false + TLSConfig: + Enabled: false + CertFile: server.crt + KeyFile: server.key + Port: 50331 + P2PNotary: + Enabled: false + UnlockWallet: + Password: "pass" + Path: "/notary_wallet.json" + Prometheus: + Enabled: false + Port: 2112 + Pprof: + Enabled: false + Port: 2113