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.
14 lines
310 B
14 lines
310 B
package com.xsn.explorer.models
|
|
|
|
import play.api.libs.json.{Json, Writes}
|
|
|
|
case class Statistics(
|
|
blocks: Int,
|
|
transactions: Int,
|
|
totalSupply: Option[BigDecimal],
|
|
circulatingSupply: Option[BigDecimal])
|
|
|
|
object Statistics {
|
|
|
|
implicit val writes: Writes[Statistics] = Json.writes[Statistics]
|
|
}
|
|
|