Crate feeless[][src]

A set of tools to handle many aspects of the Nano cryptocurrency.

feeless can be used as:

  • A library. (This crate!)
  • A command line tool with piping capability. See examples/cli.rs for example usage.
  • A node. ⚠ WIP. Not a proper node yet, but lots of groundwork so far!

Modules

blocks

Handling, creating and parsing blocks.

phrase

BIP39 and BIP44 mnemonic seed phrase.

Structs

Address

Nano address. e.g. nano_3o3nkaqbgxbuhmcrf38tpxyhsf5semmcahejyk9z5ybffm7tjhizrfqo7xkg

Phrase

BIP39 and BIP44 mnemonic seed phrase that can generate keys.

Private

256 bit private key which can generate a public key.

Public

256 bit public key which can be converted into an Address or verify a Signature.

Raw

Container for the smallest Nano unit, with conversion functionality, e.g. from raw to Mnano.

Seed

256 bit seed used to derive multiple addresses.

Signature

A ed25519+blake2 signature that can be generated with Private and checked with Public.

Work

The result of some proof of work (PoW). Can verify and inefficiently generate PoW using the CPU.

Constants

DEFAULT_PORT

The default TCP port that Nano nodes use.