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

https://github.com/bptlab/mantichor-tezos

Tezos adapter for the Mantichor choreography framework
https://github.com/bptlab/mantichor-tezos

Last synced: over 1 year ago
JSON representation

Tezos adapter for the Mantichor choreography framework

Awesome Lists containing this project

README

          

# Mantichor Tezos

Tezos Blockchain Choreography Converter and Backend based on the Tezos Blockchain.
The Adapter is listening for the Mantichor Frontend on Port 7320.

## Dependencies

Make sure that the latest versions of [`docker`](https://docs.docker.com/install/) is installed.

## Starting

Start a **pre-built version** of the adapter using `docker run -p 7320:7320 --name mantichor-tezos-adapter -d bptlab/mantichor-tezos-adapter:latest`.
Alternatively, execute `start.sh` (or the commands described [here](DOCUMENTATION.md#running-the-tezos-adapter)) to **build** and run the local version of the adapter instead of the prebuilt one.
You can follow the container output using `docker logs -f mantichor-tezos-adapter`

## Stopping

Stop the tool using `docker stop mantichor-tezos-adapter && docker rm mantichor-tezos-adapter` or `stop.sh`.

After stopping, use `docker volume rm ...` to remove the volumes belonging to the adapter and to reset the state of the node.

The tezos node is a single sandbox node for now, not connected to either the tezos `alphanet` nor the `mainnet`.

---
For more in-depth information, e.g. on how to change the adapter to use a full alphanet, see this [Documentation](DOCUMENTATION.md).
The adapter's implementation details can be found in the adapter's [Readme](tezos-adapter/README.md).