Skip to content

Commit

Permalink
chore: bump finschia-proto:4.0.0 (#24)
Browse files Browse the repository at this point in the history
* chore: bump finschia-proto:4.0.0

* chore: update changelog
  • Loading branch information
jaeseung-bae authored Jun 10, 2024
1 parent 58872d3 commit b012dc6
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* [\#21](https://github.com/Finschia/finschia-kt/pull/21) add MsgCreateValidator examples for single and multi-sig
* [\#22](https://github.com/Finschia/finschia-kt/pull/22) bump up finschia-proto:2.0.0
* [\#23](https://github.com/Finschia/finschia-kt/pull/23) add new example for MsgSwap&MsgTransfer Tx
* [\#24](https://github.com/Finschia/finschia-kt/pull/24) bump up finschia-proto:4.0.0

### Changed
* [\#19](https://github.com/Finschia/finschia-kt/pull/19) change the value of AminoMsg to the general type
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

gRPC client library in kotlin for finschia (https://github.com/Finschia/finschia).

Requires [finschia-sdk v0.48.0](https://github.com/Finschia/finschia-sdk/tree/v0.48.0)
Requires [finschia-sdk v0.49.0](https://github.com/Finschia/finschia-sdk/tree/v0.49.0)

Current finschia-sdk version applied to finschia-kt/protobuf is [finschia-sdk v0.48.0](https://github.com/Finschia/finschia-sdk/tree/v0.48.0)
Current finschia-sdk version applied to finschia-kt/protobuf is [finschia-sdk v0.49.0](https://github.com/Finschia/finschia-sdk/tree/v0.49.0)

## Using SDK

Expand All @@ -17,7 +17,7 @@ dependencies {
```
* finschia-kt SDK(proto)
```kotlin
val sdkProtoVersion = "2.0.0"
val sdkProtoVersion = "4.0.0"

dependencies {
implementation("network.finschia:finschia-proto:$sdkProtoVersion")
Expand Down Expand Up @@ -91,7 +91,7 @@ The former is using the tx wrapper, while the latter does not use the wrapper.

### 1. Run finschia-sdk simapp

Build with reference to [Quick Start build](https://github.com/Finschia/finschia-sdk/tree/v0.48.0#quick-start).
Build with reference to [Quick Start build](https://github.com/Finschia/finschia-sdk/tree/v0.49.0#quick-start).

Initialize and configure simapp.

Expand Down
2 changes: 1 addition & 1 deletion examples/multisig-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {

// Finschia sdk
implementation("network.finschia:finschia-kt-crypto:0.2.2")
implementation("network.finschia:finschia-proto:4.0.0-rc2")
implementation("network.finschia:finschia-proto:4.0.0")

implementation(project(":tx"))
}
Expand Down
2 changes: 1 addition & 1 deletion examples/query-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {

// Finschia sdk
implementation("network.finschia:finschia-kt-crypto:0.2.2")
implementation("network.finschia:finschia-proto:4.0.0-rc2")
implementation("network.finschia:finschia-proto:4.0.0")

implementation(project(":tx"))
}
Expand Down
2 changes: 1 addition & 1 deletion examples/with-tx-wrapper-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {

// Finschia sdk
implementation("network.finschia:finschia-kt-crypto:0.2.2")
implementation("network.finschia:finschia-proto:4.0.0-rc2")
implementation("network.finschia:finschia-proto:4.0.0")

implementation(project(":tx"))
}
Expand Down
2 changes: 1 addition & 1 deletion examples/without-tx-wrapper-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies {

// Finschia sdk
implementation("network.finschia:finschia-kt-crypto:0.2.2")
implementation("network.finschia:finschia-proto:4.0.0-rc2")
implementation("network.finschia:finschia-proto:4.0.0")
}

application {
Expand Down
2 changes: 1 addition & 1 deletion tx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ dependencies {

// Finschia sdk
implementation("network.finschia:finschia-kt-crypto:0.2.2")
implementation("network.finschia:finschia-proto:2.0.0")
implementation("network.finschia:finschia-proto:4.0.0")
}

0 comments on commit b012dc6

Please sign in to comment.