Updated on 2026-08-14

This commit is contained in:
Tangem 2023-11-28 21:34:40 +03:00
parent 7f71ef182e
commit ed053eb38f
10 changed files with 83 additions and 42 deletions

View file

@ -22,6 +22,7 @@ data class Network(
val id: ID,
val backendId: String,
val name: String,
val currencySymbol: String,
val derivationPath: DerivationPath,
val isTestnet: Boolean,
val standardType: StandardType,

View file

@ -18,6 +18,8 @@ internal object MockNetworks {
name = "Network One",
isTestnet = false,
standardType = Network.StandardType.ERC20,
backendId = "network1",
currencySymbol = "ETH",
derivationPath = Network.DerivationPath.None,
)
@ -26,6 +28,8 @@ internal object MockNetworks {
name = "Network Two",
isTestnet = false,
standardType = Network.StandardType.ERC20,
backendId = "network1",
currencySymbol = "ETH",
derivationPath = Network.DerivationPath.None,
)
@ -34,6 +38,8 @@ internal object MockNetworks {
name = "Network Three",
isTestnet = false,
standardType = Network.StandardType.ERC20,
backendId = "network1",
currencySymbol = "ETH",
derivationPath = Network.DerivationPath.None,
)