https://github.com/datachainlab/ibc-quorum-relay
Relayer module for GoQuorum
https://github.com/datachainlab/ibc-quorum-relay
Last synced: about 1 year ago
JSON representation
Relayer module for GoQuorum
- Host: GitHub
- URL: https://github.com/datachainlab/ibc-quorum-relay
- Owner: datachainlab
- License: apache-2.0
- Created: 2022-11-30T07:41:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-11T02:24:16.000Z (over 2 years ago)
- Last Synced: 2025-03-13T03:33:23.392Z (about 1 year ago)
- Language: Go
- Size: 207 KB
- Stars: 3
- Watchers: 21
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ibc-quorum-relay
A prover module of [yui-relayer](https://github.com/hyperledger-labs/yui-relayer). A corresponding Chain Module can be found in [ethereum-ibc-relay-chain](https://github.com/datachainlab/ethereum-ibc-relay-chain).
## Setup Relayer
Add this module to yui-relayer and activate it.
```golang
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)
}
}
```