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.
 
 
 
 
 
 

32 lines
724 B

//
// WalletGradient.swift
// BlueWalletWatch Extension
//
// Created by Marcos Rodriguez on 3/23/19.
// Copyright © 2019 Facebook. All rights reserved.
//
import Foundation
enum WalletGradient: String {
case SegwitHD = "HDsegwitP2SH"
case Segwit = "segwitP2SH"
case LightningCustodial = "lightningCustodianWallet"
case SegwitNative = "HDsegwitBech32"
case WatchOnly = "watchOnly"
var imageString: String{
switch self {
case .Segwit:
return "wallet"
case .SegwitNative:
return "walletHDSegwitNative"
case .SegwitHD:
return "walletHD"
case .WatchOnly:
return "walletWatchOnly"
case .LightningCustodial:
return "walletLightningCustodial"
}
}
}