Tessera 0.10.5 (#977)

This commit is contained in:
Krish1979 2020-04-30 17:29:16 +01:00 committed by GitHub
parent b4e2199ca1
commit c04d1c8b10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View File

@ -90,7 +90,6 @@ The possible server types are:
- `Q2T` - This server is used for communications between Tessera and its corresponding Quorum node
- `ENCLAVE` - If using a remote enclave, this defines the connection details for the remote enclave server (see the [Enclave docs](../../Tessera%20Services/Enclave#types-of-enclave) for more info)
- `ThirdParty` - This server is used to expose certain Transaction Manager functionality to external services such as Quorum.js
- `ADMIN` - This server is used for configuration management. It is intended for use by the administrator of the Tessera node and is not recommended to be advertised publicly
The servers to be started are provided as a list:
```

View File

@ -61,7 +61,10 @@ The following endpoints are advertised on this interface:
- `/send`
- `/receiveraw`
- `/receive`
- `/storeraw`
- `/sendsignedtx`
- `/transaction/{key}/isSender`
- `/transaction/{key}/participants`
### Admin API
@ -129,4 +132,12 @@ The following endpoints are advertised on this API:
- Delete hashed encrypted payload stored in Tessera nodes.
**`/transaction/{key}/isSender`** - _Determine if a node is the sender_
- Tell if the local enclave is the sender of a particular transaction (by checking if the sender public key is part of the nodes enclave)
**`/transaction/{key}/participants`** - _Retrieve participants_
- Retrieve transaction participants directly from the database (a recipient will have no participants)
For more interactions with the API see the [Swagger documentation](https://jpmorganchase.github.io/tessera-swagger/index.html).