Updated on 2026-08-14

This commit is contained in:
Tangem 2020-09-01 14:07:06 +03:00
parent bb9d49e2e6
commit 400d625df1
3 changed files with 126 additions and 73 deletions

View file

@ -2,12 +2,14 @@ package com.tangem.tap.common.redux.global
import com.tangem.blockchain.common.WalletManager
import com.tangem.commands.Card
import com.tangem.tap.domain.TapWalletManager
import org.rekotlin.StateType
import java.math.BigDecimal
data class GlobalState(
val card: Card? = null,
val walletManager: WalletManager? = null,
val tapWalletManager: TapWalletManager = TapWalletManager(),
val fiatRates: FiatRates = FiatRates(emptyMap()),
) : StateType