com.wavesenterprise.transaction.AtomicBadge.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of we-models Show documentation
Show all versions of we-models Show documentation
Library for Waves Enterprise blockchain platform
package com.wavesenterprise.transaction
import com.wavesenterprise.account.Address
import play.api.libs.json.{Format, Json}
case class AtomicBadge(trustedSender: Option[Address] = None)
object AtomicBadge {
implicit val format: Format[AtomicBadge] = Json.format[AtomicBadge]
}