cw-controllers 1.0.0

Common controllers we can reuse in many contracts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# CW Controllers: Common controllers for many contracts

This is a collection of "controllers" that we end up reimplementing in 
many contracts. I use the word "controller" similar to the MVC framework
style, where it is an element that encapsulated business logic and data access.
We can also directly handle some `ExecuteMsg` and `QueryMsg` variants by
adding a sub-router to these controllers.

This is the beginning of an experiment in code composition, and how best to
reuse code among multiple contracts. We have already seen some "extend" and
existing base contract (like `cw20-staking` extends `cw20-base`), but this
goes for smaller scale units.

Supported controllers:

* Admin (`UpdateAdmin` handler, `Admin` querier, set_admin and is_admin methods)