You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/references/protocol/transactions/types/mptokenauthorize.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ This transaction enables an account to hold an amount of a particular MPT issuan
15
15
16
16
If the issuer has set `lsfMPTRequireAuth` (allow-listing) on the `MPTokenIssuance`, the issuer must submit an `MPTokenAuthorize` transaction as well in order to give permission to the holder. If `lsfMPTRequireAuth` is not set and the issuer attempts to submit this transaction, it will fail.
Copy file name to clipboardExpand all lines: docs/references/protocol/transactions/types/mptokenissuancecreate.md
+6-7Lines changed: 6 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ labels:
11
11
12
12
_(Requires the [MPToken amendment][] {% not-enabled /%})_
13
13
14
-
The `MPTokenIssuanceCreate` transaction creates an MPTokenIssuance <!--[MPTokenIssuance](mptokenissuance.html)--> object and adds it to the relevant directory node of the creator account. This transaction is the only opportunity an issuer has to specify any token fields that are defined as immutable (for example, MPT Flags).
14
+
The `MPTokenIssuanceCreate` transaction creates an [MPTokenIssuance](../../data-types/mptokenissuance.md) object and adds it to the relevant directory node of the creator account. This transaction is the only opportunity an issuer has to specify any token fields that are defined as immutable (for example, MPT Flags).
15
15
16
16
If the transaction is successful, the newly created token is owned by the account (the creator account) that executed the transaction.
17
17
@@ -22,22 +22,21 @@ Whenever your query returns an `MPTokenIssuance` transaction response, there wil
22
22
This example assumes that the issuer of the token is the signer of the transaction.
23
23
24
24
```json
25
-
Example MPTokenIssuanceCreate transaction
26
25
{
27
26
"TransactionType": "MPTokenIssuanceCreate",
28
27
"Account": "rajgkBmMxmz161r8bWYH7CQAFZP5bA9oSG",
29
-
"AssetScale": "2",
28
+
"AssetScale": 2,
30
29
"TransferFee": 314,
31
30
"MaximumAmount": "50000000",
32
31
"Flags": 83659,
33
32
"MPTokenMetadata": "FOO",
34
-
"Fee": 10
33
+
"Fee": "10"
35
34
}
36
35
```
37
36
38
-
## MPTokenIssuanceCreate Fields
37
+
<!--## MPTokenIssuanceCreate Fields-->
39
38
40
-
<!--{% include '_snippets/tx-fields-intro.md' %} -->
@@ -50,7 +49,7 @@ Example MPTokenIssuanceCreate transaction
50
49
51
50
## MPTokenIssuanceCreate Flags
52
51
53
-
Transactions of the MPTokenIssuanceCreate type support additional values in the `Flags` field <!--[`Flags` field](transaction-common-fields.html#flags-field)-->, as follows:
52
+
Transactions of the MPTokenIssuanceCreate type support additional values in the [`Flags` field](../common-fields.md#flags-field), as follows:
54
53
55
54
| Flag Name | Hex Value | Decimal Value | Description |
0 commit comments