insolar

package module
v0.8.7 Latest Latest
Warning

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

Go to latest
Published: Apr 23, 2019 License: Apache-2.0 Imports: 1 Imported by: 0

README

Insolar

Enterprise-ready blockchain platform

CII Best Practices

Build Status GolangCI Go Report Card GoDoc codecov

Overview

Insolar is building a 4th generation blockchain platform for business aimed to enable seamless interactions between companies and unlock new growth opportunities. In addition to the blockchain platform, Insolar will provide blockchain services and ecosystem support for companies that are looking to develop and deploy blockchain solutions. Insolar will feature most complete and secure set of production-ready business blockchain tools and services to quickly build or launch blockchain enterprise applications, accelerating the progression path from initial proof-of-concept to full-scale production.

The world’s most innovative companies in finance, logistics, consumer goods, energy, healthcare, transportation, manufacturing and others will be turning to Insolar to create applications and networks that deliver tangible business success. They recognise that even in today’s digital economy, vast amounts of value continue to be trapped inside processes and organisations that don’t connect. Insolar is their remedy, helping them discover and design business value in blockchain networks — starting, accelerating and innovating strategies that replace longstanding business friction with trust and transparency. Delegating trust to a blockchain means that businesses can pursue broader networks, onboard new partners, and enter new ecosystems with ease. Blockchain-based networks that support multiparty collaboration around shared, trusted data and process automation across organisational boundaries bring benefits at many levels, starting with efficiency gains and culminating in reinventing how entire industry ecosystems operate.

Insolar is a global team of 60+ people in North America and Europe, including a 35-strong engineering team with practical blockchain engineering know-how, and 10 leading blockchain academics from major institutions (York University, ETH Zurich, Princeton).

Components

Network

Blockchain network layer.

  • Support of heterogeneous network topology.
  • Network routing with a host or host group becoming relays for others hosts.
  • Ability to limit number of gateways to corporate host group via relays to keep the host group secure.

See package readme for more details.

Ledger

Record storage engine backed by BadgerDB.

Virtual machines

Various engines for smart contract execution:

  • wasm - WebAssembly implementation of smart contracts
Application layer

Application module describes interaction of system components with each other. Every component of the system is a SmartContract. Members of the system are given the opportunity to build their own dApps by publishing smart contracts in Domain instances. Domains define the visibility scope for the child contracts and their interaction policies. Actually, Domain is subclass of SmartContract.

See package readme for more details.

Configuration

Provides configuration params for all Insolar components and helper for config resources management.

Metrics

Using Prometheus monitoring system and time series database for collecting and store metrics

Installation

Download Insolar package

go get github.com/insolar/insolar

Go to package directory

cd $GOPATH/src/github.com/insolar/insolar

Install dependencies and build binaries

make install-deps pre-build build
Example

Run launcher:

scripts/insolard/launchnet.sh -g

It will generate genesis data and launch a number of nodes. Default number is 5, you can uncomment more nodes in scripts/insolard/genesis.yaml.

After node processes are started you will see messages like “NODE 3 STARTED in background” in log and PulseWatcher will be started. When you see Ready in Insolar State you can run test scripts and benchmarks:

bin/apirequester -k=scripts/insolard/configs/root_member_keys.json -u=http://127.0.0.1:19101/api

This tool runs such scenario: it creates a number of users with wallets, then transfers some money between these users. First time script does it sequentially, second time — concurrently. Options:

  • -k: Path to root user keypair. All requests to create new user must be signed by root user.

  • -u: Node API URL. By default first node listens on 127.0.0.1:19101. It can be changed in config.

    bin/benchmark -c 2 -r 4 -k=scripts/insolard/configs/root_member_keys.json

Options:

  • -k: Same as above, path to root user keypair.
  • -c: Number of concurrent threads in which requests will be sent.
  • -r: Number of transfer requests that will be sent in each thread.

After testing you can stop all nodes by pressing Ctrl+C.

See apirequester and benchmark readme for more details

Contributing

See Contributing Guidelines.

License

This project is licensed under the terms of the Apache license 2.0, except for the Network, NetworkCoordinator and Consensus subdirectories, which are licensed under the terms of the BSD 3-Clause Clear License.

Documentation

Overview

Package insolar is the next generation high-performance scalable blockchain platform designed with the express purpose to meet an immense business scope. The enterprise-grade distributed ledger cloud platform will help to increase business velocity, create new revenue streams, and reduce cost and risk by securely extending enterprise SaaS and on-premises applications to drive tamper-resistant transactions on a trusted business network.

Insolar supports public and private blockchains and is able to customize different blockchains for different applications.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Node

type Node struct {
	ID   core.RecordRef
	Role core.StaticRole
}

Node represents insolar node.

Directories

Path Synopsis
api
sdk
application
cmd
Package configuration holds configuration for all components in Insolar host binary It allows also helps to manage config resources using Holder
Package configuration holds configuration for all components in Insolar host binary It allows also helps to manage config resources using Holder
Package core contains common definitions used by other modules.
Package core contains common definitions used by other modules.
delegationtoken
Package delegationtoken is about an authorization token that allows a node to perform actions it can not normally perform during this pulse
Package delegationtoken is about an authorization token that allows a node to perform actions it can not normally perform during this pulse
dns
message
Package message represents message that messagebus can route
Package message represents message that messagebus can route
reply
Package reply represents responses to messages of the messagebus
Package reply represents responses to messages of the messagebus
docker
Package gen contains functions for generating insolar types.
Package gen contains functions for generating insolar types.
instrumentation
inslogger
Package inslogger contains context helpers for log
Package inslogger contains context helpers for log
insmetrics
Package insmetrics provides helpers for opencesus metrics.
Package insmetrics provides helpers for opencesus metrics.
instracer
Package instracer contains helpers for opencesus tracer.
Package instracer contains helpers for opencesus tracer.
pprof
Package pprof provides http pprof handlers
Package pprof provides http pprof handlers
Package ledger contains high level interfaces to storage engine and multiple record types
Package ledger contains high level interfaces to storage engine and multiple record types
artifactmanager
Package artifactmanager provides high-level storage API for logic runner module.
Package artifactmanager provides high-level storage API for logic runner module.
exporter
Package exporter contains methods of extracting data from DB.
Package exporter contains methods of extracting data from DB.
heavyclient
Package heavyclient contains heavy replication client code.
Package heavyclient contains heavy replication client code.
heavyserver
Package heavyserver contains methods for processing synchronization tasks on heavy node.
Package heavyserver contains methods for processing synchronization tasks on heavy node.
jetcoordinator
Package jetcoordinator is responsible for all jet manipulations.
Package jetcoordinator is responsible for all jet manipulations.
ledgertestutils
Package ledgertestutils contains high level API tests and test utils for other modules.
Package ledgertestutils contains high level API tests and test utils for other modules.
pulsemanager
Package pulsemanager is responsible for all pulse operations.
Package pulsemanager is responsible for all pulse operations.
storage
Package storage contains ledger storage implementation on top of BadgerDB engine.
Package storage contains ledger storage implementation on top of BadgerDB engine.
storage/index
Package index represents indexes and meta information for records.
Package index represents indexes and meta information for records.
storage/jet
Package jet provides methods for working with Jet objects.
Package jet provides methods for working with Jet objects.
storage/nodes
Package nodes contains node storage
Package nodes contains node storage
storage/record
Package record contains code and types for storage records manipulation.
Package record contains code and types for storage records manipulation.
storage/storagetest
Package storagetest contains high level API tests and test utils for other modules.
Package storagetest contains high level API tests and test utils for other modules.
Package log contains adapter for third-party loggers
Package log contains adapter for third-party loggers
Package logicrunner - infrastructure for executing smartcontracts
Package logicrunner - infrastructure for executing smartcontracts
builtin
Package builtin is implementation of builtin contracts engine
Package builtin is implementation of builtin contracts engine
goplugin
Package goplugin - golang plugin in docker runner
Package goplugin - golang plugin in docker runner
goplugin/foundation
Package foundation server implementation of smartcontract functions
Package foundation server implementation of smartcontract functions
Package messagebus routes messages (contract calls & responses) and delivers'em to relevant modules.
Package messagebus routes messages (contract calls & responses) and delivers'em to relevant modules.
Package metrics is a gateway for Prometheus monitoring system, it based on Prometheus golang client.
Package metrics is a gateway for Prometheus monitoring system, it based on Prometheus golang client.
transport
Package transport provides network transport interface.
Package transport provides network transport interface.
transport/host
Package host is a fundamental part of networking system.
Package host is a fundamental part of networking system.
transport/packet
Package packet provides network messaging protocol and serialization layer.
Package packet provides network messaging protocol and serialization layer.
transport/relay
Package relay is an implementation of relay mechanism.
Package relay is an implementation of relay mechanism.
transport/resolver
Package resolver provides interface (and default implementation) to retrieve public network address.
Package resolver provides interface (and default implementation) to retrieve public network address.
pulsartestutils
Package pulsartestutil - test utils for pulsar package
Package pulsartestutil - test utils for pulsar package
utils
backoff
Package backoff provides an exponential-backoff implementation.
Package backoff provides an exponential-backoff implementation.
Package version provides project version information.
Package version provides project version information.

Jump to

Keyboard shortcuts

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