Skip to content

Commit

Permalink
fix getTokenData() return type
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelcabot committed Nov 14, 2022
1 parent e3a9c89 commit 1d100bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions contracts/SoulName.sol
Expand Up @@ -232,6 +232,7 @@ contract SoulName is MasaNFT, ISoulName {
/// @dev This function queries the information of a soul name
/// @param name Name of the soul name
/// @return sbtName Soul name, in upper/lower case and extension
/// @return linked `true` if the soul name is linked, `false` otherwise
/// @return identityId Identity id of the soul name
/// @return tokenId SoulName id of the soul name
/// @return expirationDate Expiration date of the soul name
Expand Down
1 change: 1 addition & 0 deletions contracts/interfaces/ISoulName.sol
Expand Up @@ -22,6 +22,7 @@ interface ISoulName {
view
returns (
string memory sbtName,
bool linked,
uint256 identityId,
uint256 tokenId,
uint256 expirationDate,
Expand Down

0 comments on commit 1d100bc

Please sign in to comment.