Updated on 2026-08-14

This commit is contained in:
Tangem 2024-04-10 19:51:39 +01:00
parent 5a42f1de5f
commit 7011ffb0a8
9 changed files with 118 additions and 172 deletions

View file

@ -1,12 +0,0 @@
package com.tangem.domain.walletconnect
import com.tangem.domain.wallets.models.UserWallet
import org.rekotlin.Action
sealed class WalletConnectActions : Action {
sealed class New {
data class Initialize(val userWallet: UserWallet) : WalletConnectActions()
data class SetupUserChains(val userWallet: UserWallet) : WalletConnectActions()
}
}