An open API service indexing awesome lists of open source software.

https://github.com/hyperledger-labs/yui-corda-ibc

IBC implementation in Corda
https://github.com/hyperledger-labs/yui-corda-ibc

corda cosmos ibc kotlin

Last synced: over 1 year ago
JSON representation

IBC implementation in Corda

Awesome Lists containing this project

README

          

# Corda-IBC
Corda-IBC is an implementation of IBC modules that runs as a CorDapp on Corda platform.
The Inter-Blockchain Communication protocol (IBC) verifiably bridges two blockchains but there's no concept of "chain" in the Corda world.
Therefore in this implementation, a group of fixed members (Corda nodes) is regarded as "chain", in other words, one end point of IBC communication.
For now this implementation supports communication between Corda-IBC and Corda-IBC and between Corda-IBC and Fabric-IBC.
It is planned to support communication with Tendermint-IBC (Cosmos SDK).

# Try it!

## Check out submodules
```bash
$ git submodule update --init
```

## Build and test the project
```bash
$ make buildClientImage
$ make buildClient
$ make buildImage
$ make test # Note that it uses a large amount of memory.
$ make oldTest # This one uses more.
```