Replies: 2 comments
-
Pause / Filter OffersA feature for filtering (and hence effectively pausing) offers is in production in inter protocol:
The feature was implemented in It involves using zcf.setOfferFilter() under governance. The details are spelled out in a test: There's also relevant code in dapp-econ-gov and econCommitteeCharter.js Pause Timer WakeupsWe don't have anything like this in production. It could perhaps be built using continuing invitations (as discussed in #8082) and voluntary compliance: let okToProcessTimers = true;
const processTimer = () => {
if (!okToProcessTimers) return;
...
} |
Beta Was this translation helpful? Give feedback.
-
By way of example: The scope of this PR grew to include some other work, but the governance work is in there: |
Beta Was this translation helpful? Give feedback.
-
BLD stakers can disable a contract via a 3 day vote, but what if I want something with lower latency?
this has come up in discussion with @Chris-Hibbert and @ivanlei
Beta Was this translation helpful? Give feedback.
All reactions