blockchainethereumblockchain-walleterc20erc721walletxdaidappdecentralizederc1155erc875iosswifttokens
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
916 B
35 lines
916 B
// Copyright © 2018 Stormbird PTE. LTD.
|
|
|
|
import Foundation
|
|
|
|
struct AlphaWalletAdvancedSettingsViewModel {
|
|
|
|
var title: String {
|
|
return NSLocalizedString("settings.preferences.title", value: "Preferences", comment: "")
|
|
}
|
|
|
|
var showTokensTabTitle: String {
|
|
return NSLocalizedString("settings.preferences.button.title", value: "Show Tokens on Launch", comment: "")
|
|
}
|
|
|
|
var showTokensTabOnStart: Bool {
|
|
return true
|
|
}
|
|
|
|
var networkTitle: String {
|
|
return NSLocalizedString("settings.network.button.title", value: "Network", comment: "")
|
|
}
|
|
|
|
var servers: [RPCServer] {
|
|
return [
|
|
RPCServer.main,
|
|
RPCServer.classic,
|
|
RPCServer.poa,
|
|
// RPCServer.callisto, TODO: Enable.
|
|
RPCServer.kovan,
|
|
RPCServer.ropsten,
|
|
RPCServer.rinkeby,
|
|
RPCServer.sokol,
|
|
]
|
|
}
|
|
}
|
|
|