Symbol
public enum Symbol : Equatable
                Asset symbol type, containing the symbol name and precision.
- 
                  
                  
The STEEM token.
Declaration
Swift
case steem - 
                  
                  
Vesting shares.
Declaration
Swift
case vests - 
                  
                  
Steem-backed dollars.
Declaration
Swift
case sbd - 
                  
                  
Custom token.
Declaration
Swift
case custom(name: String, precision: UInt8) - 
                  
                  
String representation of symbol prefix, e.g.
STEEM
.Declaration
Swift
public var name: String { get } 
View on GitHub
        Symbol Enumeration Reference