Skip to content

Commit

Permalink
adding contracts page
Browse files Browse the repository at this point in the history
  • Loading branch information
cl-tim committed Dec 30, 2021
1 parent 563b0a5 commit fad8b4a
Show file tree
Hide file tree
Showing 11 changed files with 123 additions and 57 deletions.
7 changes: 7 additions & 0 deletions docs/source/chains.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Chains
=====

.. autosummary::
:toctree: generated

lumache
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

# -- Project information

project = 'Lumache'
copyright = '2021, Graziella'
author = 'Graziella'
project = 'Signata'
copyright = '2021, Congruent Labs'
author = 'Congruent Labs'

release = '0.1'
version = '0.1.0'
Expand Down
81 changes: 81 additions & 0 deletions docs/source/contracts.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
Contracts
=========

.. autosummary::
:toctree: generated

Ethereum
--------

+-------------------+------------------------------------------------+
| | Address |
+===================+================================================+
| SATA Token | ``0x3ebb4A4e91Ad83BE51F8d596533818b246F4bEe1`` |
+-------------------+------------------------------------------------+
| SignataIdentity | ``0x6B47e26A52a9B5B467b98142E382c081eA97B0fc`` |
+-------------------+------------------------------------------------+
| SignataRight | ``0x7c8890a02abd24ff00c4eb1425258ea4b611d300`` |
+-------------------+------------------------------------------------+
| Veriswap | ``TBC`` |
+-------------------+------------------------------------------------+
| Deployer | ``0x042fc4ea3f836e1ea5dc4fb70ec90ded51c09eca`` |
+-------------------+------------------------------------------------+
| Token Vault | ``0xc77aab3c6d7dab46248f3cc3033c856171878bd5`` |
+-------------------+------------------------------------------------+

Binance Smart Chain
-------------------

+-------------------+------------------------------------------------+
| | Address |
+===================+================================================+
| SATA Token | ``0x6b1C8765C7EFf0b60706b0ae489EB9bb9667465A`` |
+-------------------+------------------------------------------------+
| SignataIdentity | ``0x2EE533c160eB0488f2Db54DA4523b110E66a96Ff`` |
+-------------------+------------------------------------------------+
| SignataRight | ``0x55E9B159FF6E6cD9188Cc4394db3EC944d467B0d`` |
+-------------------+------------------------------------------------+
| Veriswap | ``TBC`` |
+-------------------+------------------------------------------------+
| Deployer | ``0xEAD57fE351280E7D905a5E21e9fd7d5bb0Ec97e7`` |
+-------------------+------------------------------------------------+
| Liquidity Vault | ``0x50e63fe25e8cf75c948a1ba26021ea0883cdc5b3`` |
+-------------------+------------------------------------------------+

Avalanche C-Chain
-------------------

+-------------------+------------------------------------------------+
| | Address |
+===================+================================================+
| SATA Token | ``TBC`` |
+-------------------+------------------------------------------------+
| SignataIdentity | ``TBC`` |
+-------------------+------------------------------------------------+
| SignataRight | ``TBC`` |
+-------------------+------------------------------------------------+
| Veriswap | ``TBC`` |
+-------------------+------------------------------------------------+
| Deployer | ``TBC`` |
+-------------------+------------------------------------------------+
| Liquidity Vault | ``TBC`` |
+-------------------+------------------------------------------------+

LGCY Network
-------------------

+-------------------+------------------------------------------------+
| | Address |
+===================+================================================+
| SATA Token | ``TBC`` |
+-------------------+------------------------------------------------+
| SignataIdentity | ``TBC`` |
+-------------------+------------------------------------------------+
| SignataRight | ``TBC`` |
+-------------------+------------------------------------------------+
| Veriswap | ``TBC`` |
+-------------------+------------------------------------------------+
| Deployer | ``TBC`` |
+-------------------+------------------------------------------------+
| Liquidity Vault | ``TBC`` |
+-------------------+------------------------------------------------+
4 changes: 2 additions & 2 deletions docs/source/api.rst → docs/source/dao.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
API
===
DAO
=====

.. autosummary::
:toctree: generated
Expand Down
7 changes: 7 additions & 0 deletions docs/source/identity.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Identity
=====

.. autosummary::
:toctree: generated

lumache
14 changes: 7 additions & 7 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ This documentation will provide

See :doc:`contracts` for smart contract addresses.

See :ref:`identity` for details on how identity lifecycle is managed.
See :doc:`identity` for details on how identity lifecycle is managed on the chain.

See :ref:`integrations` for implementation details on integrations with the Signata platform.
See :doc:`integrations` for implementation details on integrations with the Signata platform.

See :ref:`DAO` for details on governance for the project.
See :doc:`dao` for details on governance for the project.

See :ref:`chains` for implementation-specific differences between blockchains that Signata is deployed on.
See :doc:`chains` for implementation-specific differences between blockchains that Signata is deployed on.

See :ref:`risk` for information on the Risk Oracle solution.
See :doc:`risk` for information on the Risk Oracle solution.

.. note::

Expand All @@ -26,9 +26,9 @@ Contents

.. toctree::

chains
contracts
dao
identity
integrations
DAO
chains
risk
7 changes: 7 additions & 0 deletions docs/source/integrations.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Integrations
=====

.. autosummary::
:toctree: generated

lumache
7 changes: 7 additions & 0 deletions docs/source/risk.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Risk
=====

.. autosummary::
:toctree: generated

lumache
20 changes: 0 additions & 20 deletions docs/source/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,3 @@ To use Lumache, first install it using pip:
(.venv) $ pip install lumache
Creating recipes
----------------

To retrieve a list of random ingredients,
you can use the ``lumache.get_random_ingredients()`` function:

.. autofunction:: lumache.get_random_ingredients

The ``kind`` parameter should be either ``"meat"``, ``"fish"``,
or ``"veggies"``. Otherwise, :py:func:`lumache.get_random_ingredients`
will raise an exception.

.. autoexception:: lumache.InvalidKindError

For example:

>>> import lumache
>>> lumache.get_random_ingredients()
['shells', 'gorgonzola', 'parsley']

23 changes: 0 additions & 23 deletions lumache.py

This file was deleted.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "lumache"
authors = [{name = "Graziella", email = "graziella@lumache"}]
name = "signata-docs"
authors = [{name = "Congruent Labs", email = "sales@congruentlabs.co"}]
dynamic = ["version", "description"]

0 comments on commit fad8b4a

Please sign in to comment.