Skip to content

Instantly share code, notes, and snippets.

@m9800
Last active October 11, 2022 22:57
Show Gist options
  • Save m9800/20e9452097fe9b2d846febd66a56cefb to your computer and use it in GitHub Desktop.
Save m9800/20e9452097fe9b2d846febd66a56cefb to your computer and use it in GitHub Desktop.
function mint(address to) public returns (uint256) {
       uint256 newWarriorId = tokenIds.current();
       _safeMint(to, newWarriorId); 
 
       tokenIds.increment();
 
       return newWarriorId;
   }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment