zips/protocol
Daira Hopwood 1097313feb Fix errors in the Sinsemilla proofs:
* SinsemillaHash is defined in terms of SinsemillaHashToPoint, which also takes the D argument.
* correct errors due to 1-based indexing.
* the argument for exceptional cases got the scalars and range of j wrong.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
2021-04-01 02:11:35 +01:00
..
Makefile
README.rst
blossom.pdf Regenerate PDFs. 2021-03-26 19:45:47 +00:00
canopy.pdf Regenerate PDFs. 2021-03-26 19:45:47 +00:00
heartwood.pdf Regenerate PDFs. 2021-03-26 19:45:47 +00:00
incremental_merkle.odg
incremental_merkle.png
incremental_merkle.svg
jubjub.png
key_components.png
key_components.svg
key_components_orchard.png
key_components_orchard.svg
key_components_sapling.png
key_components_sapling.svg
latexmkrc
mymakeindex.sh
nu5.pdf Regenerate PDFs. 2021-03-26 19:45:47 +00:00
protocol.pdf Regenerate PDFs. 2021-03-26 19:45:47 +00:00
protocol.tex Fix errors in the Sinsemilla proofs: 2021-04-01 02:11:35 +01:00
sapling.pdf Regenerate PDFs. 2021-03-26 19:45:47 +00:00
sprout.pdf
zcash.bib Describe the recommended way to encode a Sapling or unified payment address as a QR code. 2021-03-26 18:23:58 +00:00

README.rst

==============================
 Zcash Protocol Specification
==============================

Build dependencies on Debian-based systems include, at least:

.. code::

   apt-get install texlive texlive-science texlive-fonts-extra \
     texlive-generic-recommended texlive-bibtex-extra biber latexmk perl awk


Building
--------

Use:

* ``make nufour`` to make the draft specification for NU4 (``nufour.pdf``);
* ``make heartwood`` to make the specification for Heartwood (``protocol.pdf``);
* ``make blossom`` to make the specification for the Blossom upgrade
  (``blossom.pdf``);
* ``make sapling`` to make the specification for the Overwinter and
  Sapling upgrades (``sapling.pdf``);
* ``make sprout`` to make a version of the specification that does not
  include Overwinter or Sapling (``sprout.pdf``).

``make all`` is equivalent to ``make nufour heartwood blossom sapling sprout``.

By default these use ``latexmk``. If you have trouble getting ``latexmk`` to
work, you can instead use ``make nolatexmk-sapling``, etc. That is not the
preferred way of building because it may not run ``pdflatex`` enough times.

It is also possible to use the incremental (``-pvc``) mode of ``latexmk`` to
automatically rebuild when changes in the source files are detected, by adding
``EXTRAOPT=-pvc`` to the ``make`` command line. In this case the updated PDF
files will be in the ``aux/`` directory. Manual intervention is still needed
when there are LaTeX errors.


Alternative TeX engines
-----------------------

There is experimental support for building the specification using LuaTeX
or XeTeX; see the comments at the top of the `Makefile`. However, this will
`currently produce poor output <https://github.com/zcash/zips/issues/249>`_.
A warning is included below the Abstract to indicate this.