-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support new features introduced in Coreum v4 (#13)
* update NFT protos and upgrade dependencies * Remove all extra serde for Contracts (not going to be used) * add extenstion address and admin for queries * make globally_frozen optional because it's not sent if false * make admin optional * upgrade prost version * add types for distribution module * update wasmd protos * Update version to 1.0.0 Co-Authored-By: keyne <[email protected]>
- Loading branch information
1 parent
9e1b6bb
commit eab3555
Showing
20 changed files
with
1,930 additions
and
770 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
[package] | ||
name = "coreum-wasm-sdk" | ||
version = "0.2.4" | ||
version = "1.0.0" | ||
edition = "2021" | ||
description = "SDK for WASM coreum messages and queries." | ||
homepage = "https://coreum.com/" | ||
license = "Apache-2.0" | ||
|
||
[dependencies] | ||
cosmwasm-std = { version = "1.5.0", features = ["stargate"] } | ||
serde = { version = "1.0.193", default-features = false, features = ["derive"] } | ||
schemars = "0.8.16" | ||
cosmwasm-schema = "1.5.0" | ||
cosmwasm-std = { version = "1.5.5", features = ["stargate"] } | ||
serde = { version = "1.0.203", default-features = false, features = ["derive"] } | ||
schemars = "0.8.21" | ||
cosmwasm-schema = "1.5.5" | ||
osmosis-std-derive = "0.20.1" | ||
chrono = { version = "0.4.30", default-features = false } | ||
prost = { version = "0.11.0", default-features = false, features = [ | ||
chrono = { version = "0.4.38", default-features = false } | ||
prost = { version = "0.12.6", default-features = false, features = [ | ||
"prost-derive", | ||
] } | ||
prost-types = { version = "0.12.0", default-features = false } | ||
prost-types = { version = "0.12.6", default-features = false } | ||
serde-cw-value = "0.7.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,3 @@ pub mod pagination; | |
pub mod shim; | ||
#[allow(deprecated)] | ||
pub mod types; | ||
mod serde; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.