-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
F/bump prost #50
base: dev
Are you sure you want to change the base?
F/bump prost #50
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,31 +17,31 @@ | |
where | ||
R: Runner<'a>, | ||
{ | ||
fn_execute! { | ||
Check failure on line 20 in packages/injective-test-tube/src/module/exchange.rs GitHub Actions / Lints
|
||
pub instant_spot_market_launch: v1beta1::MsgInstantSpotMarketLaunch => v1beta1::MsgInstantSpotMarketLaunchResponse | ||
} | ||
|
||
fn_execute! { | ||
Check failure on line 24 in packages/injective-test-tube/src/module/exchange.rs GitHub Actions / Lints
|
||
pub create_spot_limit_order: v1beta1::MsgCreateSpotLimitOrder => v1beta1::MsgCreateSpotLimitOrderResponse | ||
} | ||
|
||
fn_execute! { | ||
Check failure on line 28 in packages/injective-test-tube/src/module/exchange.rs GitHub Actions / Lints
|
||
pub create_derivative_limit_order: v1beta1::MsgCreateDerivativeLimitOrder => v1beta1::MsgCreateDerivativeLimitOrderResponse | ||
} | ||
|
||
fn_execute! { | ||
Check failure on line 32 in packages/injective-test-tube/src/module/exchange.rs GitHub Actions / Lints
|
||
pub cancel_spot_order: v1beta1::MsgCancelSpotOrder => v1beta1::MsgCancelSpotOrderResponse | ||
} | ||
|
||
fn_execute! { | ||
Check failure on line 36 in packages/injective-test-tube/src/module/exchange.rs GitHub Actions / Lints
|
||
pub cancel_derivative_order: v1beta1::MsgCancelDerivativeOrder => v1beta1::MsgCancelDerivativeOrderResponse | ||
} | ||
|
||
fn_execute! { | ||
Check failure on line 40 in packages/injective-test-tube/src/module/exchange.rs GitHub Actions / Lints
|
||
pub batch_update_orders: v1beta1::MsgBatchUpdateOrders => v1beta1::MsgBatchUpdateOrdersResponse | ||
} | ||
|
||
fn_execute! { | ||
Check failure on line 44 in packages/injective-test-tube/src/module/exchange.rs GitHub Actions / Lints
|
||
pub instant_perpetual_market_launch: v1beta1::MsgInstantPerpetualMarketLaunch => v1beta1::MsgInstantPerpetualMarketLaunchResponse | ||
} | ||
|
||
|
@@ -138,7 +138,7 @@ | |
cosmos::base::v1beta1::Coin as SDKCoin, | ||
injective::exchange::v1beta1, | ||
}; | ||
use prost::Message; | ||
|
||
use crate::{Account, Authz, Exchange, InjectiveTestApp}; | ||
use test_tube_inj::Module; | ||
|
@@ -175,7 +175,9 @@ | |
sender: signer.address(), | ||
ticker: "INJ/USDT".to_owned(), | ||
base_denom: "inj".to_owned(), | ||
base_decimals: 18u32, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is a variable with decimals values why not use it ? |
||
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(), | ||
|
@@ -190,7 +192,9 @@ | |
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(), | ||
|
@@ -209,8 +213,10 @@ | |
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(), | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" ] } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Missing The 🔗 Analysis chainProst dependency updated, but cosmrs update is missing. The However, I noticed that the To confirm the current state of dependencies, you can run: 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check current versions of prost and cosmrs in all Cargo.toml files
rg --type toml 'prost.*version|cosmrs.*version' .
Length of output: 493 |
||
serde = "1.0.144" | ||
serde_json = "1.0.85" | ||
thiserror = "1.0.34" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the date format in the new changelog entry.
The new changelog entry looks good overall, following the established format and providing a clear description of the change. However, there's a small issue with the date format.
Please update the date format to follow the YYYY-MM-DD pattern. The current date "2024-16-10" is invalid as there is no 16th month. It should likely be "2024-10-16" (assuming October 16, 2024).
Apply this change:
The rest of the changelog entry is well-formatted and clearly describes the version bump for the
prost
dependency.📝 Committable suggestion