Fixed the code tag in the table to prevent wrapping

This commit is contained in:
tequ
2025-07-15 13:16:06 +09:00
parent 669f98e45f
commit b87b096cce
2 changed files with 14 additions and 10 deletions

View File

@@ -28,20 +28,20 @@ _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. |
| -------------- | --------- | ------------- | -------------------------------------------------------------------------------- |
| `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. |
| ----------------- | --------- | ------------- | -------------------------------------------------------------------------- |
| `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

View File

@@ -13,6 +13,10 @@ header img {
vertical-align: middle;
}
table code {
white-space: nowrap;
}
/* Light mode colors. */
:root {
--sl-color-accent-low: #c3e0c9;