Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the redux-framework domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/mmsteam/public_html/wp-includes/functions.php on line 6121

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the betterdocs domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/mmsteam/public_html/wp-includes/functions.php on line 6121

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the cyr2lat domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/mmsteam/public_html/wp-includes/functions.php on line 6121

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the yandex-metrica domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/mmsteam/public_html/wp-includes/functions.php on line 6121

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the ultimate-blocks domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/mmsteam/public_html/wp-includes/functions.php on line 6121

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the teknolab domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/mmsteam/public_html/wp-includes/functions.php on line 6121
Валидатор – MMS
MMS

Валидаторы отвечают за фиксацию новых блоков в блокчейне. Эти валидаторы участвуют в протоколе консенсуса, транслируя голоса , содержащие криптографические подписи, подписанные закрытым ключом каждого валидатора.

Некоторые алгоритмы консенсуса Proof-of-Stake направлены на создание «полностью» децентрализованной системы, в которой все заинтересованные стороны (даже те, кто не всегда доступен онлайн) участвуют в создании блоков. Tendermint использует другой подход к созданию блоков. Ожидается, что валидаторы будут подключены к сети, а набор валидаторов разрешается/контролируется каким-либо внешним процессом. Доказательство доли не требуется, но может быть реализовано поверх консенсуса Tendermint. То есть от валидаторов может потребоваться размещение залога в цепочке, вне цепочки или может вообще не потребоваться размещение какого-либо обеспечения.

У валидаторов есть пара криптографических ключей и соответствующее количество «права голоса». Право голоса не обязательно должно быть одинаковым.

Создайте свой validator

Вам необходимо добавить свое wallet keyиспользование mnemonicили создать новый ключ и перевести uauraна его адрес

 aurad keys add <key_name> 

Ваш auravalconspubможно использовать для создания нового валидатора путем размещения токенов. Вы можете найти свой публичный ключ валидатора, запустив:

$ aurad tendermint show-validator

Чтобы создать свой валидатор, просто используйте следующую команду:

aurad tx staking create-validator \
  --amount=<staking-amount> \
  --pubkey=$(aurad tendermint show-validator) \
  --moniker="choose a moniker"  \
  --chain-id=<chain-id> \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1000000" \
  --gas="auto" \
  --gas-prices=<choose gas price> \
  --from=<key_name>

Вы можете подтвердить, что находитесь в наборе валидаторов, используя сторонний проводник илиaurad cli

aurad query staking validators
aurad query tendermint-validator-set

🗣Присоединяйтесь к русскоговорящему сообществу Aura Network:

https://t.me/AuraNetwork_ru

Leave a Reply

Your email address will not be published. Required fields are marked *