Skip to content

Commit

Permalink
Merge branch 'staging' into dependabot/npm_and_yarn/ip-2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlrt authored Mar 1, 2024
2 parents ebdd5a4 + 012b3cd commit 3e8e766
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/get-started/cardanosharp-wallet.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/create-simple-transaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
- [Cardano-node documentation](https://github.com/input-output-hk/cardano-node-wiki/wiki/building-and-signing-tx)
2 changes: 2 additions & 0 deletions docs/governance/project-catalyst.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/operate-a-stake-pool/block-producer-keys.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/operate-a-stake-pool/generating-wallet-keys.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions docs/operate-a-stake-pool/node-installation-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)

2 changes: 1 addition & 1 deletion docs/operate-a-stake-pool/on-chain-polls.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 3e8e766

Please sign in to comment.