64c963e36e
* Reset contract state when dkg needs rerun * Reset nym-api for rerun * Gateway updates signer APIs at runtime * Fix clippy * Add epoch id * Use IndexedMap for shares * Query with epoch id * Add Clone to client traits * Pass nyxd client instead of api data * Get the specific epoch vk * Make wasm work * Remove wasm test runs As there are no wasm tests and the target_arch macros are not compatible with the cargo test environment, we can safely remove (for now) the wasm test target runs. * Put epoch_id in storage pk * Gateway uses old keys but current verifiers * Add group contract to env * Move group msg in common * Only run DKG if part of group * Clippy test * Rename wasm_storage to wasm_mockups * Update changelog
36 lines
1.2 KiB
TOML
36 lines
1.2 KiB
TOML
[package]
|
|
name = "coconut-test"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bandwidth-claim-contract = { path = "../../common/bandwidth-claim-contract" }
|
|
coconut-bandwidth-contract-common = { path = "../../common/cosmwasm-smart-contracts/coconut-bandwidth-contract" }
|
|
coconut-dkg-common = { path = "../../common/cosmwasm-smart-contracts/coconut-dkg" }
|
|
multisig-contract-common = { path = "../../common/cosmwasm-smart-contracts/multisig-contract" }
|
|
group-contract-common = { path = "../../common/cosmwasm-smart-contracts/group-contract" }
|
|
|
|
cosmwasm-std = "1.0.0"
|
|
cosmwasm-storage = "1.0.0"
|
|
cw3 = "0.13.4"
|
|
cw4 = "0.13.4"
|
|
cw-storage-plus = "0.13.4"
|
|
cw-controllers = "0.13.4"
|
|
cw-utils = "0.13.4"
|
|
|
|
schemars = "0.8"
|
|
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
|
|
thiserror = "1.0.23"
|
|
|
|
coconut-bandwidth = { path = "../coconut-bandwidth" }
|
|
coconut-dkg = { path = "../coconut-dkg" }
|
|
cw-multi-test = { version = "0.13.4" }
|
|
cw3-flex-multisig = { path = "../multisig/cw3-flex-multisig" }
|
|
cw4-group = { path = "../multisig/cw4-group" }
|
|
|
|
[[test]]
|
|
name = "coconut-test"
|
|
path = "src/tests.rs"
|