Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix incorrect metadata info and add cli alternative #20

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions doc/read-the-docs-site/orchestrator-cli/vote.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ and we will be voting ``yes`` on the governance action.

The only missing piece of information we need to prepare is a hash of the
rationale document, for downstream verification of the contents. In accordance
with CIP-100, the way to obtain this hash is by converting the JSONLD document
to `RDF 1.2 canonical N-Quads form <https://www.w3.org/TR/rdf12-n-quads/#canonical-quads>`_
and hashing it. We can use the `jsonld` CLI to help with this:
with CIP-100, the way to obtain this hash is by using the hashing algorithm
specified in the metadata ``"hashAlgorithm": "blake2b-256"``. We can use the CLI
to help with this:

.. code-block:: bash

Expand All @@ -56,6 +56,12 @@ As before, we also need the current output of the hot NFT script:

$ fetch-hot-nft-utxo

Alternatively, you can use a ``cardano-cli`` query for this:

.. code-block:: bash

$ cardano-cli conway query utxo --address $(cat init-hot/nft.addr) --output-json > hot-nft.utxo


Step 2: Creating the assets
---------------------------
Expand Down