Updated on 2026-08-14

This commit is contained in:
Tangem 2025-07-18 18:55:47 +05:00
parent b7dc46ae64
commit 9df1b84404
13 changed files with 261 additions and 11 deletions

View file

@ -288,4 +288,18 @@ sealed class AppRoute(val path: String) : Route {
@Serializable
object AddExistingWallet : AppRoute(path = "/add_existing_wallet")
@Serializable
data class SendEntryPoint(
val userWalletId: UserWalletId,
val currency: CryptoCurrency,
) : AppRoute(
path = "/send_entry_point/${userWalletId.stringValue}/${currency.id.value}?",
)
@Serializable
data class SendWithSwap(
val userWalletId: UserWalletId,
val currency: CryptoCurrency,
) : AppRoute(path = "/send_with_swap/${userWalletId.stringValue}/${currency.symbol}")
}