Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 1.39 KB

README.md

File metadata and controls

42 lines (32 loc) · 1.39 KB

DKG on EVM

Distributed key generation on Ethereum virtual machine for BLS threshold signature using the elliptic curve BN256.

Compatible with BGLS library.

Building from source

Prerequisites

  • Node.js (tested on v10.6.0)
  • Truffle

    install: npm install -g truffle

  • Ganache
    • make sure at least 3 accounts are created.

Installation

git clone https:/orbs-network/dkg-on-evm.git
cd dkg-on-evm
npm install

Tests

Run tests

  • Full test run:

    truffle test

  • Specific test run:

    truffle test ./test/<name_of_test>.js

Test files

  • testHappyFlow.js - tests a successful flow.
  • testComplaints.js - tests justified/unjustified complaints.
  • testTimeouts.js - tests timeouts occurnce in enrollment and commitment phases.

Test issues

  • The tests may take rather long time. Right now there are two options to make the test go faster without damaging the quality of the tests. First, make sure the timeouts, that are defined inside the DKG contract, are small. Second, make sure that the not too many account are created in the Ganache client (the minimum number of accounts for the tests to work properly is 3 accounts).

Simulation

In simulation directory.

License

MIT