1个不稳定版本
0.3.0 | 2020年6月10日 |
---|
#14 在 #匿名凭证
10KB
141 行
portablegabi-pallet
此模块可用于在链上存储累加器。
安装
运行时 Cargo.toml
要将此模块添加到您的运行时,请将以下内容添加到您的运行时的 Cargo.toml
文件中
[dependencies.portablegabi-pallet]
default-features = false
git = "https://github.com/KILTprotocol/portablegabi-pallet.git"
并更新您的运行时的 std
功能以包括此模块
std = [
# --snip--
"portablegabi-pallet/std",
]
运行时 lib.rs
您应像这样实现它的特质
impl portablegabi_pallet::Trait for Runtime {
type Event = Event;
}
并将其包含在您的 construct_runtime!
宏中
PortablegabiPallet: portablegabi_pallet::{Module, Call, Storage, Event<T>},
创世配置
此模板模块没有创世配置。
参考文档
您可以通过运行
cargo doc --open
或访问此网站查看此模块的参考文档: kilt.io/developers
依赖关系
~6–15MB
~199K SLoC