I hate that in the sdk you have `require(boolean, ...
# announcements
s
I hate that in the sdk you have
require(boolean, { "message" })
, you should also have an overload that just takes a raw string. Sometimes you don't need it lazily evaluated, and then its nicer to just do
require(boolean, message)