You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
297 B
15 lines
297 B
7 years ago
|
package com.xsn.explorer.models
|
||
|
|
||
|
import play.api.libs.json.{Json, Writes}
|
||
|
|
||
|
case class Statistics(
|
||
|
height: Height,
|
||
|
transactions: Int,
|
||
|
totalSupply: BigDecimal,
|
||
|
circulatingSupply: BigDecimal)
|
||
|
|
||
|
object Statistics {
|
||
|
|
||
|
implicit val writes: Writes[Statistics] = Json.writes[Statistics]
|
||
|
}
|