Skip to content

Commit 5b7653a

Browse files
committed
fix: use new repository address for Cardano node
1 parent 4d97ac5 commit 5b7653a

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/website/root/mithril/advanced/threat-model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The system consists of three main components: signers, aggregators, and clients.
3333

3434
- **Mithril signers** certify Cardano chain data by using a Mithril signing key. They must have access to both a trusted `cardano-node` and the Mithril signing key to operate.
3535
- **Mithril signing keys** are rotated every epoch and require certification by the Cardano KES key. Therefore, Mithril signers must have access to the KES key to register a signing key for each epoch.
36-
- **Cardano KES keys** are also used by the block-producing `cardano-node` and are typically located on the same machine that produces blocks. These keys must be evolved every 36 hours, although they can be rotated from a root key when needed. For more details, see [KES period documentation](https://github.com/input-output-hk/cardano-node-wiki/blob/main/docs/stake-pool-operations/7_KES_period.md).
36+
- **Cardano KES keys** are also used by the block-producing `cardano-node` and are typically located on the same machine that produces blocks. These keys must be evolved every 36 hours, although they can be rotated from a root key when needed. For more details, see [KES period documentation](https://github.com/IntersectMBO/cardano-node-wiki/blob/main/docs/stake-pool-operations/7_KES_period.md).
3737

3838
:::info To do
3939

@@ -118,7 +118,7 @@ For each asset, we first identify which part of the **CIA triad** (Confidentiali
118118
Capturing KES private keys allows an attacker to impersonate a registered SPO on-chain and produce blocks on its behalf until the keys are rotated.
119119

120120
- **Integrity**: Yes
121-
Rotating a compromised KES key is a time-consuming process that can be carried out even if the associated KES period has not fully passed. See [KES period docs](https://github.com/input-output-hk/cardano-node-wiki/blob/main/docs/stake-pool-operations/7_KES_period.md).
121+
Rotating a compromised KES key is a time-consuming process that can be carried out even if the associated KES period has not fully passed. See [KES period docs](https://github.com/IntersectMBO/cardano-node-wiki/blob/main/docs/stake-pool-operations/7_KES_period.md).
122122

123123
- **Availability**: Yes
124124
If the KES key is unavailable, signing cannot proceed.

mithril-aggregator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ FROM debian:13-slim
3636

3737
# Args
3838
ARG CARDANO_NODE_VERSION=11.0.1
39-
ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/$CARDANO_NODE_VERSION/cardano-node-$CARDANO_NODE_VERSION-linux.tar.gz
39+
ARG CARDANO_BIN_URL=https://github.com/IntersectMBO/cardano-node/releases/download/$CARDANO_NODE_VERSION/cardano-node-$CARDANO_NODE_VERSION-linux.tar.gz
4040
ARG EMBED-CARDANO-CLI=0
4141

4242
# Upgrade

mithril-aggregator/Dockerfile.ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN mkdir -p /app/bin
1818

1919
# Install cardano-cli
2020
ARG CARDANO_NODE_VERSION=11.0.1
21-
ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/$CARDANO_NODE_VERSION/cardano-node-$CARDANO_NODE_VERSION-linux.tar.gz
21+
ARG CARDANO_BIN_URL=https://github.com/IntersectMBO/cardano-node/releases/download/$CARDANO_NODE_VERSION/cardano-node-$CARDANO_NODE_VERSION-linux.tar.gz
2222
ARG EMBED-CARDANO-CLI=0
2323
RUN if [ "$EMBED-CARDANO-CLI" = 1 ] && [ "$TARGETARCH" = "amd64" ] ; then \
2424
wget -nv -O cardano-bin.tar.gz $CARDANO_BIN_URL \

mithril-signer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ FROM debian:13-slim
3737

3838
# Args
3939
ARG CARDANO_NODE_VERSION=11.0.1
40-
ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/$CARDANO_NODE_VERSION/cardano-node-$CARDANO_NODE_VERSION-linux.tar.gz
40+
ARG CARDANO_BIN_URL=https://github.com/IntersectMBO/cardano-node/releases/download/$CARDANO_NODE_VERSION/cardano-node-$CARDANO_NODE_VERSION-linux.tar.gz
4141
ARG EMBED-CARDANO-CLI=0
4242

4343
# Upgrade

mithril-signer/Dockerfile.ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN mkdir -p /app/bin
1818

1919
# Install cardano-cli
2020
ARG CARDANO_NODE_VERSION=11.0.1
21-
ARG CARDANO_BIN_URL=https://github.com/input-output-hk/cardano-node/releases/download/$CARDANO_NODE_VERSION/cardano-node-$CARDANO_NODE_VERSION-linux.tar.gz
21+
ARG CARDANO_BIN_URL=https://github.com/IntersectMBO/cardano-node/releases/download/$CARDANO_NODE_VERSION/cardano-node-$CARDANO_NODE_VERSION-linux.tar.gz
2222
ARG EMBED-CARDANO-CLI=0
2323
# Install cardano-cli
2424
RUN if [ "$EMBED-CARDANO-CLI" = 1 ] && [ "$TARGETARCH" = "amd64" ] ; then \

mithril-test-lab/mithril-devnet/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It scaffolds a private compound devnet with Cardano and Mithril nodes:
1111

1212
## Credits
1313

14-
This cli is inspired by this [script](https://github.com/input-output-hk/cardano-node/blob/master/scripts/byron-to-alonzo/mkfiles.sh) from the Cardano node team.
14+
This cli is inspired by this [script](https://github.com/IntersectMBO/cardano-node/blob/master/scripts/byron-to-alonzo/mkfiles.sh) from the Cardano node team.
1515

1616
## Pre-requisites
1717

mithril-test-lab/mithril-devnet/mkfiles/mkfiles-init.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ if [ -z "${CARDANO_NODE_VERSION_RELEASE}" ]; then
3737
fi
3838
if [ -z "${CARDANO_BINARY_URL}" ]; then
3939
if [ "$(version_lt ${CARDANO_NODE_VERSION_RELEASE} 10.6.0)" = "true" ]; then
40-
CARDANO_BINARY_URL="https://github.com/input-output-hk/cardano-node/releases/download/${CARDANO_NODE_VERSION}/cardano-node-${CARDANO_NODE_VERSION_RELEASE}-${OPERATING_SYSTEM}.tar.gz"
40+
CARDANO_BINARY_URL="https://github.com/IntersectMBO/cardano-node/releases/download/${CARDANO_NODE_VERSION}/cardano-node-${CARDANO_NODE_VERSION_RELEASE}-${OPERATING_SYSTEM}.tar.gz"
4141
else
42-
CARDANO_BINARY_URL="https://github.com/input-output-hk/cardano-node/releases/download/${CARDANO_NODE_VERSION}/cardano-node-${CARDANO_NODE_VERSION_RELEASE}-${OPERATING_SYSTEM}-${ARCHITECTURE}.tar.gz"
42+
CARDANO_BINARY_URL="https://github.com/IntersectMBO/cardano-node/releases/download/${CARDANO_NODE_VERSION}/cardano-node-${CARDANO_NODE_VERSION_RELEASE}-${OPERATING_SYSTEM}-${ARCHITECTURE}.tar.gz"
4343
fi
4444
fi
4545
if [ -z "${CARDANO_CLI_ERA}" ]; then

0 commit comments

Comments
 (0)