mirror of
				https://github.com/Xahau/xahau-web.git
				synced 2025-11-04 04:15:47 +00:00 
			
		
		
		
	Merge pull request #50 from tequdev/fix-table-code
Fixed the code tag in the table to prevent wrapping
This commit is contained in:
		@@ -24,7 +24,7 @@ To opt-out of Balance Adjustments, omit the Issuer field and set Flags to 1. Doi
 | 
			
		||||
    "Account": "<rAddr...>",
 | 
			
		||||
    "TransactionType": "ClaimReward",
 | 
			
		||||
    "NetworkID": 21337,
 | 
			
		||||
    "Flags" 1
 | 
			
		||||
    "Flags": 1
 | 
			
		||||
} 
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -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
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -13,6 +13,10 @@ header img {
 | 
			
		||||
  vertical-align: middle;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
table code {
 | 
			
		||||
  white-space: nowrap;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* Light mode colors. */
 | 
			
		||||
:root {
 | 
			
		||||
  --sl-color-accent-low: #c3e0c9;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user