Skip to content

Commit

Permalink
implement demo cw1155 contract
Browse files Browse the repository at this point in the history
  • Loading branch information
yihuang committed Mar 23, 2021
1 parent 34504b0 commit 22d5dc2
Show file tree
Hide file tree
Showing 10 changed files with 1,272 additions and 37 deletions.
15 changes: 15 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions contracts/cw1155-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[package]
name = "cw1155-base"
version = "0.6.0-alpha1"
authors = ["Huang Yi <huang@crypto.com>"]
edition = "2018"
description = "Basic implementation of a CosmWasm-1155 compliant token"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cosmwasm-plus"
homepage = "https://cosmwasm.com"
documentation = "https://docs.cosmwasm.com"

[lib]
crate-type = ["cdylib", "rlib"]

[features]
backtraces = ["cosmwasm-std/backtraces"]
# use library feature to disable all init/handle/query exports
library = []

[dependencies]
cw0 = { path = "../../packages/cw0", version = "0.6.0-alpha1" }
cw2 = { path = "../../packages/cw2", version = "0.6.0-alpha1" }
cw1155 = { path = "../../packages/cw1155", version = "0.6.0-alpha1" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.6.0-alpha1" , features = ["iterator"]}
cosmwasm-std = { version = "0.14.0-beta1", features = ["iterator"] }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.20" }

[dev-dependencies]
cosmwasm-schema = { version = "0.14.0-alpha2" }
Loading

0 comments on commit 22d5dc2

Please sign in to comment.