35个版本 (10个重大更新)
0.16.0 | 2022年10月17日 |
---|---|
0.14.0 | 2022年7月28日 |
0.13.1 | 2022年3月25日 |
0.11.1 | 2021年12月28日 |
0.8.0-rc1 | 2021年7月29日 |
#12 in #minter
每月223次下载
58KB
1.5K SLoC
CW1155基本
这是cw1155合约的基本实现。它实现了CW1155规范,并管理一个合约下的多个代币(可互换或不可互换)。
实例化
要创建它,您必须传递一个minter
地址。
#[cw_serde]
pub struct InstantiateMsg {
/// The minter is the only one who can create new tokens.
/// This is designed for a base token platform that is controlled by an external program or
/// contract.
pub minter: String,
}
消息
所有其他消息和查询均由CW1155规范定义。请参阅该规范以获取更多信息。
lib.rs
:
这是cw1155合约的基本实现。它实现了CW1155规范,并管理一个合约下的多个代币(可互换或不可互换)。
有关此合约的更多信息,请参阅README。
依赖项
~4.5–6.5MB
~138K SLoC