Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Replace Orion with Tessera (#118) #121

Merged
merged 1 commit into from
Aug 12, 2021
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions docs/Reference/API-Methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ using the [signing key](../Concepts/Overview.md).
EthSigner submits the signed transaction to Besu using [`eea_sendRawTransaction`](https://besu.hyperledger.org/en/stable/Reference/API-Methods/#eea_sendrawtransaction).

!!! note
Besu uses a Transaction Manager to implement privacy. [Orion](http://docs.orion.consensys.net) is
Besu uses a Transaction Manager to implement privacy. [Tessera](http://docs.tessera.consensys.net) is
the Transaction Manager used in this documentation but EthSigner can be used with other Transaction Managers.

EthSigner does not implement signing for [GoQuorum private transactions](https://docs.goquorum.consensys.net/en/latest/Concepts/Privacy/Privacy/).
Expand All @@ -38,8 +38,8 @@ Transaction object for private transactions:
| **gasPrice** | Quantity | Optional | Gas price provided by the sender in Wei. Default is `0`. | |
| **nonce** | Quantity | Optional | Number of transactions sent from the `from` account before this one. | |
| **data** | Quantity | Optional | Compiled contract code or hash of the invoked method signature and encoded parameters. | |
| **privateFrom** | Data, 20 bytes | Required | Orion address of the sender | |
| **privateFor** or **privacyGroupId** | Array of data or data | Required | Orion addresses of recipients or [privacy group ID](https://besu.hyperledger.org/en/stable/Concepts/Privacy/Privacy-Groups/) | |
| **privateFrom** | Data, 20 bytes | Required | Tessera address of the sender | |
| **privateFor** or **privacyGroupId** | Array of data or data | Required | Tessera addresses of recipients or [privacy group ID](https://besu.hyperledger.org/en/stable/Concepts/Privacy/Privacy-Groups/) | |
| **restriction** | String | Required | Must be [`restricted`](https://besu.hyperledger.org/en/stable/Concepts/Privacy/Privacy-Overview/#private-transaction-attributes) | |

!!! tip
Expand Down
4 changes: 2 additions & 2 deletions docs/Tutorials/Multifile.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ This tutorial covers configuring multiple keys using V3 keystore files. To confi

Multi-tenancy is a feature in
[Hyperledger Besu](https://besu.hyperledger.org/en/stable/Concepts/Privacy/Multi-Tenancy/) and
[Orion](https://docs.orion.consensys.net/en/stable/Concepts/Multi-Tenancy/) allowing multiple
participants in a privacy network to use the same Besu and Orion node.
[Tessera](https://docs.tessera.consensys.net/en/stable/HowTo/Migrate/Migration-Multitenancy/) allowing multiple
participants in a privacy network to use the same Besu and Tessera node.

## Prerequisites

Expand Down