You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
386 B

  1. {
  2. "genesis_time":"{{ansible_date_time.iso8601}}",
  3. "chain_id":"{{testnet_name}}",
  4. "validators":
  5. [
  6. {% set comma = joiner(",") %}
  7. {% for host in groups[testnet_name] %}
  8. {{ comma() }}
  9. {
  10. "pub_key":{"type":"ed25519","data":{{hostvars[host]["pubkey"]}}},
  11. "amount":10,
  12. "name":"{{hostvars[host]["ansible_hostname"]}}"
  13. }
  14. {% endfor %}
  15. ],
  16. "app_hash":""
  17. }