All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wavesplatform.lang.v1.traits.domain.Ord.scala Maven / Gradle / Ivy

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
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy