From c125bda61d7c86fe7330eaa88dd7b36dc0006cae Mon Sep 17 00:00:00 2001 From: Nicolas Cerny <61423239+thenic95@users.noreply.github.com> Date: Fri, 1 Mar 2024 08:51:22 +0100 Subject: [PATCH 1/3] Add Project Catalyst Voting Results for F10 & F11 (#1219) --- docs/governance/project-catalyst.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/governance/project-catalyst.md b/docs/governance/project-catalyst.md index 312de37b0c..a31713d270 100644 --- a/docs/governance/project-catalyst.md +++ b/docs/governance/project-catalyst.md @@ -41,6 +41,8 @@ Download the Catalyst voting app in the [Apple Store](https://apps.apple.com/kg/ ## Previous Project Catalyst voting results +* [Project Catalyst Fund 11 Voting Results](https://projectcatalyst.io/funds/11/voting-results) +* [Project Catalyst Fund 10 Voting Results](https://projectcatalyst.io/fund10-voting-results.pdf) * [Project Catalyst Fund 9 Voting Results](https://drive.google.com/file/d/1HiI0fgiJWbirl2QEGNwiUbKLSQXqdxdv/view) * [Project Catalyst Fund 8 Voting Results](https://drive.google.com/file/d/1s3jCE7pmoUujy3ASMia-UhFl2KLi_hnf/view) * [Project Catalyst Fund 7 Voting Results](https://drive.google.com/file/d/193GZulHuk0zhpTrMiLhcNC4OeEMoRyIa/view) From 467864918330904b721ae2b3660cd17ddd35d41b Mon Sep 17 00:00:00 2001 From: Sorki Date: Fri, 1 Mar 2024 07:51:47 +0000 Subject: [PATCH 2/3] Operate stake pool Script bugfixes (#1218) * fix stray space in variable assignment * fix wrong './keys/' prefix --------- Co-authored-by: Robert Phair --- docs/operate-a-stake-pool/block-producer-keys.md | 2 +- docs/operate-a-stake-pool/generating-wallet-keys.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/operate-a-stake-pool/block-producer-keys.md b/docs/operate-a-stake-pool/block-producer-keys.md index 7e8acfbe20..3238823ad9 100644 --- a/docs/operate-a-stake-pool/block-producer-keys.md +++ b/docs/operate-a-stake-pool/block-producer-keys.md @@ -73,7 +73,7 @@ Find `kesPeriod` by dividing the slot tip number by `slotsPerKESPeriod`. ``` kesPeriod=$((${slotNo} / ${slotsPerKESPeriod})) echo kesPeriod: ${kesPeriod} -startKesPeriod= ${kesPeriod} +startKesPeriod=${kesPeriod} echo startKesPeriod: ${startKesPeriod} ``` diff --git a/docs/operate-a-stake-pool/generating-wallet-keys.md b/docs/operate-a-stake-pool/generating-wallet-keys.md index 709ff534f4..64426fcf8f 100644 --- a/docs/operate-a-stake-pool/generating-wallet-keys.md +++ b/docs/operate-a-stake-pool/generating-wallet-keys.md @@ -26,8 +26,8 @@ Create a new payment key pair: `payment.skey` & `payment.vkey` ``` cardano-cli address key-gen \ - --verification-key-file ./keys/payment.vkey \ - --signing-key-file ./keys/payment.skey + --verification-key-file payment.vkey \ + --signing-key-file payment.skey ``` - `cardano-cli address key-gen`: generates a payment key-pair. From 012b3cd5cf1b727a28f5d6f5c8211df45777cf29 Mon Sep 17 00:00:00 2001 From: Sorki Date: Fri, 1 Mar 2024 07:52:07 +0000 Subject: [PATCH 3/3] Point cardano-node docs to cardano-node-wiki (#1217) The docs were moved to another repository, correcting links to point to rendered wiki. --- docs/get-started/cardanosharp-wallet.md | 4 ++-- docs/get-started/create-simple-transaction.md | 2 +- docs/operate-a-stake-pool/node-installation-process.md | 6 +++--- docs/operate-a-stake-pool/on-chain-polls.md | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/get-started/cardanosharp-wallet.md b/docs/get-started/cardanosharp-wallet.md index 711edcc77d..6070f72cae 100644 --- a/docs/get-started/cardanosharp-wallet.md +++ b/docs/get-started/cardanosharp-wallet.md @@ -224,7 +224,7 @@ transaction.TransactionBody.TransactionOutputs.Last().Value.Coin -= fee; Building the Body and Witnesses are the same as the Simple Transaction. -> If you would like to read more about Metadata, please read this article on [Tx Metadata](https://github.com/input-output-hk/cardano-node/blob/master/doc/reference/tx-metadata.md) +> If you would like to read more about Metadata, please read this article on [Tx Metadata](https://github.com/input-output-hk/cardano-node-wiki/wiki/tx-metadata) ```cs // Build Metadata and Add to Transaction @@ -242,7 +242,7 @@ var transaction = TransactionBuilder.Create Before we can mint a token, we need to create a policy. -> If you would like to read more about policy scripts, please read this article on [Simple Scripts](https://github.com/input-output-hk/cardano-node/blob/master/doc/reference/simple-scripts.md). +> If you would like to read more about policy scripts, please read this article on [Simple Scripts](https://github.com/input-output-hk/cardano-node-wiki/wiki/simple-scripts). ```cs // Generate a Key Pair for your new Policy diff --git a/docs/get-started/create-simple-transaction.md b/docs/get-started/create-simple-transaction.md index 4b2c673916..4051bfc0b6 100644 --- a/docs/get-started/create-simple-transaction.md +++ b/docs/get-started/create-simple-transaction.md @@ -169,4 +169,4 @@ cardano-cli query utxo \ :::note ## References -- [Cardano-node documentation](https://github.com/input-output-hk/cardano-node/blob/master/doc/reference/building-and-signing-tx.md) \ No newline at end of file +- [Cardano-node documentation](https://github.com/input-output-hk/cardano-node-wiki/wiki/building-and-signing-tx) diff --git a/docs/operate-a-stake-pool/node-installation-process.md b/docs/operate-a-stake-pool/node-installation-process.md index 037ec5f5a8..442d5adde1 100644 --- a/docs/operate-a-stake-pool/node-installation-process.md +++ b/docs/operate-a-stake-pool/node-installation-process.md @@ -10,7 +10,7 @@ The Cardano node is the core component that underpins the Cardano network. Ultim In this section, we will walk you through the process of downloading, compiling, and installing `cardano-node` and `cardano-cli` into your **Linux-based** operating system. :::note -Refer to the official document [Installing the node from source](https://github.com/input-output-hk/cardano-node/blob/master/doc/getting-started/install.md) in case of difficulties. +Refer to the official document [Installing the node from source](https://github.com/input-output-hk/cardano-node-wiki/wiki/install) in case of difficulties. ::: ## Installing Operating System dependencies @@ -242,6 +242,6 @@ cardano-node --version Congratulations, you have successfully installed Cardano components into your Linux system! 🎉🎉🎉 ## References -- [Building cardano-node from source with cabal](https://github.com/input-output-hk/cardano-node/blob/master/doc/getting-started/install.md) -- [Building cardano-node from source with Nix](https://github.com/input-output-hk/cardano-node/blob/master/doc/getting-started/building-the-node-using-nix.md) +- [Building cardano-node from source with cabal](https://github.com/input-output-hk/cardano-node-wiki/wiki/install) +- [Building cardano-node from source with Nix](https://github.com/input-output-hk/cardano-node-wiki/wiki/building-the-node-using-nix) diff --git a/docs/operate-a-stake-pool/on-chain-polls.md b/docs/operate-a-stake-pool/on-chain-polls.md index 9238c05999..ee9b1c6f47 100644 --- a/docs/operate-a-stake-pool/on-chain-polls.md +++ b/docs/operate-a-stake-pool/on-chain-polls.md @@ -149,4 +149,4 @@ Alternatively, the command will identify a problem with the answer and/or poll. ## References - [Entering Voltaire: on-chain poll for SPOs](https://forum.cardano.org/t/entering-voltaire-on-chain-poll-for-spos/117330?u=adatainment) - [Cardano Node 8.0.0 release](https://github.com/input-output-hk/cardano-node/releases/tag/8.0.0) -- [Cardano Node documentation: Governance](https://github.com/input-output-hk/cardano-node/blob/master/doc/reference/cardano-governance.md) +- [Cardano Node documentation: Governance](https://github.com/input-output-hk/cardano-node-wiki/wiki/cardano-governance)