Skip to content

Commit

Permalink
Update dependencies to 0.0.6 prod and fix CIP-25 links
Browse files Browse the repository at this point in the history
  • Loading branch information
jhbertra committed Dec 12, 2023
1 parent 5739bbf commit 8acd68b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -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
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down
4 changes: 2 additions & 2 deletions lessons/09-minting/09-minting.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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."
]
},
{
Expand Down

0 comments on commit 8acd68b

Please sign in to comment.