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
- Host: GitHub
- URL: https://github.com/bptlab/mantichor-tezos
- Owner: bptlab
- Created: 2019-04-30T07:34:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-17T08:10:19.000Z (almost 6 years ago)
- Last Synced: 2025-01-07T19:52:05.752Z (over 1 year ago)
- Language: TypeScript
- Size: 408 KB
- Stars: 4
- Watchers: 7
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
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).