Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save reime005/4bcadbbd7cce2d7605dbc1be3f15cb35 to your computer and use it in GitHub Desktop.
Save reime005/4bcadbbd7cce2d7605dbc1be3f15cb35 to your computer and use it in GitHub Desktop.
/// @notice Retrieves the name for the sender's address
/// @dev Note that addressNames is public, so there is already a getter
/// @return name string at sender's address
function getAddressName()
external view
returns(string) {
return addressNames[msg.sender];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment