Skip to content

abicky/ibc-parlia-relay

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ibc-parlia-relay

CI

Supported Versions

Setup Relayer

Add this module to yui-relayer and activate it.

package main

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

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

Development

Generate proto buf with protobuf definition of parlia-elc.

cd $GOPATH/github.com/datachainlab
git clone https://github.com/datachainlab/parlia-elc
cd ibc-parlia-relay
make proto-import
make proto-gen

About ForkSpec

  1. Set HF height as soon as possible As soon as the HF height is determined, please modify the timestamp in the ForkSpec to the height as soon as possible. HF height is calculated from timestamp, but the further away from the HF, the longer it takes to calculate.

  2. Limitation of the CreateClient When the latest HF height is not set it is impossible to create client if the latest finalize header is after latest HF timestamp

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Solidity 50.0%
  • Go 43.4%
  • JavaScript 3.0%
  • Shell 2.4%
  • Makefile 1.2%