Skip to content

Instantly share code, notes, and snippets.

View SebasAran16's full-sized avatar
πŸ‘¨β€πŸ’»
Learning...

Sebastian Zambrano Arango SebasAran16

πŸ‘¨β€πŸ’»
Learning...
View GitHub Profile
@giladHaimov
giladHaimov / BasicERC20.sol
Last active March 19, 2025 19:41
Basic ERC20 implementation
pragma solidity ^0.4.19;
contract ERC20Basic {
string public constant name = "ERC20Basic";
string public constant symbol = "BSC";
uint8 public constant decimals = 18;
event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
@veox
veox / erc20.abi.json
Created January 21, 2018 14:59
ERC20 ABI in JSON format
[
{
"constant": true,
"inputs": [],
"name": "name",
"outputs": [
{
"name": "",
"type": "string"
}