Skip to content

Commit ea2b52b

Browse files
build: bump up finschis-sdk from v0.49.0-rc5 to v0.49.0-rc6 (#378) (#379)
* build: bump up finschis-sdk from v0.49.0-rc5 to v0.49.0-rc6 * chore: update changelog * chore: update swagger * chore: fix for missing dep for fswap keeper * chore: update swagger * chore: update changelog (cherry picked from commit 5c3ba69) Co-authored-by: jaeseung-bae <[email protected]>
1 parent 3652154 commit ea2b52b

File tree

6 files changed

+74
-5
lines changed

6 files changed

+74
-5
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
4444
* (fswap, fbridge) [\#365](https://github.com/Finschia/finschia/pull/365) Load fbridge & fswap stores
4545
* (fswap) [\#366](https://github.com/Finschia/finschia/pull/366) Bump github.com/Finschia/finschia-sdk from v0.49.0-rc3 to v0.49.0-rc4
4646
* (fswap, fbridge) [\#373](https://github.com/Finschia/finschia/pull/373) Bump github.com/Finschia/finschia-sdk from v0.49.0-rc4 to v0.49.0-rc5
47+
* (fswap) [\#378](https://github.com/Finschia/finschia/pull/378) Bump github.com/Finschia/finschia-sdk from v0.49.0-rc5 to v0.49.0-rc6
4748

4849
### Improvements
4950

app/app.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ func NewLinkApp(
478478
)
479479

480480
fswapConfig := fswaptypes.DefaultConfig()
481-
app.FswapKeeper = fswapkeeper.NewKeeper(appCodec, keys[fswaptypes.StoreKey], fswapConfig, fswaptypes.DefaultAuthority().String(), app.BankKeeper)
481+
app.FswapKeeper = fswapkeeper.NewKeeper(appCodec, keys[fswaptypes.StoreKey], fswapConfig, fswaptypes.DefaultAuthority().String(), app.AccountKeeper, app.BankKeeper)
482482
app.FbridgeKeeper = fbridgekeeper.NewKeeper(appCodec, keys[fbridgetypes.StoreKey], memKeys[fbridgetypes.MemStoreKey], app.AccountKeeper, app.BankKeeper, foundation.DefaultAuthority().String())
483483

484484
// register the proposal types

client/docs/statik/statik.go

+1-1
Large diffs are not rendered by default.

client/docs/swagger-ui/swagger.yaml

+68
Original file line numberDiff line numberDiff line change
@@ -29259,6 +29259,60 @@ paths:
2925929259
format: byte
2926029260
tags:
2926129261
- Service
29262+
/lbm/fswap/v1/swap:
29263+
get:
29264+
summary: Swap queries a swap
29265+
operationId: Swap
29266+
responses:
29267+
'200':
29268+
description: A successful response.
29269+
schema:
29270+
type: object
29271+
properties:
29272+
swap:
29273+
type: object
29274+
properties:
29275+
from_denom:
29276+
type: string
29277+
to_denom:
29278+
type: string
29279+
amount_cap_for_to_denom:
29280+
type: string
29281+
swap_rate:
29282+
type: string
29283+
default:
29284+
description: An unexpected error response.
29285+
schema:
29286+
type: object
29287+
properties:
29288+
error:
29289+
type: string
29290+
code:
29291+
type: integer
29292+
format: int32
29293+
message:
29294+
type: string
29295+
details:
29296+
type: array
29297+
items:
29298+
type: object
29299+
properties:
29300+
type_url:
29301+
type: string
29302+
value:
29303+
type: string
29304+
format: byte
29305+
parameters:
29306+
- name: fromDenom
29307+
in: query
29308+
required: false
29309+
type: string
29310+
- name: toDenom
29311+
in: query
29312+
required: false
29313+
type: string
29314+
tags:
29315+
- Query
2926229316
/lbm/fswap/v1/swapped:
2926329317
get:
2926429318
summary: >-
@@ -66071,6 +66125,20 @@ definitions:
6607166125
minimum_gas_price:
6607266126
type: string
6607366127
description: ConfigResponse defines the response structure for the Config gRPC query.
66128+
lbm.fswap.v1.QuerySwapResponse:
66129+
type: object
66130+
properties:
66131+
swap:
66132+
type: object
66133+
properties:
66134+
from_denom:
66135+
type: string
66136+
to_denom:
66137+
type: string
66138+
amount_cap_for_to_denom:
66139+
type: string
66140+
swap_rate:
66141+
type: string
6607466142
lbm.fswap.v1.QuerySwappedResponse:
6607566143
type: object
6607666144
properties:

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/Finschia/finschia/v4
33
go 1.20
44

55
require (
6-
github.com/Finschia/finschia-sdk v0.49.0-rc5
6+
github.com/Finschia/finschia-sdk v0.49.0-rc6
77
github.com/Finschia/ostracon v1.1.3
88
github.com/Finschia/wasmd v0.3.0
99
github.com/Finschia/wasmvm v1.1.1-0.12.0

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym
4747
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d h1:nalkkPQcITbvhmL4+C4cKA87NW0tfm3Kl9VXRoPywFg=
4848
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d/go.mod h1:URdX5+vg25ts3aCh8H5IFZybJYKWhJHYMTnf+ULtoC4=
4949
github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ=
50-
github.com/Finschia/finschia-sdk v0.49.0-rc5 h1:syIrTYR9YAIekQVxIlP43rTYYjat2qrWutWcfpnOJsI=
51-
github.com/Finschia/finschia-sdk v0.49.0-rc5/go.mod h1:bmPv3zWUAWmm+ZxLpUAK3NhURQ4l+3tg3Bw+WcinbmY=
50+
github.com/Finschia/finschia-sdk v0.49.0-rc6 h1:cstv+/RU5Q4hU2KJDJkUAQ/k+QJFIGVvYkRn/hR1YUc=
51+
github.com/Finschia/finschia-sdk v0.49.0-rc6/go.mod h1:bmPv3zWUAWmm+ZxLpUAK3NhURQ4l+3tg3Bw+WcinbmY=
5252
github.com/Finschia/ibc-go/v4 v4.3.1 h1:pUKry0j+1/ypCC3X1TkEzoLrS1A/low/1PE2HZL+13k=
5353
github.com/Finschia/ibc-go/v4 v4.3.1/go.mod h1:kFZgmXXT2pt9QL7Ngx/eA7lI9JlOMGRG/oU4RTDXKcg=
5454
github.com/Finschia/ostracon v1.1.3 h1:GYPTc8et+sXEq9W2SUlYwvnImpZ4aG8hI2cIhyBWRSU=

0 commit comments

Comments
 (0)