Смарт контракт Gold Lion

0x2b71caEEcd1594F40C6b5E6fa05cBACB65f584b5

Gold Lion Token

Ecosystem Website: https://triunity.space

Domen web3 for browser Brave: goldlion.unstoppable */

interface IERC20 { function totalSupply() external view returns (uint256);

}

// @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. library SafeMath { // Counterpart to Solidity's + operator. function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; }

}

contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () { }

}

contract Ownable is Context { address private _owner;

}

contract GoldLionToken is Context, Ownable, IERC20 { using SafeMath for uint256;

}

Last updated