Updated on 2026-08-14

This commit is contained in:
Tangem 2026-02-03 18:11:14 +03:00
parent 51e6f1d5a3
commit 3d9b107be6
6 changed files with 17 additions and 0 deletions

View file

@ -23,6 +23,7 @@ sealed class FeeSelectorParams {
abstract val feeDisplaySource: FeeDisplaySource
abstract val analyticsCategoryName: String
abstract val analyticsSendSource: CommonSendAnalyticEvents.CommonSendSource
abstract val shouldShowOnlySpeedOption: Boolean
data class FeeSelectorBlockParams(
override val state: FeeSelectorUM,
@ -37,6 +38,7 @@ sealed class FeeSelectorParams {
override val feeDisplaySource: FeeDisplaySource,
override val analyticsCategoryName: String,
override val analyticsSendSource: CommonSendAnalyticEvents.CommonSendSource,
override val shouldShowOnlySpeedOption: Boolean = false,
val bottomSheetShown: (Boolean) -> Unit = {},
) : FeeSelectorParams()
@ -53,6 +55,7 @@ sealed class FeeSelectorParams {
override val feeDisplaySource: FeeDisplaySource,
override val analyticsCategoryName: String,
override val analyticsSendSource: CommonSendAnalyticEvents.CommonSendSource,
override val shouldShowOnlySpeedOption: Boolean = false,
val callback: FeeSelectorModelCallback,
) : FeeSelectorParams()