Skip to content
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

fix: taker fee query via grpc gateway #6939

Merged
merged 2 commits into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### API

* [#6939](https://github.com/osmosis-labs/osmosis/pull/6939) Fix taker fee GRPC gateway query path in poolmanager.

### Features

* [#6804](https://github.com/osmosis-labs/osmosis/pull/6804) feat: track and query protocol rev across all modules
Expand Down
2 changes: 1 addition & 1 deletion proto/osmosis/poolmanager/v1beta1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ service Query {
rpc TradingPairTakerFee(TradingPairTakerFeeRequest)
returns (TradingPairTakerFeeResponse) {
option (google.api.http).get =
"/osmosis/poolmanager/v1beta1/pools/trading_pair_takerfee";
"/osmosis/poolmanager/v1beta1/trading_pair_takerfee";
}

// EstimateTradeBasedOnPriceImpact returns an estimated trade based on price
Expand Down
Loading