Skip to content

Instantly share code, notes, and snippets.

View leonprou's full-sized avatar
🎯
On target

Leon Prouger leonprou

🎯
On target
  • Tel Aviv
  • 07:18 (UTC +03:00)
View GitHub Profile
@leonprou
leonprou / erc20.sol
Created October 15, 2020 13:11
erc20.sol
pragma solidity >=0.4.22 <0.6.0;
interface tokenRecipient {
function receiveApproval(address _from, uint256 _value, address _token, bytes calldata _extraData) external;
}
contract TokenERC20 {
// Public variables of the token
string public name;
string public symbol;