Updated on 2026-08-14

This commit is contained in:
Tangem 2025-11-27 19:53:49 +05:00
parent 68f800a495
commit 2883c49098
32 changed files with 578 additions and 634 deletions

View file

@ -446,4 +446,11 @@ sealed class AppRoute(val path: String) : Route {
val cryptoCurrency: CryptoCurrency,
val apy: String,
) : AppRoute(path = "/yield_supply_promo/${userWalletId.stringValue}/${cryptoCurrency.symbol}")
@Serializable
data class YieldSupplyActive(
val userWalletId: UserWalletId,
val cryptoCurrency: CryptoCurrency,
val apy: String,
) : AppRoute(path = "/yield_supply_active/${userWalletId.stringValue}/${cryptoCurrency.symbol}")
}