-
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
44 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,36 @@ | ||
components: | ||
schemas: | ||
MPTokenIssuanceSetTransaction: | ||
$id: MPTokenIssuanceSetTransaction | ||
allOf: | ||
- $ref: '../base.yaml#/components/schemas/BaseTransaction' | ||
type: object | ||
description: | | ||
Use this transaction to update a mutable property for a Multi-purpose Token. | ||
required: | ||
- MPTokenIssuanceID | ||
properties: | ||
MPTokenIssuanceID: | ||
type: string | ||
format: uint192 | ||
description: | | ||
The MPTokenIssuance identifier. | ||
Holder: | ||
type: string | ||
description: | | ||
(Optional) XRPL Address of an individual token holder balance to lock/unlock. If omitted, this | ||
transaction applies to all any accounts holding MPTs. | ||
x-custom-validation: | ||
flagConflict: | ||
- flag1: tfMPTLock | ||
flag2: tfMPTUnlock | ||
MPTokenIssuanceSetFlag: | ||
$id: MPTokenIssuanceSetFlag | ||
type: string | ||
enum: | ||
- tfMPTLock: 0x00000001 | ||
- tfMPTUnlock: 0x00000002 | ||
description: Enum representing flags for MPTokenIssuanceSet transactions. | ||
x-enum-descriptions: | ||
tfMPTLock: If set, indicates that all MPT balances for this asset should be locked. | ||
tfMPTUnlock: If set, indicates that all MPT balances for this asset should be unlocked. |