Updated on 2026-08-14
This commit is contained in:
parent
6afae8e619
commit
63125dc0f3
7 changed files with 54 additions and 23 deletions
|
|
@ -33,6 +33,17 @@ sealed class YieldSupplyAnalytics(
|
|||
),
|
||||
)
|
||||
|
||||
data class StopEarningScreen(
|
||||
val token: String,
|
||||
val blockchain: String,
|
||||
) : YieldSupplyAnalytics(
|
||||
event = "Stop Earning Screen",
|
||||
params = mapOf(
|
||||
TOKEN_PARAM to token,
|
||||
BLOCKCHAIN to blockchain,
|
||||
),
|
||||
)
|
||||
|
||||
data class ButtonStartEarning(
|
||||
val token: String,
|
||||
val blockchain: String,
|
||||
|
|
@ -55,6 +66,17 @@ sealed class YieldSupplyAnalytics(
|
|||
),
|
||||
)
|
||||
|
||||
data class ButtonGiveApprove(
|
||||
val token: String,
|
||||
val blockchain: String,
|
||||
) : YieldSupplyAnalytics(
|
||||
event = " Button - Give Approve",
|
||||
params = mapOf(
|
||||
TOKEN_PARAM to token,
|
||||
BLOCKCHAIN to blockchain,
|
||||
),
|
||||
)
|
||||
|
||||
data object ButtonFeePolicy : YieldSupplyAnalytics(
|
||||
event = "Button - Fee Policy",
|
||||
)
|
||||
|
|
@ -150,22 +172,11 @@ sealed class YieldSupplyAnalytics(
|
|||
event = "APY Chart",
|
||||
)
|
||||
|
||||
data class NoticeCommissionTooHigh(
|
||||
data class NoticeAmountNotDeposited(
|
||||
val token: String,
|
||||
val blockchain: String,
|
||||
) : YieldSupplyAnalytics(
|
||||
event = "Notice - Commission Is Too High",
|
||||
params = mapOf(
|
||||
TOKEN_PARAM to token,
|
||||
BLOCKCHAIN to blockchain,
|
||||
),
|
||||
)
|
||||
|
||||
data class NoticeNotEnoughMinAmount(
|
||||
val token: String,
|
||||
val blockchain: String,
|
||||
) : YieldSupplyAnalytics(
|
||||
event = "Notice - Not Enough Min Amount",
|
||||
event = "Notice - Amount Not Deposited",
|
||||
params = mapOf(
|
||||
TOKEN_PARAM to token,
|
||||
BLOCKCHAIN to blockchain,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue