mirror of
https://github.com/lil-org/wallet.git
synced 2025-01-07 13:46:25 +03:00
23 lines
487 B
Swift
23 lines
487 B
Swift
// Copyright © 2022 Tokenary. All rights reserved.
|
|
|
|
import Foundation
|
|
import WalletCore
|
|
|
|
struct CoinDerivation: Equatable {
|
|
let coin: CoinType
|
|
let derivation: Derivation
|
|
|
|
var title: String {
|
|
return coin.name
|
|
}
|
|
|
|
static var enabledByDefaultCoinDerivations = [
|
|
CoinDerivation(coin: .ethereum, derivation: .default)
|
|
]
|
|
|
|
static var supportedCoinDerivations = [
|
|
CoinDerivation(coin: .ethereum, derivation: .default)
|
|
]
|
|
|
|
}
|