-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
components: | ||
schemas: | ||
MPTokenIssuanceDestroyTransaction: | ||
$id: MPTokenIssuanceDestroyTransaction | ||
allOf: | ||
- $ref: '../base.yaml#/components/schemas/BaseTransaction' | ||
type: object | ||
description: | | ||
The MPTokenIssuanceDestroy transaction is used to remove an MPTokenIssuance object from the directory | ||
node in which it is being held, effectively removing the token from the ledger ("destroying" it). | ||
If this operation succeeds, the corresponding MPTokenIssuance is removed and the owner’s reserve | ||
requirement is reduced by one. This operation must fail if there are any holders of the MPT in question. | ||
required: | ||
- MPTokenIssuanceID | ||
properties: | ||
MPTokenIssuanceID: | ||
type: string | ||
format: uint192 | ||
description: | | ||
Identifies the MPTokenIssuance object to be removed by the transaction. |