Dust Guard
0x484428507A212cA56D71baa27Ca6089a6dB63a88

What this does

This plug tests whether a supplied amount is dust and gates execution on the result. It asks the caller for amount, the figure being measured, and dust_definition, the cutoff it is compared against. It marks the amount as dust when it is less than the cutoff and requires that dust flag to equal false, proceeding only when the amount sits at or above the cutoff and reverting otherwise. Checking this by hand or against a stale cutoff risks letting a below-threshold amount pass or blocking a valid one.

Actions · 3

  • Compare two values
    Is
    Compares two values with a chosen operator and returns a boolean.
  • Set
    Set to
    Assigns a value to a named variable that later steps reference.
  • Predicate
    Steers control flow by comparing two values: branch, loop, or require the condition holds.

Related plugs · 8