Skip to content

Commit

Permalink
Bump cardano node to 9.1.1 (#90)
Browse files Browse the repository at this point in the history
* Bump cardano node to 9.1.1
Bump dbsync to 15.3.0.2

* Missed one
  • Loading branch information
chrispalaskas committed Sep 23, 2024
1 parent 04f955a commit ebab66d
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions dev/local-environment/setup.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env bash

PARTNER_CHAINS_NODE_IMAGE="ghcr.io/input-output-hk/partner-chains/partner-chains-node:v1.1.1-rc1"
CARDANO_IMAGE="ghcr.io/intersectmbo/cardano-node:9.1.0"
DBSYNC_IMAGE="ghcr.io/intersectmbo/cardano-db-sync:13.3.0.0"
CARDANO_IMAGE="ghcr.io/intersectmbo/cardano-node:9.1.1"
DBSYNC_IMAGE="ghcr.io/intersectmbo/cardano-db-sync:13.5.0.2"
KUPO_IMAGE="cardanosolutions/kupo:v2.9.0"
OGMIOS_IMAGE="cardanosolutions/ogmios:v6.6.0"
POSTGRES_IMAGE="postgres:15.3"
Expand Down
4 changes: 2 additions & 2 deletions docker/sidechain-dependencies/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ volumes:

services:
cardano-node:
image: ghcr.io/intersectmbo/cardano-node:9.1.0
image: ghcr.io/intersectmbo/cardano-node:9.1.1
network_mode: "host"
container_name: sidechains-cardano-node
environment:
Expand Down Expand Up @@ -37,7 +37,7 @@ services:
retries: 5

db-sync:
image: ghcr.io/intersectmbo/cardano-db-sync:13.3.0.0
image: ghcr.io/intersectmbo/cardano-db-sync:13.5.0.2
container_name: sidechains-db-sync
depends_on:
postgres:
Expand Down
6 changes: 3 additions & 3 deletions docs/user-guides/chain-builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Partner Chain builders are organizations that want to build their own blockchain
1. Cardano node v9.1.1
1. Ogmios v6.5.0
2. Kupo - v2.9.0
3. DB Sync v13.3.0.0 (PostgreSQLv15.3)
2. Download the partner chain node v1.0
3. DB Sync v13.5.0.2 (PostgreSQLv15.3)
2. Download the partner chain node v1.1.0
2. Run the generate-keys wizard
3. Run the prepare-configuration wizard
1. Set chain parameters
Expand Down Expand Up @@ -126,7 +126,7 @@ sudo systemctl start kupo.service

Please refer to [Kupo](https://cardanosolutions.github.io/kupo/#section/Overview) for detailed instructions.

### 1.1.3 Cardano DB Sync v13.3.0.0
### 1.1.3 Cardano DB Sync v13.5.0.2

The partner chain needs DB Sync on `cardano-node` to observe Cardano's state.

Expand Down
4 changes: 2 additions & 2 deletions docs/user-guides/permissioned.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Before you begin, some software must be installed.

1. Install dependencies
1. Cardano node v9.1.1
1. DB Sync v13.3.0.0 (PostgreSQL v15.3)
2. Download the partner chain node v1.0
1. DB Sync v13.5.0.2 (PostgreSQL v15.3)
2. Download the partner chain node v1.1.0
3. Run the generate-keys wizard
4. Share keys with the chain builder
5. Obtain the chain configuration and specification files
Expand Down
4 changes: 2 additions & 2 deletions docs/user-guides/registered.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A registered block producer is a Cardano stake pool operator (SPO) that desires
1. Cardano node v9.1.1
1. Ogmios v6.5.0
2. Kupo - v2.9.0
3. Cardano DB Sync v13.3.0.0 (PostgreSQL v15.3)
3. Cardano DB Sync v13.5.0.2 (PostgreSQL v15.3)
2. Download the partner chain node v1.0
3. Run the generate-keys wizard
4. Obtain chain parameters from the chain builder
Expand Down Expand Up @@ -130,7 +130,7 @@ sudo systemctl start kupo.service

Please refer to [Kupo](https://cardanosolutions.github.io/kupo/#section/Overview) for detailed instructions.

### 2.1.3 Cardano DB Sync v13.3.0.0
### 2.1.3 Cardano DB Sync v13.5.0.2

The partner chain needs DB Sync on a `cardano-node` to observe Cardano's state.

Expand Down
4 changes: 2 additions & 2 deletions flake.lock

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

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
flake = false;
};
cardano-node = {
url = "github:IntersectMBO/cardano-node/9.1.0";
url = "github:IntersectMBO/cardano-node/9.1.1";
flake = false;
};
cardano-dbsync = {
url = "github:IntersectMBO/cardano-db-sync/13.3.0.0";
url = "github:IntersectMBO/cardano-db-sync/13.5.0.2";
flake = false;
};
cardano-nix = {
Expand Down
2 changes: 1 addition & 1 deletion nix/shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
pkgs = [
{
name = "cardano-cli";
help = "CLI v9.1.0 that is used in partner-chains dependency stack";
help = "CLI v9.1.1 that is used in partner-chains dependency stack";
# This command has some eval because of IFD
command = "${self'.packages.cardano-cli}/bin/cardano-cli $@";
}
Expand Down

0 comments on commit ebab66d

Please sign in to comment.