Files
nym/validator
Dave Hrycyszyn 8baa236d81 Feature/wasm js demo (#191)
* Moved `nym-sphinx-wasm` into `wasm` folder and renamed its examples

* A proposal for some structural cleanup

* desktop client: beginning of a Rust example for chunking.

* Simplifying desktop client readme

* Tarting up webassembly README

* A more visual webassembly client example

* clients/webassembly: grouping a few things into named functions for clarity

* clients/webassembly: put URLs at top of file, prepping for drop-down action

* mixnode + provider run: changed startup error messages a bit

* clients/webassembly: scrolling from the bottom in the demo
2020-04-21 10:05:38 +01:00
..
2020-04-17 11:39:36 +01:00
2020-04-21 10:05:38 +01:00
2020-04-17 11:39:36 +01:00
2020-04-17 11:39:36 +01:00

Nym Validator

The Nym Validator has several jobs:

  • use Tendermint (v0.33.0) to maintain a total global ordering of incoming transactions
  • rewards + stake slashing based quality of service measurements for mixnet nodes (aka "mixmining")
  • generate Coconut credentials and ensure they're not double spent
  • maintain a decentralized directory of all Nym nodes that have staked into the system

Some of these functions may be moved away to their own node types in the future, for example to increase scalability or performance. At the moment, we'd like to keep deployments simple, so they're all in the validator node.

Running the validator on your local machine

  1. Download and install Tendermint 0.32.7
  2. tendermint init sets up Tendermint for use
  3. tendermint node runs Tendermint. You'll get errors until you run the Nym validator, this is normal :).
  4. cp sample-configs/validator-config.toml.sample sample-configs/validator-config.toml
  5. cargo run -- run --config ../sample-configs/validator-config.toml builds the Nym Validator and runs it