InclusionFee

public struct InclusionFee : Decodable, Sendable

Fee statistics showing distribution of inclusion fees across network transactions.

  • max

    Maximum fee

    Declaration

    Swift

    public let max: String
  • min

    Minimum fee

    Declaration

    Swift

    public let min: String
  • Fee value which occurs the most often

    Declaration

    Swift

    public let mode: String
  • p10

    10th nearest-rank fee percentile

    Declaration

    Swift

    public let p10: String
  • p20

    20th nearest-rank fee percentile

    Declaration

    Swift

    public let p20: String
  • p30

    30th nearest-rank fee percentile

    Declaration

    Swift

    public let p30: String
  • p40

    40th nearest-rank fee percentile

    Declaration

    Swift

    public let p40: String
  • p50

    50th nearest-rank fee percentile

    Declaration

    Swift

    public let p50: String
  • p60

    60th nearest-rank fee percentile

    Declaration

    Swift

    public let p60: String
  • p70

    70th nearest-rank fee percentile

    Declaration

    Swift

    public let p70: String
  • p80

    80th nearest-rank fee percentile

    Declaration

    Swift

    public let p80: String
  • p90

    90th nearest-rank fee percentile

    Declaration

    Swift

    public let p90: String
  • p99

    99th nearest-rank fee percentile

    Declaration

    Swift

    public let p99: String
  • How many transactions are part of the distribution

    Declaration

    Swift

    public let transactionCount: String
  • How many consecutive ledgers form the distribution

    Declaration

    Swift

    public let ledgerCount: Int
  • Declaration

    Swift

    public init(from decoder: Decoder) throws