QuipuswapExchangeStorage

public struct QuipuswapExchangeStorage : Codable

Unique Quipuswap contract storage object

  • Ledger bigmap id

    Declaration

    Swift

    public let ledger: Int
  • user rewards bigmap id

    Declaration

    Swift

    public let user_rewards: Int
  • The current reward

    Declaration

    Swift

    public let reward: String
  • The amount of rewards paid out

    Declaration

    Swift

    public let reward_paid: String
  • Total reward

    Declaration

    Swift

    public let total_reward: String
  • Totoal supply of this token

    Declaration

    Swift

    public let total_supply: String
  • Date/Time the period will finish

    Declaration

    Swift

    public let period_finish: String
  • The reward per second

    Declaration

    Swift

    public let reward_per_sec: String
  • Date/Time of the last recorded update to the sotrage

    Declaration

    Swift

    public let last_update_time: String
  • The entitled reward per 1 share owned

    Declaration

    Swift

    public let reward_per_share: String
  • Convert a string to a Date object using Zulu time format

    Declaration

    Swift

    public func date(from: String) -> Date?