Skip to content

Commit 74819bc

Browse files
committed
PLT-5515 Revised videos, renaming marlowe to marlowe-runtime-cli.
1 parent ac81308 commit 74819bc

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

00-preliminaries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
The [demeter.run](https://demeter.run/) web3 development platform provides an extension *Cardano Marlowe Runtime* that has Marlowe tools installed and makes available the Marlowe Runtime backend services and a Cardano node. No setting of environment variables or installation of tools or running of backend services is needed when using Demeter Run's Cardano Marlowe Runtime extension.
44

55
- If you are using this starter kit with the *Cardano Marlowe Runtime* extension for [demeter.run](https://demeter.run/), then visit [00-preliminaries.ipynb](00-preliminaries.ipynb) [📹](https://youtu.be/hGBmj9ZrYHs) to set up wallets.
6-
- If you are **not** using [demeter.run](https://demeter.run/) and need to start your own instance of Marlowe Runtimme, first visit [the docker instructions](docker.md) [📹](https://youtu.be/oRPTe5zbZBU) to set up Marlowe Runtime and then visit [00-preliminaries.ipynb](00-preliminaries.ipynb) [📹](https://youtu.be/hGBmj9ZrYHs) to set up wallets.
6+
- If you are **not** using [demeter.run](https://demeter.run/) and need to start your own instance of Marlowe Runtimme, first visit [the docker instructions](docker.md) [📹](https://youtu.be/wgSvPlWUrf8) to set up Marlowe Runtime and then visit [00-preliminaries.ipynb](00-preliminaries.ipynb) [📹](https://youtu.be/hGBmj9ZrYHs) to set up wallets.

01-runtime-cli.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"\n",
1717
"In this demonsration we use Marlowe Runtime\\'s command-line interface, `marlowe-runtime-cli`, to run this contract on Cardano\\'s `preprod` public testnet. Marlowe contracts may use either addresses or role tokens for authorization: here we use addresses.\n",
1818
"\n",
19-
"[A video works through this Jupyter notebook.](https://youtu.be/dti4QyZcCNk)\n",
19+
"[A video works through this Jupyter notebook.](https://youtu.be/pjDtuD5rimI)\n",
2020
"\n",
2121
"In [Marlowe Playground](https://play.marlowe-finance.io/), the contract looks like this in Blockly format.\n",
2222
"\n",

ReadMe.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
- [Setup](#setup): two alternatives
44
- Use [demeter.run](https://demeter.run/) extension for Marlowe Runtime
5-
- [Deploy Marlowe Runtime locally with docker](docker.md) [📹](https://youtu.be/oRPTe5zbZBU).
5+
- [Deploy Marlowe Runtime locally with docker](docker.md) [📹](https://youtu.be/wgSvPlWUrf8).
66
- [Lessons](#lessons)
77
- [0. Preliminaries](00-preliminaries.md) [📹](https://youtu.be/hGBmj9ZrYHs)
88
- Zero-Coupon Bond (ZCB)
9-
- [1. ZCB using the Marlowe Runtime command-line client](01-runtime-cli.ipynb) [📹](https://youtu.be/dti4QyZcCNk)
9+
- [1. ZCB using the Marlowe Runtime command-line client](01-runtime-cli.ipynb) [📹](https://youtu.be/pjDtuD5rimI)
1010
- [2. ZCB using the Marlowe Runtime REST API](02-runtime-rest.ipynb) [📹](https://youtu.be/wgJVdkM2pBY)
1111
- [3. ZCB using the Marlowe command-line tool](03-marlowe-cli.ipynb) [📹](https://youtu.be/ELc72BKf7ec)
1212
- [4. Escrow using Marlow Runtime REST API](04-escrow-rest.ipynb) [📹](https://youtu.be/E8m-PKbS9TI)
@@ -22,7 +22,7 @@
2222

2323
## Setup
2424

25-
This repository is meant to be used with [demeter.run](https://demeter.run) to execute Marlowe contracts using Marlowe Runtime, or with another similar cloud deployment of Marlowe Runtime. Alternatively, one can [deploy Marlowe Runtime locally with docker](docker.md) [📹](https://youtu.be/oRPTe5zbZBU).
25+
This repository is meant to be used with [demeter.run](https://demeter.run) to execute Marlowe contracts using Marlowe Runtime, or with another similar cloud deployment of Marlowe Runtime. Alternatively, one can [deploy Marlowe Runtime locally with docker](docker.md) [📹](https://youtu.be/wgSvPlWUrf8).
2626

2727
If you are unfamiliar with the Marlowe smart-contract language or with the Cardano blockchain, you may want to familiarize yourself with the following information:
2828

@@ -33,7 +33,7 @@ If you are unfamiliar with the Marlowe smart-contract language or with the Carda
3333
## Lessons
3434

3535
- [Lesson 0. Preliminaries](00-preliminaries.md): This lesson describes how to create and fund the Cardano addresses used in the lessons in this starter kit. [📹](https://youtu.be/hGBmj9ZrYHs)
36-
- [Lesson 1. Marlowe Runtime's Command-Line Interface](01-runtime-cli.ipynb): This lesson shows how to use Marlowe Runtime to execute a zero-coupon bond contract using the command line for a Cardano testnet. [📹](https://youtu.be/dti4QyZcCNk)
36+
- [Lesson 1. Marlowe Runtime's Command-Line Interface](01-runtime-cli.ipynb): This lesson shows how to use Marlowe Runtime to execute a zero-coupon bond contract using the command line for a Cardano testnet. [📹](https://youtu.be/pjDtuD5rimI)
3737
- [Lesson 2. Marlowe Runtime's REST Interface](02-runtime-rest.ipynb): This lesson shows how to use the REST API for Marlowe Runtime to execute a zero-coupon bond contract on a Cardano testnet. [📹](https://youtu.be/wgJVdkM2pBY)
3838
- [Lesson 3. Marlowe CLI](03-marlowe-cli.ipynb): This lesson shows how to use the Marlowe CLI without Marlowe Runtime to execute a zero-coupon bond contract on a Cardano testnet. [📹](https://youtu.be/ELc72BKf7ec)
3939
- [Lesson 4. Escrow](04-escrow-rest.ipynb): This lesson shows how to use the REST API of Marlowe Runtime to execute an escrow contract on a Cardano testnet. [📹](https://youtu.be/E8m-PKbS9TI)

docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This notebook provides instructions on setting up one's environment for running
55
- Environment variables
66
- Deploying Marlowe Runtime
77

8-
A [video of deploying Marlowe Runtime locally using docker compose](https://youtu.be/oRPTe5zbZBU) is available.
8+
A [video of deploying Marlowe Runtime locally using docker compose](https://youtu.be/wgSvPlWUrf8) is available.
99

1010

1111
## Environment Variables

0 commit comments

Comments
 (0)