Important
This Marlowe repository will soon be moved to https://github.com/marlowe-lang. The new repositories will be administered by an independent vehicle, a not-for-profit organization currently being set up by the transition team.
This will allow us to ensure community representation and stewardship. Future developments and support for Marlowe are transitioning to a community-driven model initially led by Simon Thompson, Nicolas Henin and Tomasz Rybarczyk.
See here for details.
Marlowe-Cardano is an implementation of Marlowe for the Cardano blockchain, built on top of Plutus.
This repository contains:
- The Marlowe Runtime and Marlowe Runtime Web
- The implementation of the Marlowe domain-specific language in Haskell.
- Tools for working with Marlowe, including static analysis.
- A selection of examples using Marlowe, including a number based on the ACTUS financial standard.
The main documentation for the whole Plutus ecosystem is located https://plutus.readthedocs.io/en/latest/[here].
An index of key documentation for Marlowe development is located at https://developers.cardano.org/docs/smart-contracts/marlowe/#resources-for-developing-and-deploying-marlowe-contracts.
Issues can be filed in the https://github.com/input-output-hk/marlowe-cardano/issues[GitHub Issue tracker].
However, note that this is pre-release software, so we will not usually be providing support.
See link:CONTRIBUTING{outfilesuffix}[CONTRIBUTING], which describes our processes in more detail including development environments; and link:ARCHITECTURE{outfilesuffix}[ARCHITECTURE], which describes the structure of the repository.
None of our libraries are on Hackage, unfortunately (many of our dependencies aren't either). So for the time being, you need to:
- Add
marlowe
as asource-repository-package
to yourcabal.project
. - Copy the
source-repository-package
stanzas from ourcabal.project
to yours. - Copy additional stanzas from our
cabal.project
as you need, e.g. you may need some of theallow-newer
stanzas.
This section contains information about how to build the project's artifacts for independent usage.
The Haskell libraries in the Marlowe project are built with cabal
and Nix.
The other artifacts (docs etc.) are also most easily built with Nix.
Install https://nixos.org/nix/[Nix] (recommended). following the instructions on the https://nixos.org/nix/[Nix website].
You can build some of the Haskell packages without Nix, but this is not recommended and we don't guarantee that these prerequisites are sufficient.
If you use Nix, these tools are provided for you via nix develop
, and you do not need to install them yourself.
- If you want to build our Haskell packages with https://www.haskell.org/cabal/[`cabal`], then install it.
- If you want to build our Haskell packages with https://haskellstack.org/[`stack`], then install it.
- If you want to build our Agda code, then install https://github.com/agda/agda[Agda] and the https://github.com/agda/agda-stdlib[standard library].
Run nix build .#marlowe-runtime
from the root to build the Marlowe library.
The Haskell packages can be built directly with cabal
.
We do this during development.
The best way is to do this is inside a nix develop
.
Note
For fresh development setups, you also need to run cabal update
.
Run cabal build marlowe
from the root to build the Marlowe library.
See the link:./cabal.project[cabal project file] to see the other packages that you can build with cabal
.
Note
If you get errors about missing shared libraries, try running cabal clean
first.
If that fails you might have a corrupt cabal store, in which case you should rm -rf ~/.cabal/store
and try cabal build all
again.
This repository uses nix to provide the development and build environment.
For instructions on how to install and configure nix (including how to enable access to our binary caches), refer to link:https://github.com/input-output-hk/iogx/blob/main/doc/nix-setup-guide.md.
If you already have nix installed and configured, you may enter the development shell by running nix develop
.
Run list-flake-outputs
while inside the nix develop
shell for a list of all the artifacts you can build from this repository
There is a docker compose
setup designed to give a local developer mode of the marlowe runtime components,
configured in link:./nix/marlowe-cardano/compose.nix[compose.nix
].
Currently, this only supports Linux systems.
On Linux, compose.yaml
will be automatically set up for the user when entering nix develop
.
Running nix run .#re-up
will refresh compose.yaml
if need be and then restart any services which have changed.
Services currently included:
marlowe-chain-sync
:marlowe-chain-sync
for thepreprod
network.marlowe-chain-indexer
:marlowe-chain-indexer
for thepreprod
network.node
: A node for thepreprod
network.postgres
: A postgres instance, for marlowe-chain-sync state.marlowe--sync
:marlowe-sync
for thepreprod
network.marlowe--indexer
:marlowe-indexer
for thepreprod
network.marlowe-tx
: Amarlowe-tx
instance.marlowe-contract
: Amarlowe-contract
instance.marlowe-proxy
: Amarlowe-proxy
instance.web
: Amarlowe-web-server
instance.otel-collector
: A sharedopentelemetry
collector instance for distributed tracing.jaeger
: A trace viewer service.
The following commands may be useful:
docker compose exec postgres /exec/run-sqitch
: Run the sqitch migrations for the chain-sync database.docker compose exec postgres psql -U postgres -d chain
: Run psql in thechain
database.docker compose port
, e.g.docker compose port web 8080
will show the local port that maps to port8080
for theweb
service
The node socket file lives inside a Docker volume. Because it is created by the
container, it is owned by root, and needs elevated permissions (via sudo
) to
use - keep this in mind when using it locally with a tool like cardano-cli
.
To list your Docker volumes, use the command docker volume ls
. The socket
lives in the marlowe-cardano_shared
volume. Use
docker volume inspect marlowe-cardano_shared
to obtain information about the
volume. The Mountpoint
property shows the directory on the host machine that
maps to the volume (one-liner: docker volume inspect marlowe-cardano_shared | jq -r '.[].Mountpoint'
)
To use this with cardano-cli
:
export CARDANO_NODE_SOCKET_PATH=$(docker volume inspect marlowe-cardano_shared | jq -r '.[].Mountpoint')
# -E passes the current environment to sudo
sudo -E cardano-cli ...