Skip to content

Instantly share code, notes, and snippets.

@ajb413
Created February 11, 2020 02:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajb413/12ae3ff460ace2f40665c7b13d98f808 to your computer and use it in GitHub Desktop.
Save ajb413/12ae3ff460ace2f40665c7b13d98f808 to your computer and use it in GitHub Desktop.
snippet of a Solidity smart contract file
contract Erc20 {
function approve(address, uint) external returns (bool);
function transfer(address, uint) external returns (bool);
}
contract CErc20 {
function mint(uint) external returns (uint);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment