validator_operator/validator_onboarding #8
Replies: 9 comments 24 replies
This comment has been hidden.
This comment has been hidden.
-
It would be useful to add details in the doc about the requirement of limiting IPs per validator, i.e. "asking nodes to put their AZs behind a single gateway rather than submitting an IP per AZ". |
Beta Was this translation helpful? Give feedback.
-
It would be great to detail in the docs how many SVs need to have to whitelisted a given IP address for a validator to be able to connect. I think it's 2/3. |
Beta Was this translation helpful? Give feedback.
-
For the section on "Validating if your IP has been Approved" consider adding the URLs for testnet and mainnet as well. It's not clear from the context that the sample URL provided is just for devnet |
Beta Was this translation helpful? Give feedback.
-
"If you want to access the Canton Coin Scan Web UI from your laptop, you also need to ensure that you can connect to a VPN operated by one of the SVs." To be more precise, you need to access the Canton Coin Scan web UI from any IP address whitelisted by the SVs. This could be a VPN operated by your company and whitelisted by the Super Validators, or a cluster already whitelisted by the SVs, or a VPN operated by a Super Validator and whitelisted by the others. |
Beta Was this translation helpful? Give feedback.
-
Validator Party Hints: Make sure your validatorPartyHint follows the correct format, which is: --<1> Formally, it will be checked during install against this regex expression: [a-zA-Z0-9_]+-[a-zA-Z0-9_]+-[0-9] |
Beta Was this translation helpful? Give feedback.
-
Hi, I’d like to confirm whether my IP address has been approved. I’m attempting to reach the endpoint:
However, I’m currently getting a timeout. Does this indicate that my IP is still being processed? Additionally, I noticed that there are separate onboarding documents for testnet and mainnet. For example, if I’m onboarding to testnet, should I expect a successful response only from the testnet scan endpoint? |
Beta Was this translation helpful? Give feedback.
-
I am trying to set up a Canton validator, and I see that if I want to set it up on the Devnet, I need to get my IP whitelisted. What is the procedure to get my IP whitelisted for the running validator on the Devnet? Also, if I want to run a validator on the Testnet, how can I get a sponsor SV? |
Beta Was this translation helpful? Give feedback.
-
Here are slightly tuned snippets to check access to Scans and Sequencers which:
for url in $(curl -fsS -m 5 https://scan.sv-1.dev.global.canton.network.sync.global/api/scan/v0/scans | jq -r '.scans[].scans[].publicUrl' ); do
echo -n "$url: ";
curl -fsS -m 5 "$url/api/scan/version" | jq -r '.version';
done for url in $(curl -fsS -m 5 https://scan.sv-1.dev.global.canton.network.sync.global/api/scan/v0/dso-sequencers | jq -r '.domainSequencers[].sequencers[].url | sub("https://"; "")' ); do
echo -n "$url: ";
grpcurl --max-time 10 "$url:443" grpc.health.v1.Health/Check;
done |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
validator_operator/validator_onboarding
https://docs.dev.sync.global/validator_operator/validator_onboarding.html
Beta Was this translation helpful? Give feedback.
All reactions