FeeDistribution

@Serializable
data class FeeDistribution(val max: Long, val min: Long, val mode: Long, val p10: Long, val p20: Long, val p30: Long, val p40: Long, val p50: Long, val p60: Long, val p70: Long, val p80: Long, val p90: Long, val p95: Long, val p99: Long, val transactionCount: Long, val ledgerCount: Long)

Statistical distribution of fee charges across multiple percentiles.

All fee values are in stroops (1 stroop = 0.0000001 XLM). The distribution provides insight into fee market conditions, helping developers choose appropriate fees for their transactions based on desired confirmation priority.

Constructors

Link copied to clipboard
constructor(max: Long, min: Long, mode: Long, p10: Long, p20: Long, p30: Long, p40: Long, p50: Long, p60: Long, p70: Long, p80: Long, p90: Long, p95: Long, p99: Long, transactionCount: Long, ledgerCount: Long)

Properties

Link copied to clipboard

Number of ledgers analyzed to produce this distribution.

Link copied to clipboard
val max: Long

Maximum fee charged in the sample set.

Link copied to clipboard
val min: Long

Minimum fee charged in the sample set.

Link copied to clipboard
val mode: Long

Most frequently occurring fee value (mode of the distribution).

Link copied to clipboard
val p10: Long

10th percentile - 10% of transactions paid this fee or less.

Link copied to clipboard
val p20: Long

20th percentile - 20% of transactions paid this fee or less.

Link copied to clipboard
val p30: Long

30th percentile - 30% of transactions paid this fee or less.

Link copied to clipboard
val p40: Long

40th percentile - 40% of transactions paid this fee or less.

Link copied to clipboard
val p50: Long

50th percentile (median) - half of transactions paid this fee or less.

Link copied to clipboard
val p60: Long

60th percentile - 60% of transactions paid this fee or less.

Link copied to clipboard
val p70: Long

70th percentile - 70% of transactions paid this fee or less.

Link copied to clipboard
val p80: Long

80th percentile - 80% of transactions paid this fee or less.

Link copied to clipboard
val p90: Long

90th percentile - 90% of transactions paid this fee or less.

Link copied to clipboard
val p95: Long

95th percentile - 95% of transactions paid this fee or less.

Link copied to clipboard
val p99: Long

99th percentile - 99% of transactions paid this fee or less.

Link copied to clipboard

Number of transactions included in this statistical sample.