Skip to content

Commit

Permalink
Merge pull request #49 from OriginTrail/bugfix/code-block-syntax
Browse files Browse the repository at this point in the history
Fix code block syntax
  • Loading branch information
Niks988 committed Apr 16, 2021
2 parents 285768e + ec06e53 commit d4df27c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 30 deletions.
4 changes: 2 additions & 2 deletions source/General/introduction.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.. _introduction:

Company Website: `origintrail.io`_
Company Website: `origintrail.io <https://origintrail.io/>`__

Introduction
============

What is OriginTrail
------------
-------------------

OriginTrail is a purpose-built, open protocol for cross-organizational data sharing in supply chains, supported by blockchain.

Expand Down
56 changes: 28 additions & 28 deletions source/Running-a-Node/updating-from-v4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,18 +67,18 @@ Then apply the following changes:
+------------------------------------+-------------------------------------+
| Before | After |
+====================================+=====================================+
| .. code-block:: |.. code-block:: |
| .. code-block:: json |.. code-block:: json |
| | |
| { | { |
| "blockchain": { | "blockchain": { |
| "rpc_server_url": "...", | "implementations": [ |
| ... | { |
| "...": "..." | { |
| }, | "rpc_server_url": "...", |
| ... | ... |
| "...": "..." | "...": "..." |
| } | } |
| | ] |
| | }, |
| | ... |
| | "...": "..." |
| | } |
| | |
+------------------------------------+-------------------------------------+
Expand All @@ -90,21 +90,21 @@ Then apply the following changes:
+--------------------------------------+----------------------------------------------+
| Before | After |
+======================================+==============================================+
| .. code-block:: |.. code-block:: |
| .. code-block:: json |.. code-block:: json |
| | |
| { | { |
| "blockchain": { | "blockchain": { |
| "rpc_server_url": "...", | "implementations": [ |
| ... | { |
| "...": "..." | { |
| }, | "rpc_server_url": "...", |
| "node_wallet": "0x123...", | "node_wallet": "0x123...", |
| "node_private_key": "481...", | "node_private_key": "481...", |
| "management_wallet": "0xabc...", | "management_wallet": "0xabc...", |
| ... | ... |
| "...": "..." | "...": "..." |
| } | } |
| | ] |
| | }, |
| | ... |
| | "...": "..." |
| | } |
| | |
+--------------------------------------+----------------------------------------------+
Expand All @@ -117,22 +117,22 @@ Then apply the following changes:
+------------------------------------------------+-----------------------------------------------+
| Before | After |
+================================================+===============================================+
| .. code-block:: |.. code-block:: |
| .. code-block:: json |.. code-block:: json |
| | |
| { | { |
| "blockchain": { | "blockchain": { |
| "rpc_server_url": "...", | "implementations": [ |
| ... | { |
| "...": "..." | { |
| }, | "rpc_server_url": "...", |
| "node_wallet": "0x123...", | "node_wallet": "0x123...", |
| "node_private_key": "481...", | "node_private_key": "481...", |
| "management_wallet": "0xabc...", | "management_wallet": "0xabc...", |
| "erc725_identity_filepath": "myid.json", | "identity_filepath": "myid.json", |
| ... | ... |
| "...": "..." | "...": "..." |
| } | } |
| | ] |
| | }, |
| | ... |
| | "...": "..." |
| | } |
| | |
+------------------------------------------------+-----------------------------------------------+
Expand All @@ -144,15 +144,15 @@ Then apply the following changes:
+------------------------------------------------+-----------------------------------------------+
| Before | After |
+================================================+===============================================+
| .. code-block:: |.. code-block:: |
| .. code-block:: json |.. code-block:: json |
| | |
| { | { |
| "network": { | "network": { |
| "id": "MainnetV4.0", | "remoteWhitelist": [...], |
| "remoteWhitelist": [...], | ... |
| ... | }, |
| }, | ... |
| ... | } |
| "id": "MainnetV4.0", | "remoteWhitelist": ["..."], |
| "remoteWhitelist": ["..."], | "...": "..." |
| "...": "..." | }, |
| }, | "...": "..." |
| "...": "..." | } |
| } | |
| | |
| | |
Expand All @@ -164,49 +164,49 @@ Then apply the following changes:
+------------------------------------------------+-----------------------------------------------+
| Before | After (for mainnet) |
+================================================+===============================================+
| .. code-block:: |.. code-block:: |
| .. code-block:: json |.. code-block:: json |
| | |
| { | { |
| "blockchain": { | "blockchain": { |
| "rpc_server_url": "...", | "blockchain_title": "Ethereum", |
| ... | "network_id": "ethr:mainnet", |
| "...": "..." | "network_id": "ethr:mainnet", |
| }, | "implementations": [ |
| "node_wallet": "0x123...", | { |
| "node_private_key": "481...", | "rpc_server_url": "...", |
| "management_wallet": "0xabc...", | "node_wallet": "0x123...", |
| "erc725_identity_filepath": "myid.json", | "node_private_key": "481...", |
| ... | "management_wallet": "0xabc...", |
| "...": "..." | "management_wallet": "0xabc...", |
| } | "identity_filepath": "myid.json", |
| | ... |
| | "...": "..." |
| | } |
| | ] |
| | }, |
| | ... |
| | "...": "..." |
| | } |
| | |
+------------------------------------------------+-----------------------------------------------+

+------------------------------------------------+-----------------------------------------------+
| Before | After (for testnet) |
+================================================+===============================================+
| .. code-block:: |.. code-block:: |
| .. code-block:: json |.. code-block:: json |
| | |
| { | { |
| "blockchain": { | "blockchain": { |
| "rpc_server_url": "...", | "blockchain_title": "Ethereum", |
| ... | "network_id": "ethr:rinkeby:1", |
| "...": "..." | "network_id": "ethr:rinkeby:1", |
| }, | "implementations": [ |
| "node_wallet": "0x123...", | { |
| "node_private_key": "481...", | "rpc_server_url": "...", |
| "management_wallet": "0xabc...", | "node_wallet": "0x123...", |
| "erc725_identity_filepath": "myid.json", | "node_private_key": "481...", |
| ... | "management_wallet": "0xabc...", |
| "...": "..." | "management_wallet": "0xabc...", |
| } | "identity_filepath": "myid.json", |
| | ... |
| | "...": "..." |
| | } |
| | ] |
| | }, |
| | ... |
| | "...": "..." |
| | } |
| | |
+------------------------------------------------+-----------------------------------------------+
Expand Down

0 comments on commit d4df27c

Please sign in to comment.