diff --git a/_code-samples/mpt-generator/mpt-generator.htm b/_code-samples/mpt-generator/mpt-generator.htm index 147f65adba..36b5090db5 100644 --- a/_code-samples/mpt-generator/mpt-generator.htm +++ b/_code-samples/mpt-generator/mpt-generator.htm @@ -42,7 +42,7 @@ - + @@ -86,7 +86,7 @@ - + Asset Scale @@ -120,7 +120,7 @@ - Clawback + Allow Clawback @@ -132,8 +132,8 @@ - - Lock + + Allow Lock diff --git a/docs/img/uc-mpt1-mpt-generator-empty-form.png b/docs/img/uc-mpt1-mpt-generator-empty-form.png index ed779feb3d..23a798576c 100644 Binary files a/docs/img/uc-mpt1-mpt-generator-empty-form.png and b/docs/img/uc-mpt1-mpt-generator-empty-form.png differ diff --git a/docs/img/uc-mpt1-t-bill-account-configuration.png b/docs/img/uc-mpt1-t-bill-account-configuration.png index 32e5889549..eae66e8e3f 100644 Binary files a/docs/img/uc-mpt1-t-bill-account-configuration.png and b/docs/img/uc-mpt1-t-bill-account-configuration.png differ diff --git a/docs/img/uc-mpt1-t-bill-create-success.png b/docs/img/uc-mpt1-t-bill-create-success.png index 20a9b6d766..098b93ee96 100644 Binary files a/docs/img/uc-mpt1-t-bill-create-success.png and b/docs/img/uc-mpt1-t-bill-create-success.png differ diff --git a/docs/img/uc-mpt1-t-bill-gather-mpt-info.png b/docs/img/uc-mpt1-t-bill-gather-mpt-info.png index 3a19c78605..df9f3c5646 100644 Binary files a/docs/img/uc-mpt1-t-bill-gather-mpt-info.png and b/docs/img/uc-mpt1-t-bill-gather-mpt-info.png differ diff --git a/docs/img/uc-mpt1-t-bill-in-explorer.png b/docs/img/uc-mpt1-t-bill-in-explorer.png index 150ee74158..0695bcabc8 100644 Binary files a/docs/img/uc-mpt1-t-bill-in-explorer.png and b/docs/img/uc-mpt1-t-bill-in-explorer.png differ diff --git a/docs/img/uc-mpt1-t-bill-mpt-generator-generate-code.png b/docs/img/uc-mpt1-t-bill-mpt-generator-generate-code.png index fa80fc063b..203efe1fb3 100644 Binary files a/docs/img/uc-mpt1-t-bill-mpt-generator-generate-code.png and b/docs/img/uc-mpt1-t-bill-mpt-generator-generate-code.png differ diff --git a/docs/img/uc-mpt1-t-bill-mpt-generator.png b/docs/img/uc-mpt1-t-bill-mpt-generator.png index 9bd127265c..af275d1089 100644 Binary files a/docs/img/uc-mpt1-t-bill-mpt-generator.png and b/docs/img/uc-mpt1-t-bill-mpt-generator.png differ diff --git a/docs/references/protocol/transactions/types/mptokenissuancecreate.md b/docs/references/protocol/transactions/types/mptokenissuancecreate.md index 56ddb9ef70..513abe9101 100644 --- a/docs/references/protocol/transactions/types/mptokenissuancecreate.md +++ b/docs/references/protocol/transactions/types/mptokenissuancecreate.md @@ -41,7 +41,7 @@ This example assumes that the issuer of the token is the signer of the transacti | Field | JSON Type | [Internal Type][] | Description | |:----------------|:--------------------|:------------------|:-------------------| | `TransactionType` | string | UInt16 | Indicates the new transaction type MPTokenIssuanceCreate. | -| `AssetScale` | number | UInt8 | (Optional) An asset scale is the difference, in orders of magnitude, between a standard unit and a corresponding fractional unit. More formally, the asset scale is a non-negative integer (0, 1, 2, …) such that one standard unit equals 10^(-scale) of a corresponding fractional unit. If the fractional unit equals the standard unit, then the asset scale is 0. Note that this value is optional, and will default to 0 if not supplied. | +| `AssetScale` | number | UInt8 | (Optional) An asset scale is the difference, in orders of magnitude, between a standard unit and a corresponding fractional unit. More formally, the asset scale is a non-negative integer (0, 1, 2, …) such that one standard unit equals 10^(-scale) of a corresponding fractional unit. For example, a US Dollar Stablecoin will likely have an asset scale of _2_, representing 2 points of precision; 1 unit of this MPToken would equal 0.01 US Dollars. If the fractional unit equals the standard unit, then the asset scale is 0. Note that this value is optional, and will default to 0 if not supplied. | | `Flags` | number | UInt16 | Specifies the flags for this transaction. See [MPTokenIssuanceCreate Flags](#mptokenissuancecreate-flags). | | `TransferFee` | number | UInt16 | (Optional) The value specifies the fee to charged by the issuer for secondary sales of the Token, if such sales are allowed. Valid values for this field are between 0 and 50,000 inclusive, allowing transfer rates of between 0.000% and 50.000% in increments of 0.001. The field _must not_ be present if the tfMPTCanTransfer flag is not set. If it is, the transaction should fail and a fee should be claimed. | | `MaximumAmount` | string | UInt64 | (Optional) The maximum asset amount of this token that can ever be issued, as a base-10 number encoded as a string. The current default maximum limit is 9,223,372,036,854,775,807 (2^63-1). _This limit may increase in the future. If an upper limit is required, you must specify this field._ | diff --git a/docs/use-cases/tokenization/creating-an-asset-backed-multi-purpose-token.md b/docs/use-cases/tokenization/creating-an-asset-backed-multi-purpose-token.md index b5c0972b54..f81f48ac41 100644 --- a/docs/use-cases/tokenization/creating-an-asset-backed-multi-purpose-token.md +++ b/docs/use-cases/tokenization/creating-an-asset-backed-multi-purpose-token.md @@ -357,6 +357,8 @@ const transactionJson = { A US Treasury bill (T-bill) is a short-term debt security issued by the US government. T-bills are considered a safe investment because they're backed by the US government. T-bills are appealing to investors in American states that have high income tax because the interest earned is exempt from state and local taxes. See [Treasury Bills In Depth](https://www.treasurydirect.gov/research-center/history-of-marketable-securities/bills/t-bills-indepth/). + + ### Creating an Issuing Account You can use the Account Configurator to experiment with the settings for a T-bill issuing account in a sandbox environment. When you are satisfied with your configuration, you can create an account on XRPL Mainnet to begin trading. @@ -452,4 +454,8 @@ Click **Gather MPT Information** to copy the account information and MPT Issuanc ![Account and MPT ID in the result field.](../../img/uc-mpt1-t-bill-gather-mpt-info.png) +## See Also: + +- [Sending MPTs](../../tutorials/javascript/send-payments/sending-mpts.md) + {% raw-partial file="/docs/_snippets/common-links.md" /%} \ No newline at end of file