Skip to content

Commit

Permalink
Merge pull request #107 from neutron-org/feat/whitelist-tf-hooks
Browse files Browse the repository at this point in the history
Feat: whitelist tokenfactory hooks
  • Loading branch information
pr0n00gler authored Jul 5, 2024
2 parents af56c72 + 770345f commit 3067993
Show file tree
Hide file tree
Showing 13 changed files with 2,325 additions and 482 deletions.
779 changes: 446 additions & 333 deletions Cargo.lock

Large diffs are not rendered by default.

28 changes: 13 additions & 15 deletions contracts/dao/neutron-chain-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,25 @@ version = "0.3.0"
crate-type = ["cdylib", "rlib"]

[features]
# for more explicit tests, cargo test --features=backtraces
backtraces = ["cosmwasm-std/backtraces"]
# use library feature to disable all instantiate/execute/query exports
library = []

[dependencies]
cosmwasm-schema = {version = "1.3.0"}
cosmwasm-std = {version = "1.3.0"}
cosmwasm-storage = {version = "1.3.0"}
cosmwasm-schema = { version = "2.0.4" }
cosmwasm-std = { version = "2.0.4" }
cosmwasm-storage = { version = "1.5.2" }
cw-controllers = "1.1.0"
cw-paginate = {path = "../../../packages/cw-paginate"}
cw-storage-plus = "1.1.0"
cw-utils = {version = "1.0.1"}
cw2 = "1.1.0"
cwd-interface = {path = "../../../packages/cwd-interface"}
cwd-macros = {path = "../../../packages/cwd-macros"}
cw-paginate = { path = "../../../packages/cw-paginate" }
cw-storage-plus = "2.0.0"
cw-utils = { version = "2.0.0" }
cw2 = "2.0.0"
cwd-interface = { path = "../../../packages/cwd-interface" }
cwd-macros = { path = "../../../packages/cwd-macros" }
schemars = "0.8.8"
serde = {version = "1.0.175", default-features = false, features = ["derive"]}
serde_with = {version = "3.7.0", features = ["json"]}
thiserror = {version = "1.0"}
neutron-sdk = "0.8.0"
serde = { version = "1.0.175", default-features = false, features = ["derive"] }
serde_with = { version = "3.7.0", features = ["json"] }
thiserror = { version = "1.0" }
neutron-sdk = { git = "https://github.com/neutron-org/neutron-sdk.git", branch = "main" }
serde-json-wasm = "1.0.1"
prost = "0.9.0"

Expand Down
Loading

0 comments on commit 3067993

Please sign in to comment.