Skip to content

Releases: broxus/nodekeeper

v0.2.7

24 Aug 17:48
b7c5eeb
Compare
Choose a tag to compare

Added

  • Added nodekeeper validator balance subcommand which outputs a structured info about
    validator wallet(s) and address(es).
  • Added nodekeeper validator withdraw <dest> <amount> subcommand which allows to easily
    withdraw tokens from the validator wallet.

Changed

  • Validator manager subcommand moved from nodekeeper validator to nodekeeper validator run.

Fixed

  • Fixed hidden cursor state after ctrl+C interruption in prompts.

v0.2.6

09 Jul 19:11
9cc5dea
Compare
Choose a tag to compare

Changed

  • The validator service will not be restarted during an update.

Fixed

  • Fixed file path autocompletion and ~/ now works as in shell.

v0.2.5

06 Jul 14:41
b98feb3
Compare
Choose a tag to compare

Added

  • Added validator-exporter systemd service for metrics.

    It listens on port 10000 by default. You can override it with:

    sudo systemctl edit validator-exporter
    [Service]
    Environment=PORT=10000
    Environment=INTERVAL=10

v0.2.4

26 Jun 13:05
1aeb3cc
Compare
Choose a tag to compare

Added

  • Added support for a new Venom update.
  • Added a force flag to the validator command. Used to force elect without checking the network config.

Fixed

  • Double check election id before adding validator keys.

v0.2.3

05 Apr 19:43
8f51a86
Compare
Choose a tag to compare

Added

  • JSON output for template initialization from non-tty environment.

Changed

  • Intermediate messages are now printed to the stderr.

v0.2.2

27 Mar 17:12
8e91d17
Compare
Choose a tag to compare

Fixed

  • Fixed statvfs for the newly created node.

v0.2.1

27 Mar 16:07
37d56bc
Compare
Choose a tag to compare

Added

  • Show system info during init.
  • Detect default node repo and features based on global config.

v0.2.0

24 Mar 10:58
5a03d99
Compare
Choose a tag to compare

Added

  • Added support for the new stEVER flow.
  • Detect currency based on global config.

Changed

  • Renamed tool to nodekeeper.
  • Renamed systemd services to validator and validator-manager.

v0.1.5

16 Mar 21:56
28d5e98
Compare
Choose a tag to compare

Added

  • .deb package build.
  • You can now specify file path for a global config during stever node init
    (it used to be only URL).
  • Added check for the Rust installation.

v0.1.4

15 Feb 13:15
b399e27
Compare
Choose a tag to compare

Added

  • Extended exported metrics.
    • Added sync_status label to the node_ready metric.

    • validation_enabled: 0/1.

    • if validation is enabled

      validator_type: 0 - single / 1 - depool.

    • if validation is enabled and validator_type=0

      validator_single_stake_per_round: stake in nano EVERs.

      Labels: validator - validator wallet address.

    • if validation is enabled and validator_type=1

      validator_depool_type: 0 - default_v3, 1 - stever_v1, 2 - stever_v2.

      Labels: validator - validator wallet address, depool - depool address.

Changed

  • Refactored project structure.