-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
89 additions
and
7 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
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
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Cw721ReceiveMsg", | ||
"description": "Cw721ReceiveMsg should be de/serialized under `Receive()` variant in a HandleMsg", | ||
"type": "object", | ||
"required": [ | ||
"amount", | ||
"sender" | ||
], | ||
"properties": { | ||
"amount": { | ||
"$ref": "#/definitions/Uint128" | ||
}, | ||
"msg": { | ||
"anyOf": [ | ||
{ | ||
"$ref": "#/definitions/Binary" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
}, | ||
"sender": { | ||
"$ref": "#/definitions/HumanAddr" | ||
} | ||
}, | ||
"definitions": { | ||
"Binary": { | ||
"description": "Binary is a wrapper around Vec<u8> to add base64 de/serialization with serde. It also adds some helper methods to help encode inline.\n\nThis is only needed as serde-json-{core,wasm} has a horrible encoding for Vec<u8>", | ||
"type": "string" | ||
}, | ||
"HumanAddr": { | ||
"type": "string" | ||
}, | ||
"Uint128": { | ||
"type": "string" | ||
} | ||
} | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
use schemars::JsonSchema; | ||
use serde::{Deserialize, Serialize}; | ||
|
||
use cosmwasm_std::{to_binary, Binary, CosmosMsg, HumanAddr, StdResult, Uint128, WasmMsg}; | ||
|
||
/// Cw721ReceiveMsg should be de/serialized under `Receive()` variant in a HandleMsg | ||
#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)] | ||
#[serde(rename_all = "snake_case")] | ||
pub struct Cw721ReceiveMsg { | ||
pub sender: HumanAddr, | ||
pub amount: Uint128, | ||
pub msg: Option<Binary>, | ||
} | ||
|
||
impl Cw721ReceiveMsg { | ||
/// serializes the message | ||
pub fn into_binary(self) -> StdResult<Binary> { | ||
let msg = ReceiverHandleMsg::ReceiveNft(self); | ||
to_binary(&msg) | ||
} | ||
|
||
/// creates a cosmos_msg sending this struct to the named contract | ||
pub fn into_cosmos_msg(self, contract_addr: HumanAddr) -> StdResult<CosmosMsg> { | ||
let msg = self.into_binary()?; | ||
let execute = WasmMsg::Execute { | ||
contract_addr, | ||
msg, | ||
send: vec![], | ||
}; | ||
Ok(execute.into()) | ||
} | ||
} | ||
|
||
/// This is just a helper to properly serialize the above message. | ||
/// The actual receiver should include this variant in the larger HandleMsg enum | ||
#[derive(Serialize, Deserialize, Clone, PartialEq, JsonSchema, Debug)] | ||
#[serde(rename_all = "snake_case")] | ||
enum ReceiverHandleMsg { | ||
ReceiveNft(Cw721ReceiveMsg), | ||
} |