Fee Settings
The FeeSettings
object type contains the current base transaction cost and reserve amounts as determined by fee voting. Each ledger version contains at most one FeeSettings
object.
Example JSON
Example FeeSettings
object:
Fields
The FeeSettings
object has the following fields:
Name | JSON Type | [Internal Type][] | Required? | Description |
---|---|---|---|---|
| String | UInt64 | Yes | The transaction cost of the "reference transaction" in drops of XAH as hexadecimal. |
| Number | UInt32 | Yes | A bit-map of boolean flags enabled for this object. Currently, the protocol defines no flags for |
| String | UInt16 | Yes | The value |
| Number | UInt32 | Yes | The |
| Number | UInt32 | Yes | The base reserve for an account in Xahau, as drops of XAH. |
| Number | UInt32 | Yes | The incremental owner reserve for owning objects, as drops of XAH. |
| Number | UInt32 | No | The ledger index where Xahau genesis was activated. |
| Number | UInt32 | No | The number of accounts created on the Xahau network. |
| Number | UInt32 | No | The ID of the network |
Warning: The JSON format for this ledger object type is unusual. The BaseFee
, ReserveBase
, and ReserveIncrement
indicate drops of XAH but not in the usual format for [specifying XAH][Currency Amount].
If the [XAHFees amendment][] is enabled, the FeeSettings
object has these fields instead:
Name | JSON Type | [Internal Type][] | Required? | Description |
---|---|---|---|---|
| String | Amount | Yes | The transaction cost of the "reference transaction" in drops of XAH. |
| Number | UInt32 | Yes | A bitmap of boolean flags enabled for this object. Currently, the protocol defines no flags for |
| String | UInt16 | Yes | The value |
| String | Amount | Yes | The base reserve for an account in the XAH Ledger, as drops of XAH. |
| String | Amount | Yes | The incremental owner reserve for owning objects, as drops of XAH. |
| Number | UInt32 | No | The ledger index where Xahau genesis was activated. |
| Number | UInt32 | No | The number of accounts created on the Xahau network. |
| Number | UInt32 | No |
FeeSettings ID Format
The FeeSettings
object ID is the hash of the FeeSettings
space key (0x0065
) only. This means that the ID of the FeeSettings
object in a ledger is always:
Last updated