Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

feat: add custom validator count per node #122

Merged
merged 25 commits into from
Sep 19, 2023

Conversation

barnabasbusa
Copy link
Collaborator

Working:

{
  "participants": [
    {
      "el_client_type": "geth",
      "cl_client_type": "teku"
    },
    {
      "el_client_type": "geth",
      "cl_client_type": "teku",
      "validator_count": 1
    },
    {
      "el_client_type": "geth",
      "cl_client_type": "lodestar",
      "validator_count": 1
    },
    {
      "el_client_type": "geth",
      "cl_client_type": "nimbus",
      "validator_count": 1
    },
    {
      "el_client_type": "geth",
      "cl_client_type": "prysm",
      "validator_count": 1
    },
    {
      "el_client_type": "geth",
      "cl_client_type": "lighthouse",
      "validator_count": 1
    }
  ],
  "network_params": {
  },
  "global_client_log_level": "info",
  "snooper_enabled": true
}

Not yet working:

{
  "participants": [
    {
      "el_client_type": "geth",
      "cl_client_type": "teku"
    },
    {
      "el_client_type": "geth",
      "cl_client_type": "teku",
      "validator_count": 0
    },
    {
      "el_client_type": "geth",
      "cl_client_type": "lodestar",
      "validator_count": 0
    },
    {
      "el_client_type": "geth",
      "cl_client_type": "nimbus",
      "validator_count": 0
    },
    {
      "el_client_type": "geth",
      "cl_client_type": "prysm",
      "validator_count": 0
    },
    {
      "el_client_type": "geth",
      "cl_client_type": "lighthouse",
      "validator_count": 0
    }
  ],
  "network_params": {
  },
  "global_client_log_level": "info",
  "snooper_enabled": true
}

@h4ck3rk3y @leeederek could you let me know how could I pass a null artifact when there are no validator keys?

@barnabasbusa barnabasbusa linked an issue Sep 13, 2023 that may be closed by this pull request
Base automatically changed from lporoli/ticket-161 to main September 18, 2023 12:31
README.md Outdated Show resolved Hide resolved
package_io/input_parser.star Show resolved Hide resolved
src/cl/lighthouse/lighthouse_launcher.star Show resolved Hide resolved
src/cl/lighthouse/lighthouse_launcher.star Outdated Show resolved Hide resolved
src/cl/lighthouse/lighthouse_launcher.star Outdated Show resolved Hide resolved
src/cl/teku/teku_launcher.star Outdated Show resolved Hide resolved
src/participant_network.star Show resolved Hide resolved
src/participant_network.star Outdated Show resolved Hide resolved
@h4ck3rk3y h4ck3rk3y merged commit d843d7c into main Sep 19, 2023
4 checks passed
@h4ck3rk3y h4ck3rk3y deleted the bbusa/custom-validator-number branch September 19, 2023 12:33
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Enable per node validator count override
3 participants