I decided to try out this "Etheremon" game I keep hearing about constantly in crypto publications, claiming that "Ethereum isn't ready for us", due to scaling. I check out their code, and jesus christ they have TOKEN FREEZING coded in, which only the admin can use
>etherscan.io
function _transfer(address _from, address _to, uint _value) internal {
require (_to != 0x0);
require (balanceOf[_from] >= _value);
require (balanceOf[_to] + _value > balanceOf[_to]);
require(!frozenAccount[_from]);
require(!frozenAccount[_to]);
balanceOf[_from] -= _value;
balanceOf[_to] += _value;
Transfer(_from, _to, _value);
}
function freezeAccount(address _target, bool _freeze) onlyOwner public {
frozenAccount[_target] = _freeze;
FrozenFunds(_target, _freeze);
}
ON TOP OF IT - YOU CAN'T RECEIVE TOKENS OR SEND TOKENS TO A FROZEN ACCOUNT
what the fuck? And on top of it, they apparently stole a bunch of artwork from some minor on deviantart and only paid him 1 eth. ONE ETH.
these fucking pajeet scammers need to get the fuck out of my dApps.
anyone here know of a decent etheremon alternative without the blatant pajeetery?