cw20_base/lib.rs
1/*!
2This is a basic implementation of a cw20 contract. It implements
3the [CW20 spec](https://github.com/CosmWasm/cw-plus/blob/main/packages/cw20/README.md) and is designed to
4be deployed as is, or imported into other contracts to easily build
5cw20-compatible tokens with custom logic.
6
7Implements:
8
9- [x] CW20 Base
10- [x] Mintable extension
11- [x] Allowances extension
12
13For more information on this contract, please check out the
14[README](https://github.com/CosmWasm/cw-plus/blob/main/contracts/cw20-base/README.md).
15*/
16
17pub mod allowances;
18pub mod contract;
19pub mod enumerable;
20mod error;
21pub mod msg;
22pub mod state;
23
24pub use crate::error::ContractError;