Updated on 2026-08-14

This commit is contained in:
Tangem 2023-02-13 16:31:30 +03:00
parent c27049f0ea
commit 865bf08157
10 changed files with 37 additions and 28 deletions

View file

@ -97,6 +97,7 @@ internal class ConfigManagerImpl @Inject constructor() : ConfigManager {
shopify = configValues.shopifyShop,
zendesk = configValues.zendesk,
saltPayConfig = configValues.saltPay,
swapReferrerAccount = configValues.swapReferrerAccount,
)
}
}

View file

@ -18,4 +18,5 @@ data class Config(
val shopify: ShopifyShop? = null,
val zendesk: ZendeskConfig? = null,
val saltPayConfig: SaltPayConfig? = null,
val swapReferrerAccount: SwapReferrerAccount? = null,
)

View file

@ -34,6 +34,7 @@ class ConfigValueModel(
val saltPay: SaltPayConfig,
val tronGridApiKey: String,
val amplitudeApiKey: String,
val swapReferrerAccount: SwapReferrerAccount?,
)
data class AppsFlyer(
@ -41,6 +42,11 @@ data class AppsFlyer(
val appsFlyerAppID: String,
)
data class SwapReferrerAccount(
val address: String,
val fee: String,
)
class ConfigModel(
val features: FeatureModel?,
val configValues: ConfigValueModel?,