Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 622 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 622 Bytes

ibc-quorum-relay

A prover module of yui-relayer. A corresponding Chain Module can be found in ethereum-ibc-relay-chain.

Setup Relayer

Add this module to yui-relayer and activate it.

package main

import (
	"log"
	
	"github.com/hyperledger-labs/yui-relayer/cmd"
	quorum "github.com/datachainlab/ibc-quorum-relay/module"
)

func main() {
	if err := cmd.Execute(
		// counterparty.Module{}, //counter party
		quorum.Module{}, // Quorum Prover Module 
    ); err != nil {
		log.Fatal(err)
	}
}