Skip to content

Commit

Permalink
more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
taitruong committed Sep 3, 2024
1 parent d4aac2e commit 21888fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions contracts/sg-ics721/src/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,9 @@ impl Ics721Execute for SgIcs721Contract {

let msg = sg721_metadata_onchain::ExecuteMsg::Mint {
token_id,
token_uri,
token_uri, // holds off-chain metadata
owner,
extension,
extension, // holds on-chain metadata
};
to_json_binary(&msg)
}
Expand Down
4 changes: 2 additions & 2 deletions packages/ics721/src/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -766,9 +766,9 @@ where

let msg = cw721_metadata_onchain::msg::ExecuteMsg::Mint {
token_id,
token_uri,
token_uri, // holds off-chain metadata
owner,
extension,
extension, // holds on-chain metadata
};
to_json_binary(&msg)
}
Expand Down

0 comments on commit 21888fc

Please sign in to comment.