Skip to content

Assess IP Whitelisting status

To initialize your validator node, you need the following parameters that define the network you’re onboarding to and the secret required for doing so.

Quorum

Please note: A quorum of 2/3 of Super Validators nodes is sufficient to proceed with deploying the stack. The total number of Super Validators may vary depending on the network.

Resources

DevNet: https://docs.dev.sync.global/validator_operator/validator_onboarding.html#onboarding-process-overview

TestNet: https://docs.test.sync.global/validator_operator/validator_onboarding.html#onboarding-process-overview

MainNet: https://docs.sync.global/validator_operator/validator_onboarding.html#onboarding-process-overview

Validating that your IP has been approved

Egress IP

Please note: The following commands must run from the same egress IP from which you want to deploy your validator, e.g. from the same server that will run the docker compose or Kubernetes stack.

Check whitelisting status in devnet
for url in $(curl -sSL https://scan.sv-1.dev.global.canton.network.fivenorth.io/api/scan/v0/scans | jq -r '.scans | .[].scans | .[] | .publicUrl' ); do
  echo -n "$url: ";
  curl -sSL --connect-timeout 5 --fail-with-body $url/api/scan/version | jq -r '.version';
done
Check whitelisting status in TestNet
for url in $(curl -sSL https://scan.sv-1.test.global.canton.network.fivenorth.io/api/scan/v0/scans | jq -r '.scans | .[].scans | .[] | .publicUrl' ); do
  echo -n "$url: ";
  curl -sSL --connect-timeout 5 --fail-with-body $url/api/scan/version | jq -r '.version';
done
Check whitelisting status in MainNet
for url in $(curl -sSL https://scan.sv-1.global.canton.network.fivenorth.io/api/scan/v0/scans | jq -r '.scans | .[].scans | .[] | .publicUrl' ); do
  echo -n "$url: ";
  curl -sSL --connect-timeout 5 --fail-with-body $url/api/scan/version | jq -r '.version';
done