Skip to content

Commit

Permalink
Add Optional Recipient for minting and SetFrozen message for AssetFT (#…
Browse files Browse the repository at this point in the history
…10)

Add Optional Recipient for minting and SetFrozen message for AssetFT
  • Loading branch information
keyleu authored Nov 6, 2023
1 parent 05cbf4a commit f273871
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "coreum-wasm-sdk"
version = "0.2.2"
version = "0.2.3"
edition = "2021"
description = "SDK for WASM coreum messages and queries."
homepage = "https://coreum.com/"
Expand Down
6 changes: 5 additions & 1 deletion src/assetft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ pub enum Msg {
},
Mint {
coin: Coin,
recipient: String,
recipient: Option<String>,
},
Burn {
coin: Coin,
Expand All @@ -116,6 +116,10 @@ pub enum Msg {
account: String,
coin: Coin,
},
SetFrozen {
account: String,
coin: Coin,
},
GloballyFreeze {
denom: String,
},
Expand Down
2 changes: 1 addition & 1 deletion src/assetnft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ pub enum Msg {
uri: Option<String>,
uri_hash: Option<String>,
data: Option<Binary>,
recipient: String,
recipient: Option<String>,
},
Burn {
class_id: String,
Expand Down

0 comments on commit f273871

Please sign in to comment.