ERC-20
Overview
Max Total Supply
68,000,000 HJGX
Holders
19
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
85,859.1134 HJGXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x64d645ef...2A42dBf14 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
HJGX
Compiler Version
v0.4.26+commit.4563c3fc
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-02-02 */ pragma solidity ^0.4.8; contract Token { uint256 public totalSupply; function balanceOf(address _owner) public constant returns (uint256 balance); function transfer(address _to, uint256 _value) public returns (bool success); function transferFrom(address _from, address _to, uint256 _value) public returns (bool success); function approve(address _spender, uint256 _value) public returns (bool success); function allowance(address _owner, address _spender) public constant returns (uint256 remaining); event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); } contract StandardToken is Token { function transfer(address _to, uint256 _value) public returns (bool success) { require(balances[msg.sender] >= _value); balances[msg.sender] -= _value; balances[_to] += _value; emit Transfer(msg.sender, _to, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value); balances[_to] += _value; balances[_from] -= _value; allowed[_from][msg.sender] -= _value; emit Transfer(_from, _to, _value); return true; } function balanceOf(address _owner) public constant returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) public returns (bool success) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { return allowed[_owner][_spender]; } mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; } contract HJGX is StandardToken { string public name; uint8 public decimals; string public symbol; string public version = '1.0'; constructor(uint256 _initialAmount, string _tokenName, uint8 _decimalUnits, string _tokenSymbol) public { balances[msg.sender] = _initialAmount; totalSupply = _initialAmount; name = _tokenName; decimals = _decimalUnits; symbol = _tokenSymbol; } function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); require(_spender.call(bytes4(bytes32(keccak256("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_initialAmount","type":"uint256"},{"name":"_tokenName","type":"string"},{"name":"_decimalUnits","type":"uint8"},{"name":"_tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60c0604052600360808190527f312e30000000000000000000000000000000000000000000000000000000000060a090815261003e91600691906100d0565b5034801561004b57600080fd5b5060405161097f38038061097f8339810160409081528151602080840151838501516060860151336000908152600185529586208590559484905590850180519395909491939101916100a3916003918601906100d0565b506004805460ff191660ff841617905580516100c69060059060208401906100d0565b505050505061016b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061011157805160ff191683800117855561013e565b8280016001018555821561013e579182015b8281111561013e578251825591602001919060010190610123565b5061014a92915061014e565b5090565b61016891905b8082111561014a5760008155600101610154565b90565b6108058061017a6000396000f3006080604052600436106100955763ffffffff60e060020a60003504166306fdde03811461009a578063095ea7b31461012457806318160ddd1461015c57806323b872dd14610183578063313ce567146101ad57806354fd4d50146101d857806370a08231146101ed57806395d89b411461020e578063a9059cbb14610223578063cae9ca5114610247578063dd62ed3e146102b0575b600080fd5b3480156100a657600080fd5b506100af6102d7565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100e95781810151838201526020016100d1565b50505050905090810190601f1680156101165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561013057600080fd5b50610148600160a060020a0360043516602435610365565b604080519115158252519081900360200190f35b34801561016857600080fd5b506101716103cb565b60408051918252519081900360200190f35b34801561018f57600080fd5b50610148600160a060020a03600435811690602435166044356103d1565b3480156101b957600080fd5b506101c26104af565b6040805160ff9092168252519081900360200190f35b3480156101e457600080fd5b506100af6104b8565b3480156101f957600080fd5b50610171600160a060020a0360043516610513565b34801561021a57600080fd5b506100af61052e565b34801561022f57600080fd5b50610148600160a060020a0360043516602435610589565b34801561025357600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610148948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506106139650505050505050565b3480156102bc57600080fd5b50610171600160a060020a03600435811690602435166107ae565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035d5780601f106103325761010080835404028352916020019161035d565b820191906000526020600020905b81548152906001019060200180831161034057829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b600160a060020a038316600090815260016020526040812054821180159061041c5750600160a060020a03841660009081526002602090815260408083203384529091529020548211155b151561042757600080fd5b600160a060020a03808416600081815260016020908152604080832080548801905593881680835284832080548890039055600282528483203384528252918490208054879003905583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b60045460ff1681565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035d5780601f106103325761010080835404028352916020019161035d565b600160a060020a031660009081526001602052604090205490565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035d5780601f106103325761010080835404028352916020019161035d565b336000908152600160205260408120548211156105a557600080fd5b33600081815260016020908152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600192915050565b336000818152600260209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b8381101561075357818101518382015260200161073b565b50505050905090810190601f1680156107805780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000875af19250505015156107a457600080fd5b5060019392505050565b600160a060020a039182166000908152600260209081526040808320939094168252919091522054905600a165627a7a72305820247cbe5ba5140d9905f8742336da1541c75e020ad6029e8d9bd316a897731f23002900000000000000000000000000000000000000000000000000000000040d99000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004484a4758000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004484a475800000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106100955763ffffffff60e060020a60003504166306fdde03811461009a578063095ea7b31461012457806318160ddd1461015c57806323b872dd14610183578063313ce567146101ad57806354fd4d50146101d857806370a08231146101ed57806395d89b411461020e578063a9059cbb14610223578063cae9ca5114610247578063dd62ed3e146102b0575b600080fd5b3480156100a657600080fd5b506100af6102d7565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100e95781810151838201526020016100d1565b50505050905090810190601f1680156101165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561013057600080fd5b50610148600160a060020a0360043516602435610365565b604080519115158252519081900360200190f35b34801561016857600080fd5b506101716103cb565b60408051918252519081900360200190f35b34801561018f57600080fd5b50610148600160a060020a03600435811690602435166044356103d1565b3480156101b957600080fd5b506101c26104af565b6040805160ff9092168252519081900360200190f35b3480156101e457600080fd5b506100af6104b8565b3480156101f957600080fd5b50610171600160a060020a0360043516610513565b34801561021a57600080fd5b506100af61052e565b34801561022f57600080fd5b50610148600160a060020a0360043516602435610589565b34801561025357600080fd5b50604080516020600460443581810135601f8101849004840285018401909552848452610148948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506106139650505050505050565b3480156102bc57600080fd5b50610171600160a060020a03600435811690602435166107ae565b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035d5780601f106103325761010080835404028352916020019161035d565b820191906000526020600020905b81548152906001019060200180831161034057829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b600160a060020a038316600090815260016020526040812054821180159061041c5750600160a060020a03841660009081526002602090815260408083203384529091529020548211155b151561042757600080fd5b600160a060020a03808416600081815260016020908152604080832080548801905593881680835284832080548890039055600282528483203384528252918490208054879003905583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b60045460ff1681565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035d5780601f106103325761010080835404028352916020019161035d565b600160a060020a031660009081526001602052604090205490565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561035d5780601f106103325761010080835404028352916020019161035d565b336000908152600160205260408120548211156105a557600080fd5b33600081815260016020908152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600192915050565b336000818152600260209081526040808320600160a060020a038816808552908352818420879055815187815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360005b8381101561075357818101518382015260200161073b565b50505050905090810190601f1680156107805780820380516001836020036101000a031916815260200191505b509450505050506000604051808303816000875af19250505015156107a457600080fd5b5060019392505050565b600160a060020a039182166000908152600260209081526040808320939094168252919091522054905600a165627a7a72305820247cbe5ba5140d9905f8742336da1541c75e020ad6029e8d9bd316a897731f230029
Deployed Bytecode Sourcemap
2096:967:0:-;;;;;;;;;-1:-1:-1;;;2096:967:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2139:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2139:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2139:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1599:222;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1599:222:0;-1:-1:-1;;;;;1599:222:0;;;;;;;;;;;;;;;;;;;;;;;;;53:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53:26:0;;;;;;;;;;;;;;;;;;;;1085:373;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1085:373:0;-1:-1:-1;;;;;1085:373:0;;;;;;;;;;;;2182:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2182:21:0;;;;;;;;;;;;;;;;;;;;;;;2270:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2270:29:0;;;;1469:119;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1469:119:0;-1:-1:-1;;;;;1469:119:0;;;;;2226:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2226:20:0;;;;798:281;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;798:281:0;-1:-1:-1;;;;;798:281:0;;;;;;;2670:390;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2670:390:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2670:390:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2670:390:0;;-1:-1:-1;2670:390:0;;-1:-1:-1;;;;;;;2670:390:0;1833:146;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1833:146:0;-1:-1:-1;;;;;1833:146:0;;;;;;;;;;2139:18;;;;;;;;;;;;;;;-1:-1:-1;;2139:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1599:222::-;1707:10;1666:12;1699:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;1699:29:0;;;;;;;;;;;:38;;;1753;;;;;;;1666:12;;1699:29;;1707:10;;1753:38;;;;;;;;-1:-1:-1;1809:4:0;1599:222;;;;:::o;53:26::-;;;;:::o;1085:373::-;-1:-1:-1;;;;;1200:15:0;;1167:12;1200:15;;;:8;:15;;;;;;:25;-1:-1:-1;1200:25:0;;;:66;;-1:-1:-1;;;;;;1229:14:0;;;;;;:7;:14;;;;;;;;1244:10;1229:26;;;;;;;;:37;-1:-1:-1;1229:37:0;1200:66;1192:75;;;;;;;;-1:-1:-1;;;;;1278:13:0;;;;;;;:8;:13;;;;;;;;:23;;;;;;1312:15;;;;;;;;;:25;;;;;;;1348:7;:14;;;;;1363:10;1348:26;;;;;;;;:36;;;;;;;1400:28;;;;;;;1278:13;;1312:15;;1400:28;;;;;;;;;;-1:-1:-1;1446:4:0;1085:373;;;;;:::o;2182:21::-;;;;;;:::o;2270:29::-;;;;;;;;;;;;;;;-1:-1:-1;;2270:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1469:119;-1:-1:-1;;;;;1564:16:0;1529:15;1564:16;;;:8;:16;;;;;;;1469:119::o;2226:20::-;;;;;;;;;;;;;;;-1:-1:-1;;2226:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;798:281;903:10;861:12;894:20;;;:8;:20;;;;;;:30;-1:-1:-1;894:30:0;886:39;;;;;;945:10;936:20;;;;:8;:20;;;;;;;;:30;;;;;;;-1:-1:-1;;;;;977:13:0;;;;;;;;;:23;;;;;;1016:33;;;;;;;977:13;;945:10;1016:33;;;;;;;;;;;-1:-1:-1;1067:4:0;798:281;;;;:::o;2670:390::-;2795:10;2762:12;2787:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;2787:29:0;;;;;;;;;;;:38;;;2841;;;;;;;2762:12;;2787:29;;2795:10;;2841:38;;;;;;;;2900:8;-1:-1:-1;;;;;2900:13:0;2929:59;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2900:129:0;;2992:10;3004:6;3012:4;3018:10;2900:129;;;;;-1:-1:-1;;;2900:129:0;;;;;;;-1:-1:-1;;;;;2900:129:0;-1:-1:-1;;;;;2900:129:0;;;;;;;;;;;-1:-1:-1;;;;;2900:129:0;-1:-1:-1;;;;;2900:129:0;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2900:129:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2892:138;;;;;;;;-1:-1:-1;3048:4:0;2670:390;;;;;:::o;1833:146::-;-1:-1:-1;;;;;1946:15:0;;;1911:17;1946:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;1833:146::o
Swarm Source
bzzr://247cbe5ba5140d9905f8742336da1541c75e020ad6029e8d9bd316a897731f23
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.