Utility for controlling ownership of CosmWasm smart contracts.
Initialize the owner during instantiation using the initialize_owner
method provided by this crate:
```rust use cosmwasmstd::{entrypoint, DepsMut, Env, MessageInfo, Response}; use cw_ownable::OwnershipError;
pub fn instantiate(
deps: DepsMut,
env: Env,
info: MessageInfo,
msg: InstantiateMsg,
) -> Result
Use the #[cw_ownable_execute]
macro to extend your execute message:
```rust use cosmwasmschema::cwserde; use cwownable::cwownable_execute;
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
Use the #[cw_ownable_query]
macro to extend your query message:
```rust use cosmwasmschema::{cwserde, QueryResponses}; use cwownable::cwownable_query;
pub enum QueryMsg { #[returns(FooResponse)] Foo {}, #[returns(BarResponse)] Bar {}, } ```
The macro inserts a new variant, Ownership
:
```rust
enum ExecuteMsg {
#[returns(Ownership
Handle the message using the get_ownership
function provided by this crate:
```rust use cosmwasmstd::{entrypoint, Deps, Env, Binary}; use cwownable::getownership;
pub fn query(deps: Deps, env: Env, msg: QueryMsg) -> StdResult
Contents of this crate at or prior to version 0.5.0
are published under GNU Affero General Public License v3 or later; contents after the said version are published under Apache-2.0 license.