UtxoQuery

scalus.cardano.node.UtxoQuery
See theUtxoQuery companion object
sealed trait UtxoQuery

A query for UTxOs. Can be a simple query with source/filter/pagination, or a combination of queries using Or.

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Or
class Simple

Members list

Value members

Abstract methods

Add a filter condition (AND with existing filters)

Add a filter condition (AND with existing filters)

Attributes

def limit(n: Int): UtxoQuery

Limit the number of results

Limit the number of results

Attributes

def minTotal(amount: Coin): UtxoQuery

Set minimum required total lovelace amount (early termination optimization)

Set minimum required total lovelace amount (early termination optimization)

Attributes

def skip(n: Int): UtxoQuery

Skip the first n results

Skip the first n results

Attributes

Concrete methods

def ||(other: UtxoQuery): UtxoQuery

Combine two queries with OR - returns UTxOs from either query

Combine two queries with OR - returns UTxOs from either query

Attributes