Skip to content

Commit

Permalink
feat: bump prost
Browse files Browse the repository at this point in the history
  • Loading branch information
maxrobot committed Oct 16, 2024
1 parent e8fbe0c commit 5c56d3b
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 10 deletions.
6 changes: 6 additions & 0 deletions packages/injective-test-tube/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 1.13.2-auction.1 - 2024-16-10

### Changed

- Bumped `[email protected]`

## 1.13.2-auction - 2024-08-10

### Changed
Expand Down
10 changes: 5 additions & 5 deletions packages/injective-test-tube/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "injective-test-tube"
repository = "https://github.com/InjectiveLabs/test-tube"
version = "1.13.2-auction"
version = "1.13.2-auction.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

exclude = [ "injective-core", "test_artifacts" ]

[dependencies]
base64 = "0.21.5"
cosmrs = { version = "0.15.0", features = [ "cosmwasm", "rpc" ] }
cosmrs = { version = "0.20.0", features = [ "cosmwasm", "rpc" ] }
cosmwasm-schema = { version = "2.1.1" }
cosmwasm-std = { version = "2.1.0", features = [ "abort", "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "iterator", "stargate" ] }
hex = "0.4.2"
injective-cosmwasm = { version = "0.3.0" }
injective-std = { version = "=1.13.2-auction" }
prost = "0.12.3"
injective-std = { version = "=1.13.2-auction", path = "../../../cw-injective/packages/injective-std" }
prost = { version = "0.13.3", features = [ "prost-derive" ] }
serde = "1.0.144"
serde_json = "1.0.85"
test-tube-inj = { version = "2.0.1" }
test-tube-inj = { version = "2.0.1", path = "../../packages/test-tube" }
thiserror = "1.0.34"

[build-dependencies]
Expand Down
3 changes: 2 additions & 1 deletion packages/injective-test-tube/src/module/auction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ mod tests {
response.params,
Some(Params {
auction_period: 604800,
min_next_bid_increment_rate: 2_500_000_000_000_000u128.to_string()
min_next_bid_increment_rate: 2_500_000_000_000_000u128.to_string(),
inj_basket_max_cap: "".to_string(),
})
);

Expand Down
10 changes: 8 additions & 2 deletions packages/injective-test-tube/src/module/exchange.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,9 @@ mod tests {
sender: signer.address(),
ticker: "INJ/USDT".to_owned(),
base_denom: "inj".to_owned(),
base_decimals: 18u32,
quote_denom: "usdt".to_owned(),
quote_decimals: 6u32,
min_price_tick_size: "10000".to_owned(),
min_quantity_tick_size: "100000".to_owned(),
min_notional: "1".to_owned(),
Expand All @@ -190,7 +192,9 @@ mod tests {
sender: signer.address(),
ticker: "INJ/USDT".to_owned(),
base_denom: "inj".to_owned(),
base_decimals: 18u32,
quote_denom: "usdt".to_owned(),
quote_decimals: 6u32,
min_price_tick_size: "10000".to_owned(),
min_quantity_tick_size: "100000".to_owned(),
min_notional: "1".to_owned(),
Expand All @@ -209,8 +213,10 @@ mod tests {
let expected_response = v1beta1::QuerySpotMarketsResponse {
markets: vec![v1beta1::SpotMarket {
ticker: "INJ/USDT".to_string(),
base_denom: "inj".to_string(),
quote_denom: "usdt".to_string(),
base_denom: "inj".to_owned(),
base_decimals: 18u32,
quote_denom: "usdt".to_owned(),
quote_decimals: 6u32,
maker_fee_rate: "-100000000000000".to_string(),
taker_fee_rate: "1000000000000000".to_string(),
relayer_fee_share_rate: "400000000000000000".to_string(),
Expand Down
4 changes: 2 additions & 2 deletions packages/test-tube/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ edition = "2021"
license = "MIT OR Apache-2.0"
name = "test-tube-inj"
repository = "https://github.com/InjectiveLabs/test-tube"
version = "2.0.1"
version = "2.0.2"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
base64 = "0.21.5"
cosmrs = { version = "0.20.0", features = [ "cosmwasm", "rpc" ] }
cosmwasm-std = { version = "2.1.0", features = [ "abort", "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "iterator", "stargate" ] }
prost = { version = "0.13.3", default-features = false, features = [ "prost-derive" ] }
prost = { version = "0.13.3", features = [ "prost-derive" ] }
serde = "1.0.144"
serde_json = "1.0.85"
thiserror = "1.0.34"
Expand Down

0 comments on commit 5c56d3b

Please sign in to comment.