CoinExtended
public struct CoinExtended : Equatable, CodableModel, CoinType
-
Coin id, eg. btc-bitcoin
Declaration
Swift
public let id: String -
Coin name, eg. Bitcoin
Declaration
Swift
public let name: String -
Coin symbol, eg. BTC
Declaration
Swift
public let symbol: String -
Coin position in Coinpaprika ranking
Declaration
Swift
public let rank: Int -
Is it recently added to Coinpaprika
Declaration
Swift
public let isNew: Bool -
Is it active on Coinpaprika
Declaration
Swift
public let isActive: Bool -
Declaration
Swift
public let parent: ParentCoin? -
Declaration
Swift
public let tags: [Tag]? -
Declaration
Swift
public typealias Tag = SearchResults.Tag -
Declaration
Swift
public let team: [Person]? -
Coin.Person model
See moreDeclaration
Swift
public struct Person : Codable, Equatable -
Declaration
Swift
public let description: String? -
Coin moderation message
Declaration
Swift
public let message: String? -
Is it Open Source project?
Declaration
Swift
public let openSource: Bool -
Project start date
Declaration
Swift
public let startedAt: Date? -
Project development status, eg. Beta version
Declaration
Swift
public let developmentStatus: String? -
Does it have a hardware wallet?
Declaration
Swift
public let hardwareWallet: Bool -
Coin Proof of Type, eg. Proof of stake
Declaration
Swift
public let proofType: String? -
Project organisation stucture, eg. Semi-centralized
Declaration
Swift
public let orgStructure: String? -
Coin hash algorithm, eg. SHA256
Declaration
Swift
public let hashAlgorithm: String? -
Project links
Declaration
Swift
public let links: [Link] -
Coin Whitepaper
See moreDeclaration
Swift
public struct Whitepaper : Codable, Equatable -
Coin whitepaper
Declaration
Swift
public let whitepaper: Whitepaper -
Coin type, eg. .coin, .token
Declaration
Swift
public var type: Coin.TypeValue { get } -
First ticker data
Declaration
Swift
public let firstDataAt: Date? -
Last ticker data
Declaration
Swift
public let lastDataAt: Date? -
Smart contract address, filled when additionalFields contains .contract option
Declaration
Swift
public var contract: String?
CoinExtended Structure Reference