6581ebf235
* added reduced pricing handling logic * admin methods for setting the whitelist of reduced price accounts * updated client traits * query to get all whitelisted accounts * query for getting detailed deposit statistics * fixes * set initial whitelisted accounts in the migration * stop transferring tokens to the holding account after redemption * stop gateways from creating redemption multisig proposals * make sure credential-proxy uses reduced deposits when available * cargo fmt * update deposit handler to allow EITHER default price or reduced price this will allow non-breaking upgrades of NS and credential proxy * removed use of unstable rust features * rebuilt contract schema * correct license timestamp
51 lines
1.3 KiB
TOML
51 lines
1.3 KiB
TOML
[package]
|
|
name = "nym-ecash"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[[bin]]
|
|
name = "schema"
|
|
required-features = ["schema-gen"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
bs58.workspace = true
|
|
schemars = { workspace = true }
|
|
cosmwasm-std = { workspace = true }
|
|
cosmwasm-schema = { workspace = true }
|
|
serde = { workspace = true }
|
|
sylvia = { workspace = true }
|
|
cw-storage-plus = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
cw-controllers = { workspace = true }
|
|
|
|
cw2 = { workspace = true }
|
|
cw3 = { workspace = true }
|
|
cw4 = { workspace = true }
|
|
cw-utils = { workspace = true }
|
|
semver = { workspace = true, default-features = false }
|
|
|
|
nym-ecash-contract-common = { workspace = true }
|
|
nym-contracts-common = { workspace = true }
|
|
nym-multisig-contract-common = { workspace = true }
|
|
nym-network-defaults = { workspace = true, default-features = false }
|
|
|
|
[dev-dependencies]
|
|
anyhow = { workspace = true }
|
|
sylvia = { workspace = true, features = ["mt"] }
|
|
nym-crypto = { workspace = true, features = ["rand", "asymmetric"] }
|
|
cw-multi-test = { workspace = true }
|
|
nym-contracts-common-testing = { workspace = true }
|
|
|
|
|
|
[features]
|
|
schema-gen = ["nym-ecash-contract-common/schema"]
|
|
|
|
[lints]
|
|
workspace = true
|