com.wavesenterprise.transaction.smart.BlockchainContext.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.smart
import com.wavesenterprise.crypto
import com.wavesenterprise.lang.v1.BaseGlobal
import com.wavesenterprise.transaction.Transaction
import com.wavesenterprise.transaction.assets.exchange.Order
import shapeless.{:+:, CNil}
object BlockchainContext {
type In = Transaction :+: Order :+: CNil
val baseGlobal: BaseGlobal = crypto.rideContext
}