You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider supporting more predicates, any_of is the most useful to be able to query multiple addresses in a batch.
repeated UtxoPredicate not = 2; // Predicate is true if tx doesn't exhibit pattern.
repeated UtxoPredicate all_of = 3; // Predicate is true if utxo exhibits all of the patterns.
repeated UtxoPredicate any_of = 4; // Predicate is true if utxo exhibits any of the patterns.
Currently only AnyUtxoPattern match = 1; // Predicate is true if tx exhibits pattern. is supported.
The text was updated successfully, but these errors were encountered:
Consider supporting more predicates, any_of is the most useful to be able to query multiple addresses in a batch.
Currently only
AnyUtxoPattern match = 1; // Predicate is true if tx exhibits pattern.
is supported.The text was updated successfully, but these errors were encountered: