Skip to content
Wouter den Bakker edited this page Nov 28, 2019 · 4 revisions

The Validana Core contain the basic functionality for the Validana blockchain, such as generating private keys, the transaction format, the block format, functionality for signing and verifying them, functionality for processing transactions and interfaces for all the components. It is meant to be extended by programs wishing to work with the blockchain, such as the processor and the node.

You can also use it to generate a private key with its public key and address from the command line by running (from the folder the project was downloaded to): yarn --silent keys or yarn --silent keysjson. Alternately you can generate keys in your browser.

For those wishing to extend the core (or node/processor) a list of common abbreviations:

  • V = Validana
  • tx = transaction
  • ts = timestamp
  • db = database
  • proc = processor
  • priv = private
  • pub = public
Clone this wiki locally