We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from @anilhelvaci in Agoric/agoric-sdk#10835 (comment)
VALIDATORADDR refers to the validator's "Application Key" whereas VALIDATOR_ADDRESS refers to the validator's "CometBFT Key". See https://hub.cosmos.network/main/validators/validator-faq.html#what-are-the-different-types-of-keys.
VALIDATORADDR
VALIDATOR_ADDRESS
For example:
agoric1estsewt6jqsx77pwcxkn5ah0jqgu8rhgflwfdl
agoricvaloper1estsewt6jqsx77pwcxkn5ah0jqgu8rhge8aq37
In env_setup.sh,
DELEGATOR_ADDRRESS
Update all proposals to handle this change
Proposals have had this in their test.sh,
test.sh
# XXX correct misnaming DELEGATOR_ADDRRESS=$VALIDATORADDR VALIDATOR_ADDRESS=$(agd query staking delegations "$DELEGATOR_ADDRRESS" --output json | jq -r ".delegation_responses[0].delegation.validator_address") export VALIDATOR_ADDRESS
The text was updated successfully, but these errors were encountered:
s:stake-bld
z:acceptance
chore(acceptance): document misnaming validator address
cb7e351
refs: Agoric/agoric-3-proposals#212 refs: #10818
8eae20c
No branches or pull requests
Problem
from @anilhelvaci in Agoric/agoric-sdk#10835 (comment)
VALIDATORADDR
refers to the validator's "Application Key" whereasVALIDATOR_ADDRESS
refers to the validator's "CometBFT Key". See https://hub.cosmos.network/main/validators/validator-faq.html#what-are-the-different-types-of-keys.For example:
VALIDATORADDR
:agoric1estsewt6jqsx77pwcxkn5ah0jqgu8rhgflwfdl
VALIDATOR_ADDRESS
:agoricvaloper1estsewt6jqsx77pwcxkn5ah0jqgu8rhge8aq37
Solution
In env_setup.sh,
VALIDATORADDR
toDELEGATOR_ADDRRESS
VALIDATOR_ADDRESS
Update all proposals to handle this change
Work-around
Proposals have had this in their
test.sh
,The text was updated successfully, but these errors were encountered: