Skip to content

Latest commit

 

History

History
108 lines (57 loc) · 3.17 KB

README.md

File metadata and controls

108 lines (57 loc) · 3.17 KB

Relay

The implementation of this relay conforms to the specifications outlined in the rfcs.

Relay is a daemon for enabling cross-DLT interoperability. Relay implements the Inter-Relay Protocol, an RFC to-be of a protocol standard for linking distributed ledgers that implement different ledger protocols.

Prerequisites

Development

To run tests:

cargo test

To build project and proto files:

make build

To run relay server:

RELAY_NAME=<relay_name> cargo run --bin server

For example, the Corda relay can be started with:

RELAY_CONFIG=config/Corda_Relay.toml cargo run --bin server

To run relay dummy client test:

cargo run --bin client <port-number-of-requesting-relay> <address>

NOTE: Please read through the addressing specification in the rfcs. Make sure the network-type has a running supported driver and is specified in the config.

EXAMPLE:

localhost:9081/Fabric_Network/mychannel:simplestate:read:TestState

or

localhost:9081/Dummy_Network/blah

Corda example:

localhost:9081/Corda_Network/localhost:10006#com.cordaSimpleApplication.flow.GetStateByKey:H

Logging

We use a simple logger for messaging. In the future we can use log4rsto persist applicational log. On the other hand, we persist message flow payloads, but we want to support the gateway crash-recovery logging procedure.

Settings

The Settings.toml file is used for storing configurations as well as acting as the remote relay discovery service.

NOTE: The RELAY_NAME environment variable will need to match a value in the [ports] table in the Settings.toml

Optional: Live-Reload

To use live reloading install the following packages

Normal live-reload:

RELAY_NAME=<relay_name> cargo watch -x 'run --bin server'

Flows

data_transfer

Basic data flow between relays.

NOTE: Remote relay name and port arguments need to match valid values in the config file.

To run local relay:

RELAY_CONFIG=<local_relay_config_path> cargo run --bin server

To run remote relay:

RELAY_CONFIG=<remote_relay_config_path> cargo run --bin server

Run dummy local client:

cargo run --bin client <port-number-of-requesting-relay> <address>

For running with the dummy_driver provided by this repo, please refer to the readme in the /driver directory

Running and Building with Docker

For details about the building and running relay components in Docker container please see the Relay Docker Documentation.

Architecture

For architecture, refer to the architecture document

Testing Philosophy

Write tests. Not too many. Mostly Integration

We also believe that when developing new functions running tests is prefereable than running the application to verify the code is working as expected.