You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think that makes sense. In covenant-utils I use this:
/// enum based configuration for asserting expiration./// works by asserting the current block against enum variants.#[cw_serde]pubenumExpiryConfig{/// no expiration configuredNone,/// block height based expiry configBlock(u64),/// timestamp based expiry configTime(Timestamp),}
I can imagine this being useful. For example we may only want the a specific covenant service to be allowed to withdraw funds from a valence account for a fixed amount of time.
The account should be able to specify for how long he wants the account to use the service?
Ex: Use a service for a month, and see how it works for you, or use it without a limit to just run it until you pause/deregister from the service
The text was updated successfully, but these errors were encountered: