zuole / core

Core Protocols, Libraries and Off-chain Clients

Home Page:https://dos.network

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DOS Client and Core Libraries

Development Setup:

  • Install Go (recommended version 1.10+) and setup golang workingspace, specifically by adding environment variable GOPATH into PATH.
  • Install dep to manage package dependencies and versions.
  • Download:
    • $ go get -d github.com/DOSNetwork/core/... or
    • $ git clone git@github.com:DOSNetwork/core.git
  • Build:
    • $ make or $ make client to build release version client.
    • $ make devClient to build develoment version client.
    • $ make updateSubmodule to fetch latest system contracts from repo, instead of making contract modifications locally.
    • $ make gen to generate binding files for system contracts.
  • Dev:
    • $ go fmt . for indentation and basic coding styles.
    • $ make clean to remove binaries or unnecessary generated files.
    • $ make build && cd testing && make deploy && make buildDockers && cd ../ && docker-compose up --scale dosnode=3 to do local tests.

Running a Beta DOS Client on a VPS (Ubuntu 16.04 LTS):

Requirements

  1. A Ubuntu 16.04 LTS VPS
  1. An Ethereum wallet with enough ether and DOS token.

1) Prepare the environment

  • Download vps_docker.sh or vps.sh,dos.setting,static-nodes.json,config.json,rinkeby.json and geth.service

  • setup the following setting in the dos.setting

    • USER : VPS user name

    • VPSIP : VPS public IP

    • VPSKEY : VPS ssh private key location

    • KEYSTORE : Ethereum keystore file location

    • GETHPOOL : User can add his own geth full node here.More geth node could improve performance and stability of DOS. Please note that ws is only for eveny subsciption.DOS need at least one valid geth http url.

        DOSIMAGE=dosnetwork/dosnode:beta
        USER=tester
        VPSIP=xxx.xxx.xxx.xxx
        KEYSTORE=xxx
        GETHPOOL="https://rinkeby.infura.io/projectid;ws://xxx.xxx.xxx.xxx:8546"
      
  • change the following setting in the geth.service

    • WorkingDirectory :

    • User : VPS user name

    • datadir :

        [Service]
        WorkingDirectory=/home/tester
        User=tester
        ExecStart=/usr/bin/geth --datadir /home/tester/.rinkeby ...
      

2) Install and run the client (Docker or Binary)

  • Install and setup directorys for client
$ bash vps_docker.sh install
or
$ bash vps.sh install
  • Run the client
$ bash vps_docker.sh run
or
$ bash vps.sh run
  • Stop the client
$ bash vps_docker.sh stop
or
$ bash vps.sh stop
  • Show the client status
$ bash vps_docker.sh clientInfo
or
$ bash vps.sh clientInfo

2) Build the client locally and run the client on a VPS

  • Follow the section [DEV setup and workflow] to build client

Status

  • ☑️ Secret Sharing
  • ☑️ Distributed Key Generation (Pedersen's DKG approach)
  • ☑️ Paring Library and BLS Signature
  • ☑️ Distributed Randomness Engine with VRF
  • ☑️ Gossip & DHT Implementation
  • ☑️ P2P NAT Support
  • ☑️ Json / Xml / Html Parser
  • ☑️ Dockerize and Deployment Script
  • ☑️ Integration with Ethereum On-chain System Contracts
  • ⬜ P2P Network Performance Tuning
  • ⬜ Network Status Scanner/Explorer
  • ⬜ Staking & Delegation Contracts with a User-friendly Frontend

About

Core Protocols, Libraries and Off-chain Clients

https://dos.network


Languages

Language:Go 96.6%Language:Shell 2.0%Language:Makefile 0.6%Language:C 0.4%Language:Dockerfile 0.3%Language:Assembly 0.1%