Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Similar cases with GEMCHAIN(GEM) discovered from Etherscan #2

Open
Coppelian opened this issue Jun 28, 2023 · 1 comment
Open

Similar cases with GEMCHAIN(GEM) discovered from Etherscan #2

Coppelian opened this issue Jun 28, 2023 · 1 comment

Comments

@Coppelian
Copy link

In a recent study, we discovered multiple clone cases with are similar to the GEMCHAIN(GEM) vulnerable case from CVE-2018-13155. We report several cases that share the same vulnerability here.
Among these cases, they might share the same contract names as the cases from previous reports. Contract addresses are different.

Crowdsale

https://etherscan.io/address/0x6e0ec952e49212f2e2e2f94fedaa84f5c044acef#code

	function mintToken(address target, uint256 mintedAmount) onlyowner {
		balanceOf[target] += mintedAmount;
		totalSupply += mintedAmount;
		Transfer(0, owner, mintedAmount);
		Transfer(owner, target, mintedAmount);
	}
Betcash

https://etherscan.io/address/0x4D391B4350cA1C690eBaf00d35bfcDd5721470F8#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner {
        balanceOf[target] += mintedAmount;
        Transfer(0, owner, mintedAmount);
        Transfer(owner, target, mintedAmount);
    }
MCToken

https://etherscan.io/address/0xa38b7ee9df79955b90cc4e2de90421f6baa83a3d#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), owner, mintedAmount);
        emit Transfer(owner, target, mintedAmount);
    }
Mama

https://etherscan.io/address/0xd5852ba94e2ffffd2bcf6986c42bfc88b956fb7f#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {  
        balanceOf[target] += mintedAmount;  
        totalSupply += mintedAmount;  
        emit Transfer(address(0), address(this), mintedAmount);  
        emit Transfer(address(this), target, mintedAmount);  
    }  
MCWToken

https://etherscan.io/address/0x42e2af5ff0de62574880b7285af90b8e87fd8847#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }
MetaChain

https://etherscan.io/address/0xb9a02d668895b092ed219600f21c7f30a30108f6#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
MateToken

https://etherscan.io/address/0x90455f5ea964ca0e1968de74c5653b1869a21d62#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
ModenEnt

https://etherscan.io/address/0x920f19beb49f656c1258683f759af673ada4d6c5#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
ModiTokenERC20

https://etherscan.io/address/0x68E03D2DA62D026403C68601D650c877901876BF#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
LuckyCoin

https://etherscan.io/address/0x07274515b62cc205629a8702bdafbf78495e6210#code

    function mint(address target, uint256 token) onlyOwner public {
        balanceOf[target] += token;
        totalSupply += token;
        emit Transfer(0, this, token);
        emit Transfer(this, target, token);
    }
AsacCoin

https://etherscan.io/address/0x6913ccabbc337f0ea7b4109dd8200d61c704d332#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
LogiKIL

https://etherscan.io/address/0x49728cfd5a92bc9ff03d18c88f6a2e7c39c2bb0b#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
Mi10

https://etherscan.io/address/0x32b47d3b4a524f03997e4f069f32fe1518c5c241#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
SACT

https://etherscan.io/address/0xb11e463cff7fcc4f7b36dbafb5eb418aeda55192#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
MyToken

https://etherscan.io/address/0x1f83e17ddf26d4168f5802d519d1b073a8843506#code

        function mintToken(address target, uint256 mintedAmount) onlyOwner {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, owner, mintedAmount);
        Transfer(owner, target, mintedAmount);
    }
PLXE

https://etherscan.io/address/0x76c6a8d8bd3ffc0bc0a3198cee1f59fc75bf7d67#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
TST_ERC

https://etherscan.io/address/0x3f7029371a9dc427ed65bff3e09576b4b2c52cb5#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(this, target, mintedAmount);
    }
TST_ERC20

https://etherscan.io/address/0x964e4584182d941ea03700701dc10b8756367ed2#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(this, target, mintedAmount);
    }
TocKioskToken

https://etherscan.io/address/0x60ef5258a1678adc6bbf46c8eddd2955ff9a9d87#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
INDT

https://etherscan.io/address/0x506c34eca4cd1a6332df02a0ef813b3d9a3dc3a0#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
EncryptedToken

https://etherscan.io/address/0xc524079859fD32597F257c175c5f9E239C1Dd2DB#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
DYC

https://etherscan.io/address/0x824D83318d9637715a491B6CBb0244f55c0D5bAf#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
ENT

https://etherscan.io/address/0x781f1a65373da37ac7ec4bbe7fce9afd979e13eb#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
GoodTo

https://etherscan.io/address/0x95C9C35678C0B54008b1E3A2B0eA1730Fa7dBd06#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
CarbonExchangeCoinToken

https://etherscan.io/address/0x0Eb152d2bba8aF722D7E296A1F223d819C3bbB1f#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
BIVOCHAIN

https://etherscan.io/address/0xb8388c414e0bfaac2eb3f689937ab7cd22d7b492#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
Tokendcep

https://etherscan.io/address/0xbb24e9586bcb9ed916c59e9e714bf6d57c7a5a00#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
IDRT

https://etherscan.io/address/0x34570cf88db31d4c518dee6057ff78e895dd80f1#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
GoodTimeCoin

https://etherscan.io/address/0x584a0EC8A7A3fcfEd27Db5C234A9062863883778#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
UCoinToken

https://etherscan.io/address/0xaaabD58B6D94b21859F9Fc2B4E829f532283Cf69#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
@Coppelian
Copy link
Author

Here is a list of other similar issues.

AssetToken

https://etherscan.io/address/0xe11395543c92f2632a826b1fcced33170a133689#code

	function mintToken(address target, uint256 mintedAmount) onlyAdmin{
		balanceOf[target] += mintedAmount;
		totalSupply += mintedAmount;
		Transfer(0, this, mintedAmount);
		Transfer(this, target, mintedAmount);
	}
MyToken

https://etherscan.io/address/0xf8545d941998d4106a1cd374286435310b6430c6#code

   function mintToken(address target, uint256 mintedAmount)  public onlyOwner
   {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
   }
MyAdvancedToken

https://etherscan.io/address/0xf848347e59103ba2e8e8b0b979173560adcdfa4d#code
https://etherscan.io/address/0xf05b1e373ff917119c06c89879af04d313968c87#code
https://etherscan.io/address/0xe0c158862870e99ee5a575c9ba550ffb15ab93bf#code
https://etherscan.io/address/0xdd72a22b2229fcf2a93fe0ec1328244d76d6afc9#code
https://etherscan.io/address/0xd8ebbf816c5667bf815be7707b191ff3bce33a60#code
https://etherscan.io/address/0xd33a62f420b29882668fc68fa6b08f2b1fee1004#code
https://etherscan.io/address/0x9f9040baaa6d04a51882a5574c3626dd113650f5#code
https://etherscan.io/address/0x8495632a25853312ab6e4d48d76fc321e6fbc9b8#code
https://etherscan.io/address/0x724f13fb4325dc30f3984abd99a73932224deceb#code
https://etherscan.io/address/0x5aa4d0517d8f3be6060d2da5b702e4a462693ed7#code
https://etherscan.io/address/0x55b7da636a3182d4cc2d5e23c965e7f8ba381d3e#code
https://etherscan.io/address/0x5335ef421f90bac4605908bc3a0f493a4e9119e8#code
https://etherscan.io/address/0x5164bcc95d1eb5a1104175e498c4bd83bff07e51#code
https://etherscan.io/address/0x361cef27a967e3fa2d8fc117b3f2cfe2a09bbc02#code
https://etherscan.io/address/0x05316c4bbf2521bb529ca47dd66212d34ed1f6a3#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
ERC20

https://etherscan.io/address/0xf1d883fe376af191d41ed1db4e20ddc8ec65d05d#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(this, target, mintedAmount);
    }
UseMintsToken

https://etherscan.io/address/0xefdb4ce9541c7e57ebfdad0e55221e9f5790185c#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
PhoenixCoin

https://etherscan.io/address/0xeca3eaff3a11545f7745e735f7c9ef02ae627422#code

    function mint(address target, uint256 token) onlyOwner public {
        balanceOf[target] += token;
        totalSupply += token;
        emit Transfer(0, this, token);
        emit Transfer(this, target, token);
    }
TeamUndisClosed

https://etherscan.io/address/0xebfe4723c636cf0a4d1374888f16736a986f5629#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }
ArdCoin

https://etherscan.io/address/0xea0f5dc34f54c907d26bedac00ddd5796f21c833#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
LuxuryGoodsCoin

https://etherscan.io/address/0xe9ae248830bac191298a71b629b0afb8ad83b553#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
XCMGToken

https://etherscan.io/address/0xe60b3fcbd8f400a38476adeb01fcac861ccd2e42#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }
PLLE

https://etherscan.io/address/0xe4c53bed348b6d146b1b653f0e642bb1c680098d#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }

#####GEC_ERC20
https://etherscan.io/address/0xe3775d7155987a81a438cd4ab168d2692b1b4b5d#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(this, target, mintedAmount);
    }
SpotChainToken

https://etherscan.io/address/0xdc0168718b22395bcf6bb8888867f3ff03ff5b98#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
GOLDEnterainmentToken

https://etherscan.io/address/0xd6e3e2393664efe22766e9e58fd13d8d13438984#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
MTToken

https://etherscan.io/address/0xcd198b9f200a7926f8cf7dba43d9140ba65dcb1e#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
PUBG

https://etherscan.io/address/0xc8aa6b089541824026c86091536673b5263b3f67#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(this, target, mintedAmount);
    }
StellarClassic

https://etherscan.io/address/0xc574fc434cb74344eaafe8bcc69ab1b12dbc01d8#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
GoldChipsToken

https://etherscan.io/address/0xc0282db5edf6f30bd5a84a4ec5a399100fbf5f80#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
ERC20

https://etherscan.io/address/0xbe0bcea181b0f7693aaeb4ab6430c177e7b8cc3b#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(this, target, mintedAmount);
    }
Token

https://etherscan.io/address/0xbbd1cf274afd8b648416248e73c860dbb2280f1a#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner {
        balances[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
Tokendcep

https://etherscan.io/address/0xbb24e9586bcb9ed916c59e9e714bf6d57c7a5a00#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
BIVOCHAIN

https://etherscan.io/address/0xb8388c414e0bfaac2eb3f689937ab7cd22d7b492#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
Mypaychain

https://etherscan.io/address/0xb702fe20db475751ef08f9008796377825d9f9e9#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
SpinToken

https://etherscan.io/address/0xb42f5366792ed7c08995451c1a93780b7554762b#code

	function mintToken(address target, uint256 mintedAmount) onlyDeveloper public {
		balanceOf[target] += mintedAmount;
		totalSupply += mintedAmount;
		emit Transfer(0, this, mintedAmount);
		emit Transfer(this, target, mintedAmount);
	}
SACT

https://etherscan.io/address/0xb11e463cff7fcc4f7b36dbafb5eb418aeda55192#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
NUTCoin

https://etherscan.io/address/0xb079fca77b4375051f7452e6d9fac6dfeed47ff9#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
ERC20_ICO

https://etherscan.io/address/0xacf45cb5ce7e73a7aec0f1256ae4c29f10236353#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(this, target, mintedAmount);
    }
KAPAToken

https://etherscan.io/address/0xab0d7d792cc01517da74955a7556a2116b9d6468#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
AdvancedCOINSToken

https://etherscan.io/address/0xa48d3b79f43477224933e492e42f5cacf4091ecc#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
ElixirToken

https://etherscan.io/address/0xa353c702b05f551cab503bede3487f16879198fb#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
LGX

https://etherscan.io/address/0xa00b120aecc5076a7737295db6797b801e46b526#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
NABI
  function mintToken(address target, uint256 mintedAmount) onlyOwner public {
    balances[target] += mintedAmount;
    totalSupply_ += mintedAmount;
    emit Transfer(0, this, mintedAmount);
    emit Transfer(this, target, mintedAmount);
  }
GoldenTime

https://etherscan.io/address/0x9ec8d44af808d7cca2ec23c0dc0d1f49a3386ea4#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
FuturXe

https://etherscan.io/address/0x9653cfd0865ad8313bea2f0c2ec0584bfd05115b#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner{
        balances[target] += mintedAmount;
        totalSupply += mintedAmount;
        
        Transfer(0,owner,mintedAmount);
        Transfer(owner,target,mintedAmount);
    }

TST_ERC20

https://etherscan.io/address/0x964e4584182d941ea03700701dc10b8756367ed2#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(this, target, mintedAmount);
    }
GAPtoken

https://etherscan.io/address/0x9570ec7ab05d61877ff7eb180f837c7c079c4844#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }
CSToken

https://etherscan.io/address/0x94298f1e0ab2dfad6eeffb1426846a3c29d98090#code

	function mintToken(address target, uint256 mintedAmount) onlyowner {
		balanceOf[target] += mintedAmount;
		totalSupply += mintedAmount;
		Transfer(0, owner, mintedAmount);
		Transfer(owner, target, mintedAmount);
	}
CSOToken

https://etherscan.io/address/0x92c1559f2c60e90b5ca9ac8067b64b650c2c8be6#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
FustionTime

https://etherscan.io/address/0x91ed4509a8dca11d075ba74563b6dbb81ed482d8#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
YFT

https://etherscan.io/address/0x91a094bc4ad86870589eac51a299db9843108e11#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
MateToken

https://etherscan.io/address/0x90455f5ea964ca0e1968de74c5653b1869a21d62#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
MintsToken

https://etherscan.io/address/0x8482aaaaa80db6fbb3c5b91a0924abd37270b632#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
CTB

https://etherscan.io/address/0x842ba7c8ac69ab5ba5594e7b18d846a4f668fd44#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
Goldmark

https://etherscan.io/address/0x79a1fb1a8656ae2778f45d3709d9d9a3d5993cca#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
ENT

https://etherscan.io/address/0x781f1a65373da37ac7ec4bbe7fce9afd979e13eb#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
TWONToken

https://etherscan.io/address/0x76756921dc56c75b36679e6f2c1842fa3c5e5339#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }
MyToken

https://etherscan.io/address/0x75284b2afcd520613c2da5c71be6b3847a0acbf2#code

   function mintToken(address target, uint256 mintedAmount)  public onlyOwner
   {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
   }

AdvancedCXATToken

https://etherscan.io/address/0x6a378490b1d2cec4e972d5e6c36d68843bc600c6#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
AztraToken

https://etherscan.io/address/0x6962e259a8f9633c4494764628a7984cced58e10#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
LiquidSavingsDiversified

https://etherscan.io/address/0x661229dae05e769d03cee7ca447d9a7d5619d082#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }
PaiYuanBaoToken

https://etherscan.io/address/0x65e56c4c004e61dce4acd500c6e1fc3d975b9bd5#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
TokenERC20

https://etherscan.io/address/0x6508cf442268f379aa049d61b3f7a3019ffacdae#code
https://etherscan.io/address/0x64bfbfa5aedd9622f627e3ddeadb634eb96a6fed#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }
TocKioskToken

https://etherscan.io/address/0x60ef5258a1678adc6bbf46c8eddd2955ff9a9d87#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
WADCoin

https://etherscan.io/address/0x604e56f49e34beb2ea566e069c6911c60193acd7#code

	function mintToken(address target, uint256 mintedAmount) onlyOwner public {
		balanceOf[target] += mintedAmount;
		totalSupply += mintedAmount;
		emit Transfer(0, this, mintedAmount);
		emit Transfer(this, target, mintedAmount);
	}
GTFToken

https://etherscan.io/address/0x5e3b789e509f4e96cf9bbffecde08531d827ac9c#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
CRYPTOSSAIRDROP

https://etherscan.io/address/0x5ddb98f378def49593f24c98fc84880242e9ba65#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
XRUN

https://etherscan.io/address/0x5833dbb0749887174b254ba4a5df747ff523a905#code

	function mintToken(address target, uint256 mintedAmount) onlyOwner public {

		balanceOf[target] += mintedAmount;
		totalSupply += mintedAmount;

		emit Transfer(address(0), address(this), mintedAmount);
		emit Transfer(address(this), target, mintedAmount);
	}
BSC

https://etherscan.io/address/0x577f04d8e049cc9306d4becf25cec6e5c4de214a#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
EncryptedToken

https://etherscan.io/address/0x5494eeee60777423ad10be7fbd137877aa6cc128#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
BFCToken

https://etherscan.io/address/0x51599d4c62b625aa88e8cb33431c67a6879e7513#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), owner, mintedAmount);
        emit Transfer(owner, target, mintedAmount);
    }
TokenERC20

https://etherscan.io/address/0x51452ac082539e7ca5da9a814123550208b7fb46#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
 
        //给指定地址增加代币,同时总量也相加
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
 
 
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
INDT

https://etherscan.io/address/0x506c34eca4cd1a6332df02a0ef813b3d9a3dc3a0#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }
ERC20_ICO

https://etherscan.io/address/0x4f6ee01dfe6a3b548713f6d784e9249d73fc64e4#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(this, target, mintedAmount);
    }
PlatformTeamCoinVer02

https://etherscan.io/address/0x4db8cee6107b24e761ede7a333ad49004fb8a00d#code

function mintToken(address target, uint256 mintedAmount) onlyOwner public {
balanceOf[target] += mintedAmount;
totalSupply += mintedAmount;
emit Transfer(0, this, mintedAmount);
emit Transfer(this, target, mintedAmount);
}
AlphaTech

https://etherscan.io/address/0x45a58b18f74e6d75775759dd5cec00d7948c7a0c#code

    function mint(address target, uint256 token) onlyOwner public {
        balanceOf[target] += token;
        totalSupply += token;
        emit Transfer(0, this, token);
        emit Transfer(this, target, token);
    }

#####MCWToken
https://etherscan.io/address/0x42e2af5ff0de62574880b7285af90b8e87fd8847#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }
TST_ERC

https://etherscan.io/address/0x3f7029371a9dc427ed65bff3e09576b4b2c52cb5#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(this, target, mintedAmount);
    }
TokenERC20

https://etherscan.io/address/0x3bc022ed564c99097d3a2b06dd10b8c0adc309e5#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
GondenTimeToken

https://etherscan.io/address/0x37e98cc55496e608322336b5d0218f7b08339565#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
ERC20_ICO

https://etherscan.io/address/0x3594b81234a14d0051e817793dc300763ce48241#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(this, target, mintedAmount);
    }
SakToken

https://etherscan.io/address/0x349c1ae00832912f42d397723c8115f6d5090c85#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }
IDRT

https://etherscan.io/address/0x34570cf88db31d4c518dee6057ff78e895dd80f1#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, this, mintedAmount);
        Transfer(this, target, mintedAmount);
    }

#####JcbChainToken
https://etherscan.io/address/0x32a6fd88186593fc50ac3a4967c9268deec46b04#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }
DaricCoin

https://etherscan.io/address/0x32813e96e11b85c157847b9b0a354bde904485b4#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
YamanaNetwork

https://etherscan.io/address/0x2e9261cf4588b2e80544cc0220bdf5b7638cfaca#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }
TTC

https://etherscan.io/address/0x2ceffe034900cce4f661a6b9e322f706d0658d1f#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
TokenERC20

https://etherscan.io/address/0x2cd9a6be3a0779be4ed1c7c20af6cd527f2e63ed#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
		//给指定地址增加代币,同时总量也相加
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
BARO_TOKEN

https://etherscan.io/address/0x21a21ffc7d1871247b6464fb0814461589941dcd#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
MyToken

https://etherscan.io/address/0x1f83e17ddf26d4168f5802d519d1b073a8843506#code

        function mintToken(address target, uint256 mintedAmount) onlyOwner {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, owner, mintedAmount);
        Transfer(owner, target, mintedAmount);
    }
BIT2P

https://etherscan.io/address/0x1c4e6c18f7f5c15bbfff34b05b4523e92e56e3f6#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
SoupToken

https://etherscan.io/address/0x19b3065f1b82f2c8f8da8ed4577abb1e448ecef3#code

    function mintToken(address target, uint256 mintedAmount) onlyAdmin {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        Transfer(0, owner, mintedAmount);
        Transfer(owner, target, mintedAmount);
        if (target.balance < minBalanceForAccounts) target.transfer(minBalanceForAccounts - target.balance);
    }
Litecoindiamond

https://etherscan.io/address/0x11df83dbbff1d297a6dc140d2128af4a757b7f6f#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
CRYPTOSS_AIRDROP_TOSSB

https://etherscan.io/address/0x10a460a56516efc23a41af76b151600686344159#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
XRUN

https://etherscan.io/address/0x0f08bdc02fb681462cb6c73b6b351297692aa6e4#code

	function mintToken(address target, uint256 mintedAmount) onlyOwner public {

		balanceOf[target] += mintedAmount;
		totalSupply += mintedAmount;

		emit Transfer(address(0), address(this), mintedAmount);
		emit Transfer(address(this), target, mintedAmount);
	}
MyAdvancedTokenIB

https://etherscan.io/address/0x0853d2a3cd27740437f6c3295c604b47fb78fa12#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(address(0), address(this), mintedAmount);
        emit Transfer(address(this), target, mintedAmount);
    }
BountyHunterToken

https://etherscan.io/address/0x074661068c2cbca51dde811871554d2fa5bae312#code

    function mintToken(address target, uint256 mintedAmount) onlyOwner public {
        balanceOf[target] += mintedAmount;
        totalSupply += mintedAmount;
        emit Transfer(0, this, mintedAmount);
        emit Transfer(this, target, mintedAmount);
    }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant