Updated on 2026-08-14
This commit is contained in:
parent
b7dc46ae64
commit
9df1b84404
13 changed files with 261 additions and 11 deletions
|
|
@ -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}")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue