cw1155_base/
lib.rs

1/*!
2This is a basic implementation of a cw1155 contract.
3It implements the [CW1155 spec](https://github.com/CosmWasm/cw-plus/blob/main/packages/cw1155/README.md) and manages multiple tokens
4(fungible or non-fungible) under one contract.
5
6For more information on this contract, please check out the
7[README](https://github.com/CosmWasm/cw-plus/blob/main/contracts/cw1155-base/README.md).
8*/
9
10pub mod contract;
11mod error;
12pub mod execute;
13pub mod helpers;
14pub mod msg;
15pub mod query;
16pub mod state;
17
18pub use crate::error::ContractError;
19
20#[cfg(test)]
21mod tests;