Skip to content

Commit

Permalink
test v017 and v018 on receive nft
Browse files Browse the repository at this point in the history
  • Loading branch information
taitruong committed Aug 14, 2024
1 parent eb1af4d commit 667dd69
Show file tree
Hide file tree
Showing 5 changed files with 339 additions and 11 deletions.
44 changes: 39 additions & 5 deletions Cargo.lock

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

6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@ cw-paginate-storage = { version = "^2.4", git = "https://github.com/DA0-DA0/dao-
cw-storage-plus = "1.1"
cw2 = "1.1"
cw721 = { git = "https://github.com/public-awesome/cw-nfts", branch = "minor_changes"} # TODO switch to version 0.18.1/0.19.0, once released
cw721-018 = { git = "https://github.com/public-awesome/cw-nfts", branch = "release/v0.18.1", package = "cw721"} # TODO switch to version 0.18.1/0.19.0, once released
cw721-016 = { version = "0.16.0", package = "cw721" }
cw721-017 = { git = "https://github.com/public-awesome/cw-nfts", branch = "release/v0.17.0", package = "cw721"} # TODO switch to version 0.18.1/0.19.0, once released
cw721-018 = { git = "https://github.com/public-awesome/cw-nfts", branch = "release/v0.18.0", package = "cw721"} # TODO switch to version 0.18.1/0.19.0, once released
cw721-metadata-onchain = { git = "https://github.com/public-awesome/cw-nfts", branch = "minor_changes", package = "cw721-metadata-onchain"} # TODO switch to version 0.18.1/0.19.0, once released
cw721-base = { git = "https://github.com/public-awesome/cw-nfts", branch = "minor_changes"} # TODO switch to version 0.18.1/0.19.0, once released
cw721-base-018 = { git = "https://github.com/public-awesome/cw-nfts", branch = "release/v0.18.1", package = "cw721-base"} # TODO switch to version 0.18.1/0.19.0, once released
cw721-base-016 = { version = "0.16.0", package = "cw721-base" }
cw721-base-017 = { git = "https://github.com/public-awesome/cw-nfts", branch = "release/v0.17.0", package = "cw721-base"} # TODO switch to version 0.18.1/0.19.0, once released
cw721-base-018 = { git = "https://github.com/public-awesome/cw-nfts", branch = "release/v0.18.0", package = "cw721-base"} # TODO switch to version 0.18.1/0.19.0, once released
cw-ics721-incoming-proxy = { git = "https://github.com/arkprotocol/cw-ics721-proxy.git", tag = "v0.1.0" }
cw-ics721-incoming-proxy-base = { git = "https://github.com/arkprotocol/cw-ics721-proxy.git", tag = "v0.1.0" }
cw-ics721-outgoing-proxy-rate-limit = { git = "https://github.com/arkprotocol/cw-ics721-proxy.git", tag = "v0.1.0" }
Expand Down
4 changes: 4 additions & 0 deletions packages/ics721/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ cw721 = { workspace = true }
cw721-base = { workspace = true, features = ["library"] }
cw721-metadata-onchain = { workspace = true, features = ["library"] }
cw721-base-016 = { workspace = true, features = ["library"] }
cw721-base-017 = { workspace = true, features = ["library"] }
cw721-base-018 = { workspace = true, features = ["library"] }
ics721-types = { workspace = true }
thiserror = { workspace = true }
serde = { workspace = true }
Expand All @@ -32,3 +34,5 @@ cw-ics721-outgoing-proxy-rate-limit = { workspace = true }
cw-multi-test = { workspace = true }
cw2 = { workspace = true }
cw721-016 = { workspace = true }
cw721-017 = { workspace = true }
cw721-018 = { workspace = true }
Loading

0 comments on commit 667dd69

Please sign in to comment.