Skip to content

Instantly share code, notes, and snippets.

View alper95polat's full-sized avatar

Alper alper95polat

View GitHub Profile
@plutoegg
plutoegg / TetherToken.sol
Last active May 25, 2024 08:15
TetherToken.sol - Tether.to USD
pragma solidity ^0.4.11;
/**
* Math operations with safety checks
*/
library SafeMath {
function mul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;