84c43ebf54
- validator binary - to enable easy to use commands on the network - contains all operations (vesting / normal)
29 lines
994 B
TOML
29 lines
994 B
TOML
[package]
|
|
name = "validator-client-scripts"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
base64 = "0.13.0"
|
|
bs58 = "0.4"
|
|
clap = { version = "3.2.8", features = ["derive"] }
|
|
csv = "1.1"
|
|
dotenv = "0.15.0"
|
|
log = "0.4"
|
|
pretty_env_logger = "0.4"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1.11", features = [ "net", "rt-multi-thread", "macros", "signal"] }
|
|
streaming-stats = "0.2.3"
|
|
|
|
|
|
# we don't really need those directly, but including them somehow solves dependency issue
|
|
url = "2.2"
|
|
bip39 = "1.0.1"
|
|
|
|
validator-client = { path = "../../common/client-libs/validator-client", features = ["nymd-client"] }
|
|
network-defaults = { path = "../../common/network-defaults" }
|
|
mixnet-contract-common ={ path = "../../common/cosmwasm-smart-contracts/mixnet-contract" }
|
|
vesting-contract-common = { path = "../../common/cosmwasm-smart-contracts/vesting-contract" } |