2db1bc8efa
* Save to disk coconut keypair * Check verification keys of the other signers * Post verification key to chain * Add multisig propose/vote for vks * Execute the proposal * Parse announce address argument * Gateway uses chain data * Network requester uses chain data * Native&socks5 clients use chain data * Credential client signature uses chain data * Remove redundant api endpoints * Undo debugging logging * Fix some tests * Fix clippy * Fix wasm client and contract test * More contract clippy * Update CHANGELOG * Use a bigger expiry period then the testing one
34 lines
1.1 KiB
TOML
34 lines
1.1 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" }
|
|
|
|
cosmwasm-std = "1.0.0"
|
|
cosmwasm-storage = "1.0.0"
|
|
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"
|