Add CryptoAddressValidator

pull/2/head
Michael Scoff 7 years ago
parent 3916a129fd
commit 0688ae03f7
  1. 16
      Trust/Foundation/CryptoAddressValidator.swift

@ -0,0 +1,16 @@
// Copyright SIX DAY LLC. All rights reserved.
import Foundation
enum AddressValidatorType {
case ethereum
}
struct CryptoAddressValidator {
static func isValidAddress(_ value: String?, type: AddressValidatorType = .ethereum) -> Bool {
guard value?.count == 42 else {
return false
}
return true
}
}
Loading…
Cancel
Save