Dust Guard
0x581BEf12967f06f2eBfcabb7504fA61f0326CD9A

What this does

This plug gates execution on whether a supplied amount meets a floor. It asks the caller for two figures, an amount and a threshold. It fires only when the amount is greater than or equal to the threshold, reverting the transaction otherwise. Checking a dust floor by hand or against a stale figure risks passing a value that should have been rejected or blocking one that should have cleared.

Actions · 2

  • Compare two values
    Is
    Compares two values with a chosen operator and returns a boolean.
  • Predicate
    Steers control flow by comparing two values: branch, loop, or require the condition holds.

Related plugs · 8