Skip to content

Commit

Permalink
Fix sender and issuer field name (#116)
Browse files Browse the repository at this point in the history
* Fix sender and issuer field name

* Fix Sender and Issuer in embedded tables

---------

Co-authored-by: Levente Pap <[email protected]>
  • Loading branch information
Thoralf-M and lzpap authored Jun 13, 2023
1 parent bc23bb5 commit e30ee79
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions tips/TIP-0018/tip-0018.md
Original file line number Diff line number Diff line change
Expand Up @@ -1031,7 +1031,7 @@ transaction validation.
</td>
</tr>
<tr>
<td valign="top">Sender <code>oneOf</code></td>
<td valign="top">Address <code>oneOf</code></td>
<td colspan="2">
<details>
<summary>Ed25519 Address</summary>
Expand Down Expand Up @@ -1146,7 +1146,7 @@ disclose their addresses to prove the authenticity of the NFT once it is in circ
</td>
</tr>
<tr>
<td valign="top">Issuer <code>oneOf</code></td>
<td valign="top">Address <code>oneOf</code></td>
<td colspan="2">
<details>
<summary>Ed25519 Address</summary>
Expand Down Expand Up @@ -1767,7 +1767,7 @@ is deprecated with the replacement of the [TIP-20 Transaction Payload](../TIP-00
</td>
</tr>
<tr>
<td valign="top">Sender <code>oneOf</code></td>
<td valign="top">Address <code>oneOf</code></td>
<td colspan="2">
<details>
<summary>Ed25519 Address</summary>
Expand Down Expand Up @@ -2236,7 +2236,7 @@ state as metadata into the UTXO ledger.
</td>
</tr>
<tr>
<td valign="top">Sender <code>oneOf</code></td>
<td valign="top">Address <code>oneOf</code></td>
<td colspan="2">
<details>
<summary>Ed25519 Address</summary>
Expand Down Expand Up @@ -2362,7 +2362,7 @@ state as metadata into the UTXO ledger.
</td>
</tr>
<tr>
<td valign="top">Issuer <code>oneOf</code></td>
<td valign="top">Address <code>oneOf</code></td>
<td colspan="2">
<details>
<summary>Ed25519 Address</summary>
Expand Down Expand Up @@ -3336,7 +3336,7 @@ sent as a request to smart contract chain accounts.
</td>
</tr>
<tr>
<td valign="top">Sender <code>oneOf</code></td>
<td valign="top">Address <code>oneOf</code></td>
<td colspan="2">
<details>
<summary>Ed25519 Address</summary>
Expand Down Expand Up @@ -3487,7 +3487,7 @@ sent as a request to smart contract chain accounts.
</td>
</tr>
<tr>
<td valign="top">Issuer <code>oneOf</code></td>
<td valign="top">Address <code>oneOf</code></td>
<td colspan="2">
<details>
<summary>Ed25519 Address</summary>
Expand Down
8 changes: 4 additions & 4 deletions tips/TIP-0025/core-rest-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2391,29 +2391,29 @@ components:
type:
type: integer
description: Set to value 0 to denote a Sender Feature.
sender:
address:
oneOf:
- $ref: '#/components/schemas/Ed25519Address'
- $ref: '#/components/schemas/AliasAddress'
- $ref: '#/components/schemas/NFTAddress'
required:
- type
- sender
- address

IssuerFeature:
description: Identifies the validated issuer of the UTXO state machine (alias/NFT).
properties:
type:
type: integer
description: Set to value 1 to denote an Issuer Feature.
issuer:
address:
oneOf:
- $ref: '#/components/schemas/Ed25519Address'
- $ref: '#/components/schemas/AliasAddress'
- $ref: '#/components/schemas/NFTAddress'
required:
- type
- issuer
- address

MetadataFeature:
description: Defines metadata (arbitrary binary data) that will be stored in the output.
Expand Down
8 changes: 4 additions & 4 deletions tips/TIP-0028/event-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -723,29 +723,29 @@ components:
type: integer
description: Set to value 0 to denote a Sender Feature.
example: 0
sender:
address:
oneOf:
- $ref: '#/components/schemas/Ed25519Address'
- $ref: '#/components/schemas/AliasAddress'
- $ref: '#/components/schemas/NFTAddress'
required:
- type
- sender
- address
IssuerFeature:
description: Identifies the validated issuer of the UTXO state machine (alias/NFT).
properties:
type:
type: integer
description: Set to value 1 to denote an Issuer Feature.
example: 1
issuer:
address:
oneOf:
- $ref: '#/components/schemas/Ed25519Address'
- $ref: '#/components/schemas/AliasAddress'
- $ref: '#/components/schemas/NFTAddress'
required:
- type
- issuer
- address
MetadataFeature:
description: >-
Defines metadata (arbitrary binary data) that will be stored in the
Expand Down

0 comments on commit e30ee79

Please sign in to comment.