Last active
October 6, 2021 15:20
-
-
Save sepisoltani/93582f518205b7671d690be26afa5166 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
contract Example{ | |
// For a financial app, storing a uint that holds the user's account balance: | |
mapping (address => uint) public accountBalance; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment