Giter VIP home page Giter VIP logo

nkn-ns's Introduction

NKN Name Service

πŸ“–πŸ” Documents of the NKN Name Service.

Overview

πŸ’‘ What is NKN?

NKN is the next generation of peer to peer network infrastructure built upon blockchain technology backed by Cellular Automata theory aiming at revolutionizing the Internet with true decentralization and native token incentive mechanism. NKN introduced the concept of Decentralized Data Transmission Network (DDTN). DDTN combines multiple independent and self-organized relay nodes to provide clients with connectivity and data transmission capability. NKN introduces Proof of Relay as consensus mechanism and incentive model which encourages people to join the network to share and enhance network connectivity and data transmission. In short, the reward is depending on the data amount of a node relays. It makes whole network retain high efficiency as well. The "mining" is redefined as contributing to the data transmission layer, and the only way to get more rewards is providing more transmission power.

πŸ’‘ What is BNS?

BNS – or blockchain name system – is the protocol on the internet that turns human-comprehensible decentralized website names such as β€˜website.xem’ or β€˜mywebsite.xem’ into addresses understandable by decentralized network machines.

πŸ“ Description

NNS is the NKN Name Service, a distributed, open, and extensible naming system based on the NKN blockchain.

πŸ“š Documents

Table of Contents

πŸ—‚οΈ NKN Technical Stack

The NKN technical stacks show the abstractions in different layers, and the layers in the picture below start from the top and constructed down along with the y-axis. For example, the identity component in the component layer is built upon on the state layer which is NKN core. NKN Tech Stack

State Layer

The decentralized network stores the state information of each digital identity which usually based on different PKI system, every transactions and behavior can be stored and owned by the users. NKN core serves the fundamental infrastructure of the state layer. From this layer down each layer is built based on this infrastructure network. State Layer

Component Layer

The component layer is the abstraction of certain smart contract patterns or standards. Such as non-fungible assets which have some basic interfaces and many metadata describing the associated object. Those implementations behind the scenes are certain persistent scripts running on the core which provided by the state layer. Component Layer

Protocol Layer

NKN name service utilizes BNS protocol containing the specifications towards registrar, registry and resolver, it can greatly ease the development obstacles and allow more possibilities built upon on the interfaces. Protocol Layer

User Control Layer

The user control layer describes the key of user adoption, if no well-designed interface for users to manage their wallet and sign transactions, a user will have to interact with the decentralized services and applications with command line interface. There are many solutions to make the user adoption growth, such as the NEO wallet, browser extension and so on. User Control Layer

Application Layer

Applications built on the NKN decentralized network stacks unleased unlimited use cases and capacities. Such as fund rasing, trading, and game fields, each participants can control their data and experience the services at the same time. There will be more powerful services coming out as the stack matures. Application Layer

Introduction

Proof of Relay and consensus

PoR is a useful proof of work, it redefines mining as relaying data. PoR's implementation is basded on a special signature chain. In simple terms, the PoR signature chain is a hash chain that relay nodes sign in turn when relaying data packets.

A signature chain is a chain of signature, signed by data relayers sequentially when relaying NKN packet. Each element of the chain consists of the following fields:

  1. Relayer NKN address and public key.
  2. Next relayer NKN address.
  3. Signature(signature of the previous element on chain, relayer NKN address, next relayer NKN address) signed with relayer private key.

The first element of the signature chain is signed by source, and the signature field is replaced by signature(payload hash, payload size, source NKN address and public key, destination NKN address and public key, next relayer NKN address). Signature chain cannot be forged because each element contains the NKN address and public key of the next node. If a malicious node is on the route and intends to modify some previous elements on the chain when generating his signature, the chain is no longer valid.

New block is added to the blockchain by first selecting a β€œleader” that proposes the new block. The leader selection is uncontrollable but verifiable. The expected probability that a node is elected as leader is proportional to the data relayed by the node on secure paths.

Leader selection procedure

Leader is selected by first selecting a signature chain on a secure path. The signature chain being selected is the one that has the lowest last signature value. To select the signature chain with lowest last signature, each node who signs the last signature checks if the last signature is smaller than a threshold. If the last signature is smaller than the threshold, the node sends out the signature chain to the network as a candidate for the lowest last signature.

Block creation

Block is proposed by the selected leader in each round. Proposed block is sent to all nodes for verification and consensus. During consensus phase, each node sends to its neighbors the hash of the block (in case the leader sends out different blocks to different neighbors) and if it is accepted or not.

In the PoR algorithm, the bookkeeper candidate vote is not a vote of a person or IP address, but a vote of a signature chain. If any malicious node wants to control NKN, it must have enough active channels (signature chain) under control. The larger scale of NKN the more difficult it is to control.

Start NKN using docker

Prerequisites

  • Clone NKN project.
git clone https://github.com/nknorg/nkn.git
  • Docker installed.

Build using docker

  1. Change current directory to nkn project.
cd nkn
  1. Build dokcer image.
docker build -t nkn .
  1. After docker image built successfully, we need to prepare a configuration file for starting a node. There are two default configuration files in nkn project:
  • config.testnet.json: used to join the testnet.
  • config.local.json: create and join a private chain on your localhost. In this tutorial, we want to make our own node become part of the testnet, so we will choose config.testnet.json as configuration file.
    cp config.testnet.json config.json
    
    And open the config.json file: configure
    • Replace Hostname with your IP address.

    Note:

    NKN needs a public static IP or set up port forwarding on your router properly to join the testnet.
  1. Before starting the node, we need to create a new wallet first:
docker run -it -v $PWD:/nkn nkn nknc wallet -c

wallet

  1. After wallet created, we can start to deploy local node:
docker run -p 30000-30003:30000-30003 -v $PWD:/nkn --name nkn --rm -it nkn nknd

testnet

Start NKN manual

Prerequisites

  • Go 1.10+ installed.

  • $GOROOT and $GOPATH environment variable configured.

    export GOROOT=$(go env GOROOT)
    export GOPATH=$(go env GOPATH)
    export GOBIN=$GOPATH/bin
    export PATH=$PATH:$GOBIN
    
  • Create directory $GOPATH/src/github.com/nknorg/ if not exists.

    mkdir -p $GOPATH/src/github.com/nknorg
    

Building from source

  1. Clone nkn project to $GOPATH/src/github.com/nknorg/.
cd $GOPATH/src/github.com/nknorg/
git clone https://github.com/nknorg/nkn.git
  1. Install package management tool glide.
cd nkn
make glide
  1. Download dependency module and build project.
make vendor
make
  1. After source code built successfully, we need to prepare a configuration file for starting a node. There are two default configuration files in nkn project:
  • config.testnet.json: used to join the testnet.
  • config.local.json: create and join a private chain on your localhost. In this tutorial, we want to make our own node become part of the testnet, so we will choose config.testnet.json as configuration file.
    cp config.testnet.json config.json
    
    And open the config.json file: configure
    • Replace Hostname with your IP address.

    Note:

    NKN needs a public static IP or set up port forwarding on your router properly to join the testnet.
  1. Before starting the node, we need to create a new wallet first:
./nknc wallet -c

walletLocal

  1. After wallet created, we can start to deploy local node:
./nknd

testnetLocal

πŸ”— Resources

πŸ“£ Contributing

See CONTRIBUTING.md for how to help out.

πŸ—’ Licence

See LICENSE for details.

nkn-ns's People

Contributors

andyparktw avatar billportalnetwork avatar goodvincenttu avatar mrblocktw avatar phyrextsai avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

nkn-ns's Issues

NKN code base tutorial

Checklist

  • Start NKN with golang
  • Setup environment on NKN

Documentation

  • Tutorial of the code base
  • NKN start process

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.