Skip to content

Commit

Permalink
Merge branch 'staging' into mazzumagpt
Browse files Browse the repository at this point in the history
  • Loading branch information
fill-the-fill authored Mar 12, 2024
2 parents 004b782 + 58776af commit c11e3d0
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 16 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)
4 changes: 2 additions & 2 deletions docs/get-started/installing-cardano-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ git fetch --all --recurse-submodules --tags
Switch the repository to the latest tagged commit:

```bash
git checkout $(curl -s https://api.github.com/repos/input-output-hk/cardano-node/releases/latest | jq -r .tag_name)
git checkout $(curl -s https://api.github.com/repos/IntersectMBO/cardano-node/releases/latest | jq -r .tag_name)
```

:::important
Expand Down Expand Up @@ -449,7 +449,7 @@ git fetch --all --recurse-submodules --tags
Switch the repository to the latest tagged commit:

```bash
git checkout $(curl -s https://api.github.com/repos/input-output-hk/cardano-node/releases/latest | jq -r .tag_name)
git checkout $(curl -s https://api.github.com/repos/IntersectMBO/cardano-node/releases/latest | jq -r .tag_name)
```

:::important
Expand Down
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/native-tokens/authenticated-products.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The process is depicted in here:

:::tip

The process of flashing the NFC chips, which model we are using and some tools will be available here soon.
The process of flashing the NFC chips, which model we are using and some tools are available here: [Cardano Store POC Hoodies](https://github.com/cardano-foundation/cardano-store-poc-hoodies). An NFC reader/writer is required to write information on the chips.

:::

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)
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6795,9 +6795,9 @@ __metadata:
linkType: hard

"ip@npm:^2.0.0":
version: 2.0.0
resolution: "ip@npm:2.0.0"
checksum: cfcfac6b873b701996d71ec82a7dd27ba92450afdb421e356f44044ed688df04567344c36cbacea7d01b1c39a4c732dc012570ebe9bebfb06f27314bca625349
version: 2.0.1
resolution: "ip@npm:2.0.1"
checksum: d765c9fd212b8a99023a4cde6a558a054c298d640fec1020567494d257afd78ca77e37126b1a3ef0e053646ced79a816bf50621d38d5e768cdde0431fa3b0d35
languageName: node
linkType: hard

Expand Down

0 comments on commit c11e3d0

Please sign in to comment.