com.wavesplatform.api.http.UnsignedPayment.scala Maven / Gradle / Ivy
The newest version!
package com.wavesplatform.api.http
import play.api.libs.json.{Format, Json}
case class UnsignedPayment(timestamp: Long, amount: Long, fee: Long, recipient: String, senderWalletSeed: String, senderAddressNonce: Int)
object UnsignedPayment {
implicit val paymentReads: Format[UnsignedPayment] = Json.format
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy