Skip to content

Commit

Permalink
Added contract metadata setting
Browse files Browse the repository at this point in the history
  • Loading branch information
FloppyDisck committed Nov 1, 2024
1 parent f080543 commit ed30a56
Show file tree
Hide file tree
Showing 13 changed files with 3,469 additions and 736 deletions.
3,675 changes: 3,175 additions & 500 deletions Cargo.lock

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,14 @@ codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true

[workspace.metadata.scripts]
optimize = """docker run --rm \
-e CARGO_TERM_COLOR=always \
-v "$(pwd)":/code \
-v "$(basename "$(pwd)")_cache":/code/target \
-v "$(basename "$(pwd)")_registry_cache":/usr/local/cargo/registry \
-v "$(basename "$(pwd)")_cosmwasm_sccache":/root/.cache/sccache \
--name "$(basename "$(pwd)")" \
cosmwasm/rust-optimizer:0.15.1
"""
20 changes: 11 additions & 9 deletions contracts/msig-launcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,26 +33,28 @@ optimize = """docker run --rm \
"""

[dependencies]
archway-proto = { git = "https://github.com/archway-network/arch3.rs.git", rev = "7688f20", default-features = false, features = ["cosmwasm"] }
archway-bindings = "0.2.1"
cosmwasm-schema = "1.3.1"
cosmwasm-std = "1.3.1"
cosmwasm-std = { version = "1.3.1", features = ["cosmwasm_1_2"] }
cosmwasm-storage = "1.3.1"
cw-storage-plus = "1.1.0"
cw2 = "1.1.0"
cw-utils = "1.0.3"
schemars = "0.8.12"
serde = { version = "1.0.183", default-features = false, features = ["derive"] }
thiserror = "1.0.44"
# Dao interfaces
dao-interface = "2.4.2"
dao-voting = "2.4.2"
cw-utils = "1.0.3"
cw4-voting = { version = "0.1.0", features = ["library"] }
cw4 = { version = "0.13.4" }
dao-proposal-single = { version = "2.4.2", features = ["library"] }
dao-pre-propose-base = "2.4.2"
dao-interface = "=2.4.2"
dao-voting = "=2.4.2"
cw4-voting = { version = "=0.1.0", features = ["library"] }
cw4 = { version = "=0.13.4" }
dao-proposal-single = { version = "=2.4.2", features = ["library"] }
dao-pre-propose-base = "=2.4.2"

[dev-dependencies]
cw-multi-test = "0.17.0"
archway_test_tube = { git = "https://github.com/archway-network/litmus.git", rev = "903d4e1", features = ["wasm-sudo"] }
cw-multi-test = { version = "1.0.0", features = ["cosmwasm_1_2"] }
dao-pre-propose-single = "2.4.2"
dao-proposal-single = "2.4.2"
cw4-voting = "0.1.0"
Expand Down
Loading

0 comments on commit ed30a56

Please sign in to comment.