9ca3f69aa8
* Clients use env * Explorer api uses env * Mainnet and qa env files * Set CONFIGURED on the mainnet defaulting * Gateway uses env * Mixnode uses env * Wallet error simplification * Network requester takes only mainnet client address * Validator api uses env * Mixnet contract uses denom from instantiate * Vesting contract uses denom from instantiate * More contract test refactoring * Coconut bandwidth contract uses denom from instantiate * Bandwidth claim contract uses denom from instantiate and remove from Cargos * More remove from Cargos and one missed DEFAULT_NETWORK * Refactor some other missed places * Minor fixes * Test and clippy fixes * Update CHANGELOG
26 lines
802 B
TOML
26 lines
802 B
TOML
[package]
|
|
name = "vesting-contract"
|
|
version = "1.0.1"
|
|
authors = ["Drazen Urch <durch@users.noreply.github.com>"]
|
|
edition = "2021"
|
|
|
|
exclude = [
|
|
# Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication.
|
|
"contract.wasm",
|
|
"hash.txt",
|
|
]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
mixnet-contract-common = { path = "../../common/cosmwasm-smart-contracts/mixnet-contract" }
|
|
vesting-contract-common = { path = "../../common/cosmwasm-smart-contracts/vesting-contract" }
|
|
|
|
cosmwasm-std = { version = "1.0.0 "}
|
|
cw-storage-plus = { version = "0.13.4", features = ["iterator"] }
|
|
|
|
schemars = "0.8"
|
|
serde = { version = "1.0", default-features = false, features = ["derive"] }
|
|
thiserror = { version = "1.0" }
|