Utility for controlling ownership of CosmWasm smart contracts.
Use the #[cw_ownable]
macro to define your execute message:
```rust use cosmwasmschema::cwserde; use cwownable::{cwownable, Expiration};
enum ExecuteMsg { Foo {}, Bar {}, } ```
The macro inserts three variants, {Transfer,Accept,Renounce}Ownership
to the enum:
```rust
enum ExecuteMsg {
TransferOwnership {
new_owner: String,
expiry: Option
Handle the messages using the functions provided by this crate:
```rust use cosmwasmstd::{entrypoint, DepsMut, Env, MessageInfo, Response}; use cwownable::{cwserde, OwnershipError};
pub fn execute(
deps: DepsMut,
env: Env,
info: MessageInfo,
msg: ExecuteMsg,
) -> Result
Contents of this crate are open source under GNU Affero General Public License v3 or later.