com.wavesplatform.lang.v1.traits.domain.Ord.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lang Show documentation
Show all versions of lang Show documentation
The RIDE smart contract language compiler
The newest version!
package com.wavesplatform.lang.v1.traits.domain
import com.wavesplatform.common.state.ByteStr
case class Ord(
id: ByteStr,
sender: Recipient.Address,
senderPublicKey: ByteStr,
matcherPublicKey: ByteStr,
assetPair: APair,
orderType: OrdType,
price: Long,
amount: Long,
timestamp: Long,
expiration: Long,
matcherFee: Long,
bodyBytes: ByteStr,
proofs: IndexedSeq[ByteStr],
matcherFeeAssetId: Option[ByteStr] = None,
attachment: Option[ByteStr] = None
)