8000 fix: add dynamic fee to swagger config by beer-1 · Pull Request #383 · initia-labs/initia · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix: add dynamic fee to swagger config #383

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

Merged
merged 1 commit into from
Apr 3, 2025
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
8 changes: 8 additions & 0 deletions client/docs/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,14 @@
{
"url": "./tmp-swagger-gen/initia/tx/v1/query.swagger.json"
},
{
"url": "./tmp-swagger-gen/initia/dynamicfee/v1/query.swagger.json",
"operationIds": {
"rename": {
"Params": "DynamicFeeParams"
}
}
},
{
"url": "./tmp-swagger-gen/sdk/auction/v1/query.swagger.json",
"operationIds": {
Expand Down
2 changes: 1 addition & 1 deletion client/docs/statik/statik.go

Large diffs are not rendered by default.

85 changes: 85 additions & 0 deletions client/docs/swagger-ui/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55344,6 +55344,58 @@ paths:
type: string
tags:
- Query
/initia/dynamicfee/v1/params:
get:
summary: Params queries the params
operationId: DynamicFeeParams
responses:
'200':
description: A successful response.
schema:
type: object
properties:
params:
description: params defines the parameters of the module.
type: object
properties:
base_gas_price:
type: string
min_base_gas_price:
type: string
max_base_gas_price:
type: string
max_change_rate:
type: string
target_gas:
type: string
format: int64
description: >-
QueryParamsResponse is the response type for the Query/Params RPC
method.
default:
description: An unexpected error response.
schema:
type: object
properties:
error:
type: string
code:
type: integer
format: int32
message:
type: string
details:
type: array
items:
type: object
properties:
type_url:
type: string
value:
type: string
format: byte
tags:
- Query
/block-sdk/auction/v1/params:
get:
summary: Params queries the parameters of the x/auction module.
Expand Down Expand Up @@ -90627,6 +90679,39 @@ definitions:
description: >-
QueryGasPricesResponse is the response type for the Query/GasPrices RPC
method.
initia.dynamicfee.v1.Params:
type: object
properties:
base_gas_price:
type: string
min_base_gas_price:
type: string
max_base_gas_price:
type: string
max_change_rate:
type: string
target_gas:
type: string
format: int64
initia.dynamicfee.v1.QueryParamsResponse:
type: object
properties:
params:
description: params defines the parameters of the module.
type: object
properties:
base_gas_price:
type: string
min_base_gas_price:
type: string
max_base_gas_price:
type: string
max_change_rate:
type: string
target_gas:
type: string
format: int64
description: QueryParamsResponse is the response type for the Query/Params RPC method.
sdk.auction.v1.Params:
type: object
properties:
Expand Down
Loading
0