Skip to content
Go JavaScript TypeScript Shell Makefile Dockerfile Smarty
Branch: master
Clone or download

Latest commit

Latest commit 1d7c4f6 Apr 24, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Don't connect to private chartmuseum on test Apr 14, 2020
acm Ensure execution caches are reset after state is updated Apr 20, 2020
bcm typescriptify burrow Feb 28, 2020
binary Merge branch 'master' into master Oct 8, 2019
cmd/burrow Fix sequence number assignment for EthSendTransaction Apr 22, 2020
config revert Address -> ValidatorAddress Oct 1, 2019
consensus typescriptify burrow Feb 28, 2020
core Fix sequence number assignment for EthSendTransaction Apr 22, 2020
crypto typescriptify burrow Feb 28, 2020
deploy Ensure execution caches are reset after state is updated Apr 20, 2020
docs Swapsies on the README symlink to make docsify happy Apr 22, 2020
dump Assert continuity when reassmbling blocks, transactions, and events from Apr 21, 2020
encoding Fix sequence number assignment for EthSendTransaction Apr 22, 2020
event Fix various issues with burrow deploy and Deploy tests Apr 20, 2020
execution Fix sequence number assignment for EthSendTransaction Apr 22, 2020
forensics Assert continuity when reassmbling blocks, transactions, and events from Apr 21, 2020
genesis Fix sequence number assignment for EthSendTransaction Apr 22, 2020
helm/burrow Add Helm charts and update documentation Apr 14, 2020
integration Fix sequence number assignment for EthSendTransaction Apr 22, 2020
js Assert continuity when reassmbling blocks, transactions, and events from Apr 21, 2020
keys Fix sequence number assignment for EthSendTransaction Apr 22, 2020
logging Ensure execution caches are reset after state is updated Apr 20, 2020
permission Fix various issues with burrow deploy and Deploy tests Apr 20, 2020
process separate host/port, silent restore fail option, fix state restore mes… Apr 12, 2019
project Hide implementation details of OpcodeBitset in IsOpcodeAt Apr 14, 2020
protobuf Assert continuity when reassmbling blocks, transactions, and events from Apr 21, 2020
rpc Fix sequence number assignment for EthSendTransaction Apr 22, 2020
scripts Add Helm charts and update documentation Apr 14, 2020
storage Assert continuity when reassmbling blocks, transactions, and events from Apr 21, 2020
sync Remove lots of dead code, restructure storage. Jun 20, 2019
tests Assert continuity when reassmbling blocks, transactions, and events from Apr 21, 2020
txs Assert continuity when reassmbling blocks, transactions, and events from Apr 21, 2020
util Ensure execution caches are reset after state is updated Apr 20, 2020
vent Assert continuity when reassmbling blocks, transactions, and events from Apr 21, 2020
.dockerignore Sort out docker and release builds Aug 20, 2018
.gitignore Add Helm charts and update documentation Apr 14, 2020
.goreleaser.yml update goreleaser config Jan 27, 2020
CHANGELOG.md Add Helm charts and update documentation Apr 14, 2020
CODEOWNERS Add CODEOWNERS Dec 20, 2019
Dockerfile Build a burrow debug binary and include it in the docker image with the Apr 14, 2020
LICENSE.md strings.ToUpper(the-license-filename-prefix) Mar 4, 2017
MAINTAINERS.md Removed <> Feb 10, 2020
Makefile Fix various issues with burrow deploy and Deploy tests Apr 20, 2020
NOTES.md Add Helm charts and update documentation Apr 14, 2020
SECURITY.md Add default SECURITY policy Sep 27, 2019
burrow.go Add top level package file Jul 22, 2019
docker-compose.yml Fix ABI Address packing issue and error swallowing Apr 19, 2020
go.mod Update Account model with OpcodeBitset. Apr 14, 2020
go.sum Update Account model with OpcodeBitset. Apr 14, 2020

README.md

Hyperledger Burrow

CI version GoDoc license LoC codecov

Hyperledger Burrow is a permissioned Ethereum smart-contract blockchain node. It executes Ethereum EVM and WASM smart contract code (usually written in Solidity) on a permissioned virtual machine. Burrow provides transaction finality and high transaction throughput on a proof-of-stake Tendermint consensus engine.

burrow logo

What is Burrow

Burrow is a fully fledged blockchain node and smart contract execution engine -- a distributed database that executes code. Burrow runs Ethereum Virtual Machine (EVM) and Web Assembly (WASM) smart contracts. Burrow networks are synchronised using the Tendermint consensus algorithm.

Highlights include:

  • Tamper-resistant merkle state - a node can detect if its state is corrupted or if a validator is dishonestly executing the protocol.
  • Proof-of-stake support - run a private or public permissioned network.
  • On-chain governance primitives - stakeholders may vote for autonomous smart contract upgrades.
  • Ethereum account world-view - state and code is organised into cryptographically-addressable accounts.
  • Low-level permissioning - code execution permissions can be set on a per-account basis.
  • Event streaming - application state is organised in an event stream and can drive external systems.
  • SQL mapping layer - map smart contract event emissions to SQL tables using a projection specification.
  • GRPC interfaces - all RPC calls can be accessed from any language with GRPC support. Protobuf is used extensively for core objects.
  • Javascript client library - client library uses code generation to provide access to contracts via statically Typescript objects.
  • Keys service - provides optional delegating signing at the server or via a local proxy
  • Web3 RPC - provides compatibility for mainnet Ethereum tooling such as Truffle and Metamask

What it is not

  • An Ethereum mainnet client - we do not speak devp2p and various implementation details are different. We are Ethereum-derived but exploit greater freedom than mainnet compatibility would allow.
  • Just a virtual machine
  • A research project - we run it in production

Further introductory material

See Burrow - the Boring Blockchain for an introduction to Burrow and its motivating vision.

Watch the Boring into Burrow talk from the Hyperledger Global Forum 2020

JavaScript Client

There is a JavaScript API

Project Roadmap

Project information generally updated on a quarterly basis can be found on the Hyperledger Burrow Wiki.

Documentation

Burrow getting started documentation is available on the documentation site (source markdown files can be found in docs) and programmatic API in GoDocs.

Contribute

We welcome any and all contributions. Read the contributing file for more information on making your first Pull Request to Burrow!

You can find us on:

License

Apache 2.0

You can’t perform that action at this time.