From 8acd68b94551994217d25efacff16d0901de2f7f Mon Sep 17 00:00:00 2001 From: Jamie Bertram Date: Tue, 12 Dec 2023 17:26:34 -0500 Subject: [PATCH] Update dependencies to 0.0.6 prod and fix CIP-25 links --- docker-compose.yaml | 16 ++++++++-------- flake.lock | 8 ++++---- flake.nix | 2 +- lessons/09-minting/09-minting.ipynb | 4 ++-- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 7525247..1c14394 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -70,7 +70,7 @@ services: condition: service_healthy postgres: condition: service_healthy - image: ghcr.io/input-output-hk/marlowe-chain-indexer:0.0.6-rc2 + image: ghcr.io/input-output-hk/marlowe-chain-indexer:0.0.6 user: 0:0 restart: unless-stopped volumes: @@ -95,7 +95,7 @@ services: condition: service_started postgres: condition: service_healthy - image: ghcr.io/input-output-hk/marlowe-chain-sync:0.0.6-rc2 + image: ghcr.io/input-output-hk/marlowe-chain-sync:0.0.6 user: 0:0 restart: unless-stopped volumes: @@ -117,7 +117,7 @@ services: condition: service_started postgres: condition: service_healthy - image: ghcr.io/input-output-hk/marlowe-indexer:0.0.6-rc2 + image: ghcr.io/input-output-hk/marlowe-indexer:0.0.6 restart: unless-stopped sync: @@ -139,7 +139,7 @@ services: condition: service_started postgres: condition: service_healthy - image: ghcr.io/input-output-hk/marlowe-sync:0.0.6-rc2 + image: ghcr.io/input-output-hk/marlowe-sync:0.0.6 restart: unless-stopped tx: @@ -156,7 +156,7 @@ services: depends_on: - chain-sync - contract - image: ghcr.io/input-output-hk/marlowe-tx:0.0.6-rc2 + image: ghcr.io/input-output-hk/marlowe-tx:0.0.6 restart: unless-stopped contract: @@ -173,7 +173,7 @@ services: - HTTP_PORT=3787 volumes: - marlowe-contract-store:/store - image: ghcr.io/input-output-hk/marlowe-contract:0.0.6-rc2 + image: ghcr.io/input-output-hk/marlowe-contract:0.0.6 restart: unless-stopped proxy: @@ -197,7 +197,7 @@ services: - sync - tx - contract - image: ghcr.io/input-output-hk/marlowe-proxy:0.0.6-rc2 + image: ghcr.io/input-output-hk/marlowe-proxy:0.0.6 restart: unless-stopped ports: - 3700:3700 @@ -210,7 +210,7 @@ services: - RUNTIME_PORT=3701 depends_on: - proxy - image: ghcr.io/input-output-hk/marlowe-web-server:0.0.6-rc2 + image: ghcr.io/input-output-hk/marlowe-web-server:0.0.6 restart: unless-stopped ports: - 3780:3780 diff --git a/flake.lock b/flake.lock index 2a11d10..de795b0 100644 --- a/flake.lock +++ b/flake.lock @@ -7186,16 +7186,16 @@ "std": "std_6" }, "locked": { - "lastModified": 1701889568, - "narHash": "sha256-auGu3qfecHBHgynM+GnwhkQmY+tD8Icjgh3gZOrbfhs=", + "lastModified": 1701986535, + "narHash": "sha256-OH25pSj5Kh8Osf9c8PTxgGg2lhtCyh8vrR+2Xes/ISI=", "owner": "input-output-hk", "repo": "marlowe-cardano", - "rev": "1a8fb91d09499e9b91a99d4a5434a5521c7ecc36", + "rev": "db25114ec91ccdab3228b99e791fd7232f8625bf", "type": "github" }, "original": { "owner": "input-output-hk", - "ref": "runtime@v0.0.6-rc1", + "ref": "runtime@v0.0.6", "repo": "marlowe-cardano", "type": "github" } diff --git a/flake.nix b/flake.nix index 9575703..bf6cd14 100644 --- a/flake.nix +++ b/flake.nix @@ -34,7 +34,7 @@ type = "github"; owner = "input-output-hk"; repo = "marlowe-cardano"; - ref = "runtime@v0.0.6-rc1"; + ref = "runtime@v0.0.6"; }; cardano-node.follows = "marlowe/cardano-node"; cardano-wallet.url = diff --git a/lessons/09-minting/09-minting.ipynb b/lessons/09-minting/09-minting.ipynb index f79dcc8..078dcf5 100644 --- a/lessons/09-minting/09-minting.ipynb +++ b/lessons/09-minting/09-minting.ipynb @@ -120,7 +120,7 @@ "source": [ "## Design the tokens\n", "\n", - "Now we create [CIP-25](https://cips.cardano.org/cips/cip25/) metadata for the tokens that we will mint. CIP23 metadata has key `721` and consists of the following:\n", + "Now we create [CIP-25](https://cips.cardano.org/cip/CIP-0025/) metadata for the tokens that we will mint. CIP23 metadata has key `721` and consists of the following:\n", "\n", "- JSON describing the token.\n", "- Optionally, links to external resources such as an image for the token.\n", @@ -219,7 +219,7 @@ "- `description` is text describing the token.\n", "- `url` is a URL to find more information related to the token.\n", "\n", - "The [CIP25 standard](https://cips.cardano.org/cips/cip25/#generalstructure) provides information on general structure of the metadata." + "The [CIP25 standard](https://cips.cardano.org/cip/CIP-0025/#generalstructure) provides information on general structure of the metadata." ] }, {