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 a new variant, UpdateOwnership
to the enum:
```rust
enum ExecuteMsg { UpdateOwnership(cw_ownable::Action), Foo {}, Bar {}, } ```
Where Action
can be one of three:
Handle the messages using the update_ownership
function provided by this crate:
```rust use cosmwasmstd::{entrypoint, DepsMut, Env, MessageInfo, Response}; use cwownable::{cwserde, update_ownership, 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.