FeeChargedResponse

public struct FeeChargedResponse : Decodable, Sendable

Represents the distribution of fees actually charged for transactions in recent ledgers. All values are in stroops (1 stroop = 0.0000001 XLM). See Stellar developer docs

  • max

    The maximum fee charged in recent ledgers, in stroops.

    Declaration

    Swift

    public let max: String
  • min

    The minimum fee charged in recent ledgers, in stroops.

    Declaration

    Swift

    public let min: String
  • The most common fee charged in recent ledgers, in stroops.

    Declaration

    Swift

    public let mode: String
  • p10

    The 10th percentile fee charged, in stroops.

    Declaration

    Swift

    public let p10: String
  • p20

    The 20th percentile fee charged, in stroops.

    Declaration

    Swift

    public let p20: String
  • p30

    The 30th percentile fee charged, in stroops.

    Declaration

    Swift

    public let p30: String
  • p40

    The 40th percentile fee charged, in stroops.

    Declaration

    Swift

    public let p40: String
  • p50

    The 50th percentile (median) fee charged, in stroops.

    Declaration

    Swift

    public let p50: String
  • p60

    The 60th percentile fee charged, in stroops.

    Declaration

    Swift

    public let p60: String
  • p70

    The 70th percentile fee charged, in stroops.

    Declaration

    Swift

    public let p70: String
  • p80

    The 80th percentile fee charged, in stroops.

    Declaration

    Swift

    public let p80: String
  • p90

    The 90th percentile fee charged, in stroops.

    Declaration

    Swift

    public let p90: String
  • p95

    The 95th percentile fee charged, in stroops.

    Declaration

    Swift

    public let p95: String
  • p99

    The 99th percentile fee charged, in stroops.

    Declaration

    Swift

    public let p99: String
  • Declaration

    Swift

    public init(from decoder: Decoder) throws