MaxFeeResponse

public struct MaxFeeResponse : Decodable, Sendable

Represents the distribution of maximum fees that users were willing to pay for transactions in recent ledgers. All values are in stroops (1 stroop = 0.0000001 XLM). See Stellar developer docs

  • max

    The maximum fee users were willing to pay in recent ledgers, in stroops.

    Declaration

    Swift

    public let max: String
  • min

    The minimum fee users were willing to pay in recent ledgers, in stroops.

    Declaration

    Swift

    public let min: String
  • The most common maximum fee users were willing to pay in recent ledgers, in stroops.

    Declaration

    Swift

    public let mode: String
  • p10

    The 10th percentile of maximum fees users were willing to pay, in stroops.

    Declaration

    Swift

    public let p10: String
  • p20

    The 20th percentile of maximum fees users were willing to pay, in stroops.

    Declaration

    Swift

    public let p20: String
  • p30

    The 30th percentile of maximum fees users were willing to pay, in stroops.

    Declaration

    Swift

    public let p30: String
  • p40

    The 40th percentile of maximum fees users were willing to pay, in stroops.

    Declaration

    Swift

    public let p40: String
  • p50

    The 50th percentile (median) of maximum fees users were willing to pay, in stroops.

    Declaration

    Swift

    public let p50: String
  • p60

    The 60th percentile of maximum fees users were willing to pay, in stroops.

    Declaration

    Swift

    public let p60: String
  • p70

    The 70th percentile of maximum fees users were willing to pay, in stroops.

    Declaration

    Swift

    public let p70: String
  • p80

    The 80th percentile of maximum fees users were willing to pay, in stroops.

    Declaration

    Swift

    public let p80: String
  • p90

    The 90th percentile of maximum fees users were willing to pay, in stroops.

    Declaration

    Swift

    public let p90: String
  • p95

    The 95th percentile of maximum fees users were willing to pay, in stroops.

    Declaration

    Swift

    public let p95: String
  • p99

    The 99th percentile of maximum fees users were willing to pay, in stroops.

    Declaration

    Swift

    public let p99: String
  • Declaration

    Swift

    public init(from decoder: Decoder) throws