87cb8a6b20
* create_payload and call from nym-cli * Remove some commented out code * wip * Service announce now compiles * Fix other compilation issues * Move ServiceDetails into Service * Move service_id inside Service type * wip: start sorting out tests * wip: sorting out testing * wip: first announce test now works * wip: more work on announce test * Move nonce * Add check for nonce * Extract out some helpers to separate files * reenable state::services tests * wip: start going through the integration tests * All integration tests reenabled * Remove some unused stuff * Iterate on integration tests * More iteration on test setup * Rename to test_setup.rs * Add more tests specific to signing * Tweak * Another nonce test and reorg * Rename to announce.rs and delete.rs * Tidy * Make some inner modules private * Use IdentityKey alias * Update nym-api contract cache * Fix that nym-cli was asking for signing nonce from wrong contract * Add sign comment to network-requester * Uploaded updated service provider contract to qwerty * Allow large enum variant * lock files * Remove dbg * Move error.rs to service-provider common * Update code for moving errors.rs to common crate * Rename to SpContractError * constants module not pub * lock file * rustfmt * Move IdentityKey type to contract-common * clippy
44 lines
1.8 KiB
TOML
44 lines
1.8 KiB
TOML
[package]
|
|
name = "nym-cli-commands"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
base64 = "0.13.0"
|
|
bip39 = { workspace = true }
|
|
bs58 = "0.4"
|
|
comfy-table = "6.0.0"
|
|
cfg-if = "1.0.0"
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
cw-utils = { workspace = true }
|
|
handlebars = "3.0.1"
|
|
humantime-serde = "1.0"
|
|
k256 = { version = "0.10", features = ["ecdsa", "sha256"] }
|
|
log = { workspace = true }
|
|
rand = {version = "0.6", features = ["std"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = "1"
|
|
time = { version = "0.3.6", features = ["parsing", "formatting"] }
|
|
toml = "0.5.6"
|
|
url = "2.2"
|
|
tap = "1"
|
|
|
|
cosmrs = { git = "https://github.com/neacsu/cosmos-rust", branch = "neacsu/feegrant_support" }
|
|
cosmwasm-std = { workspace = true }
|
|
|
|
nym-validator-client = { path = "../client-libs/validator-client", features = ["nyxd-client"] }
|
|
nym-bin-common = { path = "../../common/bin-common", features = ["output_format"] }
|
|
nym-crypto = { path = "../../common/crypto", features = ["asymmetric"] }
|
|
nym-network-defaults = { path = "../network-defaults" }
|
|
nym-contracts-common = { path = "../cosmwasm-smart-contracts/contracts-common" }
|
|
nym-mixnet-contract-common = { path = "../cosmwasm-smart-contracts/mixnet-contract" }
|
|
nym-vesting-contract-common = { path = "../cosmwasm-smart-contracts/vesting-contract" }
|
|
nym-coconut-bandwidth-contract-common = { path = "../cosmwasm-smart-contracts/coconut-bandwidth-contract" }
|
|
nym-coconut-dkg-common = { path = "../cosmwasm-smart-contracts/coconut-dkg" }
|
|
nym-multisig-contract-common = { path = "../cosmwasm-smart-contracts/multisig-contract" }
|
|
nym-service-provider-directory-common = { path = "../cosmwasm-smart-contracts/service-provider-directory" }
|
|
nym-name-service-common = { path = "../cosmwasm-smart-contracts/name-service" }
|
|
nym-sphinx = { path = "../../common/nymsphinx" }
|