parent
3916a129fd
commit
0688ae03f7
@ -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…
Reference in new issue