diff --git a/src/content/docs/docs/features/balance-adjustments.mdx b/src/content/docs/docs/features/balance-adjustments.mdx index 542c707..5984d97 100644 --- a/src/content/docs/docs/features/balance-adjustments.mdx +++ b/src/content/docs/docs/features/balance-adjustments.mdx @@ -24,7 +24,7 @@ To opt-out of Balance Adjustments, omit the Issuer field and set Flags to 1. Doi "Account": "", "TransactionType": "ClaimReward", "NetworkID": 21337, - "Flags" 1 + "Flags": 1 } ``` diff --git a/src/content/docs/docs/protocol-reference/transactions/transaction-types/genesismint-emitted-txn.mdx b/src/content/docs/docs/protocol-reference/transactions/transaction-types/genesismint-emitted-txn.mdx index 3889a90..213ef81 100644 --- a/src/content/docs/docs/protocol-reference/transactions/transaction-types/genesismint-emitted-txn.mdx +++ b/src/content/docs/docs/protocol-reference/transactions/transaction-types/genesismint-emitted-txn.mdx @@ -27,21 +27,21 @@ _Added by the \[XahauGenesis amendment]\[] and the \[Hooks amendment]\[]_ ### Fields -| Field | JSON Type | Internal Type | Description | -| ------------ | --------- | ------------- | -------------------------------------------------------------------------------- | -| Account | String | AccountID | The address of the genesis account that will mint and distribute XAH. | -| GenesisMints | Array | Array | An array of objects representing the destinations and amounts of the minted XAH. | +| Field | JSON Type | Internal Type | Description | +| -------------- | --------- | ------------- | -------------------------------------------------------------------------------- | +| `Account` | String | AccountID | The address of the genesis account that will mint and distribute XAH. | +| `GenesisMints` | Array | Array | An array of objects representing the destinations and amounts of the minted XAH. | ### GenesisMint Object The GenesisMint transaction includes an array of objects called `GenesisMints`. Each object represents a destination account and the amount of XAH to be minted and distributed to that account. -| Field | JSON Type | Internal Type | Description | -| --------------- | --------- | ------------- | -------------------------------------------------------------------------- | -| Destination | String | AccountID | The address of the account that will receive the minted XAH. | -| Amount | String | Amount | The amount of XAH to be minted and distributed to the destination account. | -| GovernanceFlags | String | Hash256 | _(Optional)_ The governance flags associated with the destination account. | -| GovernanceMarks | String | Hash256 | _(Optional)_ The governance marks associated with the destination account. | +| Field | JSON Type | Internal Type | Description | +| ----------------- | --------- | ------------- | -------------------------------------------------------------------------- | +| `Destination` | String | AccountID | The address of the account that will receive the minted XAH. | +| `Amount` | String | Amount | The amount of XAH to be minted and distributed to the destination account. | +| `GovernanceFlags` | String | Hash256 | _(Optional)_ The governance flags associated with the destination account. | +| `GovernanceMarks` | String | Hash256 | _(Optional)_ The governance marks associated with the destination account. | ### Special Transaction Cost diff --git a/src/styles/docs.css b/src/styles/docs.css index 3514b49..6bd77d3 100644 --- a/src/styles/docs.css +++ b/src/styles/docs.css @@ -13,6 +13,10 @@ header img { vertical-align: middle; } +table code { + white-space: nowrap; +} + /* Light mode colors. */ :root { --sl-color-accent-low: #c3e0c9;