Skip to content

🌔 Perun's Blockchain-Agnostic State Channels Framework in Go.

License

Notifications You must be signed in to change notification settings

christoph-conrads/go-perun

 
 

Repository files navigation


Perun

Perun Blockchain-Agnostic State Channels Framework

Go report: A+ License: Apache 2.0 TravisCI build status pkg.go.dev docs

go-perun is a Go implementation of the Perun state channel protocols (introduction paper). The perun protocols provide payment and general state channel functionality to all existing blockchains that feature smart contracts. As a blockchain scalability solution, payment and state channels reduce transaction costs and increase the system throughput by executing incremental transactions off-chain. The Perun protocols have been proven cryptographically secure in the UC-framework. They are blockchain-agnostic and only rely on a blockchain's capability to execute smart contracts.

Security Disclaimer

go-perun is still alpha software. It should not be used in production. The current release, Charon (v0.3.0), is not intended to have any practical use, and should only give potential users a general impression and invite feedback. The authors take no responsibility for any loss of digital assets or other damage caused by the use of this software. Do not use this software with real funds.

Getting Started

Running go-perun requires a working Go distribution (version 1.14 or higher).

# Clone the repository into a directory of your choice
git clone https://github.com/perun-network/go-perun.git
# Or directly download it with go
# go get -d perun.network/go-perun
cd go-perun
# Run the unit tests
go test ./...

You can import go-perun in your project like this:

import "perun.network/go-perun/client"

go-perun implements the core state channel protocol in a blockchain-agnostic fashion by following the dependency inversion principle. For this reason, a blockchain backend has to be chosen and blockchain-specific initializations need to be executed at program startup.

Documentation

More in-depth documentation can be found in the github wiki pages and on go-perun's pkg.go.dev site.

Features

go-perun currently supports all features needed for two party payment channels. The following features are currently provided:

  • Two-party ledger state channels
  • Cooperatively settling
  • Ledger channel disputes
  • Dispute watchtower
  • Data persistence

The following features are planned for future releases:

  • Generalized two-party ledger channels (sub-channels)
  • Virtual two-party channels (direct dispute)
  • Virtual two-party channels (indirect dispute)
  • Multi-party ledger channels
  • Virtual multi-party channels (direct dispute)
  • Cross-blockchain virtual channels (indirect dispute)

Backends

There are multiple blockchain backends available as part of the current release: Ethereum (backend/ethereum), and a simulated, ideal blockchain backend (backend/sim). A backend is automatically initialized when its top-level package backend/<name> is imported. The Ethereum smart contracts can be found in our contracts-eth repository.

Logging and networking capabilities can also be injected by the user. A default logrus implementation of the log.Logger interface can be set using log/logrus.Set. The Perun framework relies on user-injected peer.Dialer and peer.Listener implementations for networking. go-perun is distributed with dialer and listener implementations for TCP and Unix sockets for testing purposes, which can be found in package peer/net.

Data persistence can be enabled to continuously persist new states and signatures. There are currently three persistence backends provided, namely, a test backend for testing purposes, an in-memory key-value persister and a LevelDB backend.

API Primer

In essence, go-perun provides a state channel network client, akin to ethereum's ethclient package, to interact with a state channels network. Once the client has been set up, it can be used to propose channels to other network peers, accept channel proposals, send updates on those channels and eventually settle them.

A minimal, illustrative usage is as follows

package main

import (
	"context"
	"time"

	"perun.network/go-perun/channel"
	"perun.network/go-perun/client"
	"perun.network/go-perun/log"
	"perun.network/go-perun/peer"
	"perun.network/go-perun/wallet"
	// other imports
)

func main() {
	// setup networking
	var dialer peer.Dialer
	var listener peer.Listener
	// setup blockchain interaction
	var funder channel.Funder
	var adjudicator channel.Adjudicator
	// setup off-chain identity
	var identity peer.Identity
	// setup wallet for channel accounts
	var w wallet.Wallet

	// create state channel network client
	c := client.New(identity, dialer, funder, adjudicator, w)
	// optionally start listening for incoming connections
	go c.Listen(listener)

	// choose how to react to incoming channel proposals
	var proposalHandler client.ProposalHandler
	// choose how to react to incoming channel update requests
	var updateHandler client.UpdateHandler
	// start incoming request handler
	go c.Handle(proposalHandler, updateHandler)

	// propose a new channel
	ctx, cancel := context.WithTimeout(context.Background(), 10*time.Minute)
	defer cancel()
	ch, err := c.ProposeChannel(ctx, &client.ChannelProposal{
		// details of channel proposal, like peers, app, initial balances, challenge duration...
	})
	if err != nil { /* handle error */ }

	// start watchtower
	go func() {
		err := ch.Watch()
		log.Info("Watcher returned with error ", err)
	}()

	// send a channel update request to the other channel peer(s)
	err = ch.Update(ctx, client.ChannelUpdate{
		// details of channel update: new State, actor index, ...
	})
	if err != nil { /* handle error */ }

	// send further updates and finally, settle/close the channel
	if err := ch.Settle(ctx); err != nil { /* handle error */ }
}

For a full-fledged example, have a look at our CLI Demo perun-eth-demo. Go mobile wrappers for Android and iOS App development can be found at perun-eth-mobile.

Funding

This project is currently being developed by a group of dedicated hackers at the Applied Cryptography research group at Technische Universität Darmstadt, Germany. We thank the German Federal Ministry of Education and Research (BMBF) for their funding through the StartUpSecure grants program as well as the German Science Foundation (DFG), the Foundation for Polish Science (FNP) and the Ethereum Foundation for their support in the research that preceded this implementation.

Copyright

Copyright © 2020 Chair of Applied Cryptography, Technische Universität Darmstadt, Germany. All rights reserved. Use of the source code is governed by the Apache 2.0 license that can be found in the LICENSE file.

Contact us at info@perun.network.

About

🌔 Perun's Blockchain-Agnostic State Channels Framework in Go.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 99.8%
  • Shell 0.2%