33992542b1
* updated contracts to cosmwasm2.2 and fixed build issues * removed old coconut contract code + additional dkg fixes * replace deprecated to_binary and from_binary functions * mixnet contract tests compiling some are failing due to incorrect addresses * made other contract tests compile * fixed remaining tests * allow usage of manually dispatching contract replies * nym-api test fixes * removed old toolchain from contracts CI * linter fixes * regenerated contract schema * fixed easy_addr * further license fixes * post rebase fixes + update to 2.2.2 * change ci runner * minor CI adjustments * change wallet CI to use node 20 * more CI changes... * run cosmwasm-check against release contracts * test ci changes * wip...
43 lines
1.4 KiB
TOML
43 lines
1.4 KiB
TOML
[package]
|
|
name = "cw3-flex-multisig"
|
|
version = "2.0.0"
|
|
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
|
|
edition = "2021"
|
|
description = "Implementing cw3 with multiple voting patterns and dynamic groups"
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/CosmWasm/cw-plus"
|
|
homepage = "https://cosmwasm.com"
|
|
documentation = "https://docs.cosmwasm.com"
|
|
|
|
[[bin]]
|
|
name = "schema"
|
|
required-features = ["cosmwasm-schema"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
# use library feature to disable all instantiate/execute/query exports
|
|
library = []
|
|
|
|
[dependencies]
|
|
cw-utils = { workspace = true }
|
|
cw2 = { workspace = true }
|
|
cw3 = { workspace = true }
|
|
cw3-fixed-multisig = { workspace = true, features = ["library"] }
|
|
cw4 = { workspace = true }
|
|
cw20 = { workspace = true }
|
|
cw-storage-plus = { workspace = true }
|
|
cosmwasm-schema = { workspace = true, optional = true }
|
|
cosmwasm-std = { workspace = true }
|
|
|
|
nym-group-contract-common = { path = "../../../common/cosmwasm-smart-contracts/group-contract" }
|
|
nym-multisig-contract-common = { path = "../../../common/cosmwasm-smart-contracts/multisig-contract" }
|
|
nym-contracts-common = { path = "../../../common/cosmwasm-smart-contracts/contracts-common" }
|
|
|
|
[dev-dependencies]
|
|
easy-addr = { path = "../../../common/cosmwasm-smart-contracts/easy_addr" }
|
|
cw4-group = { path = "../cw4-group" }
|
|
cw-multi-test = { workspace = true }
|
|
cw20-base = { workspace = true }
|