whereCurrencyIsGreaterThan method

T whereCurrencyIsGreaterThan(
  1. int amount
)

Results should have an amount greater than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used.

Implementation

T whereCurrencyIsGreaterThan(int amount) {
  addQueryParameter('currency-greater-than', amount);
  return me();
}