formatting

This commit is contained in:
callebtc
2023-01-14 20:02:31 +01:00
parent 3b99be52b9
commit 19249aa5ff

View File

@@ -32,8 +32,8 @@ An encrypted ("blinded") secret and an amount sent from `Alice` to `Bob` before
```json ```json
{ {
"amount": int, "amount": int,
"B_": str "B_": str
} }
``` ```
@@ -45,9 +45,9 @@ A signature on the `BlindedMessage` sent from `Bob` to `Alice` after [minting ne
```json ```json
{ {
"amount": int, "amount": int,
"C_": str, "C_": str,
"id": str | None "id": str | None
} }
``` ```
@@ -59,11 +59,11 @@ A `Proof` is also called a `Token` in its serialized form. `Alice` sends the ser
```json ```json
{ {
"amount": int, "amount": int,
"secret": str, "secret": str,
"C": str, "C": str,
"id": None | str, "id": None | str,
"script": P2SHScript | None, "script": P2SHScript | None,
} }
``` ```