diff --git a/configuration/config.json b/configuration/config.json index c300abd..58716e4 100644 --- a/configuration/config.json +++ b/configuration/config.json @@ -1,14 +1,16 @@ { "AlonzoGenesisFile": "alonzo-genesis.json", "AlonzoGenesisHash": "7e94a15f55d1e82d10f09203fa1d40f8eede58fd8066542cf6566008068ed874", - "ApplicationName": "cardano-sl", - "ApplicationVersion": 0, "ByronGenesisFile": "byron-genesis.json", "ByronGenesisHash": "d4b8de7a11d929a323373cbab6c1a9bdc931beffff11db111cf9d57356ee1937", + "ConwayGenesisFile": "conway-genesis.json", + "ConwayGenesisHash": "de609b281cb3d8ae91a9d63a00c87092975612d603aa54c0f1c6a781e33d6e1e", "EnableP2P": true, "LastKnownBlockVersion-Alt": 0, "LastKnownBlockVersion-Major": 2, "LastKnownBlockVersion-Minor": 0, + "MinNodeVersion": "8.9.2", + "PeerSharing": true, "Protocol": "Cardano", "RequiresNetworkMagic": "RequiresMagic", "ShelleyGenesisFile": "shelley-genesis.json", @@ -16,8 +18,7 @@ "TargetNumberOfActivePeers": 20, "TargetNumberOfEstablishedPeers": 50, "TargetNumberOfKnownPeers": 100, - "TargetNumberOfRootPeers": 100, - "TestEnableDevelopmentNetworkProtocols": true, + "TargetNumberOfRootPeers": 60, "TraceAcceptPolicy": true, "TraceBlockFetchClient": false, "TraceBlockFetchDecisions": false, @@ -35,13 +36,14 @@ "TraceDiffusionInitialization": true, "TraceErrorPolicy": true, "TraceForge": true, - "TraceHandshake": false, + "TraceHandshake": true, "TraceInboundGovernor": true, "TraceIpSubscription": true, "TraceLedgerPeers": true, "TraceLocalChainSyncProtocol": false, + "TraceLocalConnectionManager": true, "TraceLocalErrorPolicy": true, - "TraceLocalHandshake": false, + "TraceLocalHandshake": true, "TraceLocalRootPeers": true, "TraceLocalTxSubmissionProtocol": false, "TraceLocalTxSubmissionServer": false, diff --git a/configuration/conway-genesis.json b/configuration/conway-genesis.json new file mode 100644 index 0000000..5f1de84 --- /dev/null +++ b/configuration/conway-genesis.json @@ -0,0 +1,38 @@ +{ + "poolVotingThresholds": { + "committeeNormal": 0.51, + "committeeNoConfidence": 0.51, + "hardForkInitiation": 0.51, + "motionNoConfidence": 0.51, + "ppSecurityGroup": 0.51 + }, + "dRepVotingThresholds": { + "motionNoConfidence": 0.51, + "committeeNormal": 0.51, + "committeeNoConfidence": 0.51, + "updateToConstitution": 0.51, + "hardForkInitiation": 0.51, + "ppNetworkGroup": 0.51, + "ppEconomicGroup": 0.51, + "ppTechnicalGroup": 0.51, + "ppGovGroup": 0.51, + "treasuryWithdrawal": 0.51 + }, + "committeeMinSize": 0, + "committeeMaxTermLength": 200, + "govActionLifetime": 10, + "govActionDeposit": 1000000000, + "dRepDeposit": 2000000, + "dRepActivity": 20, + "constitution": { + "anchor": { + "url": "", + "dataHash": "0000000000000000000000000000000000000000000000000000000000000000" + } + }, + "committee": { + "members": { + }, + "quorum": 0 + } +} diff --git a/configuration/topology.json b/configuration/topology.json index 755887e..9faac37 100644 --- a/configuration/topology.json +++ b/configuration/topology.json @@ -1,27 +1,23 @@ { - "LocalRoots": { - "groups": [ - { - "localRoots": { - "accessPoints": [], - "advertise": false - }, - "valency": 1 - } - ] - }, - "PublicRoots": [ + "bootstrapPeers": [ { - "publicRoots": { - "accessPoints": [ - { - "address": "preprod-node.world.dev.cardano.org", - "port": 30000 - } - ], - "advertise": false - } + "address": "preprod-node.play.dev.cardano.org", + "port": 3001 } ], - "useLedgerAfterSlot": 4642000 + "localRoots": [ + { + "accessPoints": [], + "advertise": false, + "trustable": false, + "valency": 1 + } + ], + "publicRoots": [ + { + "accessPoints": [], + "advertise": false + } + ], + "useLedgerAfterSlot": 52358331 } diff --git a/docker-compose.yml b/docker-compose.yml index 55ffe97..96a05eb 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ version: '3.1' services: cardano-node: #image: inputoutput/cardano-node:1.35.5 - image: ghcr.io/intersectmbo/cardano-node:8.8.0-pre-test-sg-1 + image: ghcr.io/intersectmbo/cardano-node:1.35.7 container_name: cardano-node volumes: - ./cardano-node-ipc:/ipc