cw1155-base 0.16.0

Basic implementation of a CosmWasm-1155 compliant token
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use cosmwasm_schema::write_api;

use cw1155::{Cw1155ExecuteMsg, Cw1155QueryMsg};
use cw1155_base::msg::InstantiateMsg;

fn main() {
    write_api! {
        instantiate: InstantiateMsg,
        execute: Cw1155ExecuteMsg,
        query: Cw1155QueryMsg,
    }
}