go-algorand

command module
v0.0.0-...-037434f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 15, 2019 License: GPL-3.0 Imports: 20 Imported by: 0

README

Algorand

Go implementation of Algorand algorithm based on the paper gilad-algorand-eprint.

It's just a POC demo and cannot be used in PROD ENV.

Analysis

  • OS: Mac OSX Mojava
  • CPU: Intel Core i5 8th 2.3GHz 4 cores.
  • RAM: 16GB

Some problems founded when run on a single machine:

  • Binomial distribution function(implemented with big.Rat) used by sortision is too slow!!!.
  • Due to the binomial bottleneck, the amount of proposers or committee members are often too small to make the votes cross threshold.

How to run

Running regular Algorand algorithm

go build
./algorand regular

And you can type

./algorand regular -h 

to check and fill some custom options to meet your demand.

NAME:
   main regular - run regular Algorand algorithm

USAGE:
   main regular [command options] [arguments...]

OPTIONS:
   --num value, -n value        amount of users (default: 100)
   --token value, -t value      token balance per users (default: 1000)
   --malicious value, -m value  amount of malicious users. Malicious user will use default strategy. (default: 0)
   --mtype value, -i value      malicious type: 0 Honest, 1 block proposal misbehaving; 2 vote empty block in BA*; 3 vote nothing (default: 0)
   --latency value, -l value    max network latency(milliseconds). Each user will simulate a random latency between 0 and ${value} (default: 0)
Options
  • --num,-n: The amount of users in Algorand.
  • --token,-t: The token balance provided for every user.
  • --malicious,-m: The amount of malicious users.
  • --mtype,-i: The malicious type of the malicious node
    • 0: It's an honest user.
    • 1: When the user happens to be the proposer with the highest priority, it will send one version of block to half of its remote peers, and another version to the others.(NEED TESTING)
    • 2: During the BA* period, the user will vote empty block forever.(NEED TESTING)
    • 3: The user attends in proposers and committee selection, but votes nothing.(NEED TESTING)
  • --latency,-l: The random upper bound of network latency. The peer will simulate a random delay between 0 and ${value} when sending messages.(NEED TESTING)

Docs

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
Package common contains various helper functions.
Package common contains various helper functions.
vrf
gen

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL