ETH Price: $2,160.34 (+8.63%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer135126542021-10-29 14:42:411587 days ago1635518561IN
0x1f92ed5C...2E98c07b4
0 ETH0.01242456240
Transfer134801842021-10-24 12:26:231592 days ago1635078383IN
0x1f92ed5C...2E98c07b4
0 ETH0.0016135754
Transfer134801832021-10-24 12:26:111592 days ago1635078371IN
0x1f92ed5C...2E98c07b4
0 ETH0.0016122754
Transfer115524152020-12-30 1:40:321890 days ago1609292432IN
0x1f92ed5C...2E98c07b4
0 ETH0.00425659113
Transfer115392912020-12-28 1:13:141892 days ago1609117994IN
0x1f92ed5C...2E98c07b4
0 ETH0.00597898113.5200016
Transfer114579092020-12-15 13:27:181905 days ago1608038838IN
0x1f92ed5C...2E98c07b4
0 ETH0.00589758112
Transfer114009182020-12-06 19:03:021913 days ago1607281382IN
0x1f92ed5C...2E98c07b4
0 ETH0.0028329453.8
Transfer113413272020-11-27 15:21:591923 days ago1606490519IN
0x1f92ed5C...2E98c07b4
0 ETH0.0018075348
Transfer113411322020-11-27 14:43:001923 days ago1606488180IN
0x1f92ed5C...2E98c07b4
0 ETH0.0029935556.85
Transfer113210972020-11-24 12:46:151926 days ago1606221975IN
0x1f92ed5C...2E98c07b4
0 ETH0.00632673120.1500001
Transfer113179352020-11-24 1:16:261926 days ago1606180586IN
0x1f92ed5C...2E98c07b4
0 ETH0.0036868370
Transfer112884272020-11-19 12:23:591931 days ago1605788639IN
0x1f92ed5C...2E98c07b4
0 ETH0.001295434.400002
Transfer112493062020-11-13 12:17:031937 days ago1605269823IN
0x1f92ed5C...2E98c07b4
0 ETH0.0036851570
Transfer111785552020-11-02 15:46:581948 days ago1604332018IN
0x1f92ed5C...2E98c07b4
0 ETH0.0047917891
Transfer110781812020-10-18 6:00:131963 days ago1603000813IN
0x1f92ed5C...2E98c07b4
0 ETH0.0012426833
Transfer110781062020-10-18 5:44:451963 days ago1602999885IN
0x1f92ed5C...2E98c07b4
0 ETH0.0014215537.75
Transfer110593742020-10-15 8:49:021966 days ago1602751742IN
0x1f92ed5C...2E98c07b4
0 ETH0.0020711355.00000023
Transfer110536632020-10-14 12:08:021967 days ago1602677282IN
0x1f92ed5C...2E98c07b4
0 ETH0.0046864789
Transfer110531812020-10-14 10:08:131967 days ago1602670093IN
0x1f92ed5C...2E98c07b4
0 ETH0.0032647362
Transfer110502202020-10-13 23:08:091967 days ago1602630489IN
0x1f92ed5C...2E98c07b4
0 ETH0.0034234865
Transfer110271482020-10-10 10:14:101971 days ago1602324850IN
0x1f92ed5C...2E98c07b4
0 ETH0.0025230167
Transfer110270972020-10-10 10:04:051971 days ago1602324245IN
0x1f92ed5C...2E98c07b4
0 ETH0.0032647362
Transfer110136282020-10-08 7:32:101973 days ago1602142330IN
0x1f92ed5C...2E98c07b4
0 ETH0.00584492111
Transfer110074972020-10-07 8:21:111974 days ago1602058871IN
0x1f92ed5C...2E98c07b4
0 ETH0.0040555177
Approve110072362020-10-07 7:20:191974 days ago1602055219IN
0x1f92ed5C...2E98c07b4
0 ETH0.001902443
View all transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xaAB1b6A4...0C6042f91
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ERC20Standard

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-07-03
*/

pragma solidity ^0.4.11;

// 以太坊企业服务,请访问 https://www.94eth.com/tool

contract ERC20Standard {
	uint256 public totalSupply;
	string public name;
	uint256 public decimals;
	string public symbol;
	address public owner;

	mapping (address => uint256) balances;
	mapping (address => mapping (address => uint256)) allowed;

   constructor(uint256 _totalSupply, string _symbol, string _name, uint256 _decimals) public {
		symbol = _symbol;
		name = _name;
        decimals = _decimals;
		owner = msg.sender;
        totalSupply = _totalSupply * (10 ** decimals);
        balances[owner] = totalSupply;
  }
	//Fix for short address attack against ERC20
	modifier onlyPayloadSize(uint size) {
		assert(msg.data.length == size + 4);
		_;
	} 

	function balanceOf(address _owner) constant public returns (uint256) {
		return balances[_owner];
	}

	function transfer(address _recipient, uint256 _value) onlyPayloadSize(2*32) public {
		require(balances[msg.sender] >= _value && _value >= 0);
	    require(balances[_recipient] + _value >= balances[_recipient]);
	    balances[msg.sender] -= _value;
	    balances[_recipient] += _value;
	    emit Transfer(msg.sender, _recipient, _value);        
    }

	function transferFrom(address _from, address _to, uint256 _value) public {
		require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value >= 0);
		require(balances[_to] + _value >= balances[_to]);
        balances[_to] += _value;
        balances[_from] -= _value;
        allowed[_from][msg.sender] -= _value;
        emit Transfer(_from, _to, _value);
    }

	function approve(address _spender, uint256 _value) public {
		allowed[msg.sender][_spender] = _value;
		emit Approval(msg.sender, _spender, _value);
	}

	function allowance(address _owner, address _spender) constant public returns (uint256) {
		return allowed[_owner][_spender];
	}

	//Event which is triggered to log all transfers to this contract's event log
	event Transfer(
		address indexed _from,
		address indexed _to,
		uint256 _value
		);
		
	//Event which is triggered whenever an owner approves a new allowance for a spender.
	event Approval(
		address indexed _owner,
		address indexed _spender,
		uint256 _value
		);

}

Contract Security Audit

Contract ABI

API
[{"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":[],"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"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":"_recipient","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_totalSupply","type":"uint256"},{"name":"_symbol","type":"string"},{"name":"_name","type":"string"},{"name":"_decimals","type":"uint256"}],"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"}]

0x608060405234801561001057600080fd5b5060405161077b38038061077b83398101604090815281516020808401519284015160608501519385018051939590949101929091610054916003918601906100b5565b5081516100689060019060208501906100b5565b50600281905560048054600160a060020a031916331790819055600a9190910a939093026000818155600160a060020a039490941684526005602052604090932092909255506101509050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100f657805160ff1916838001178555610123565b82800160010185558215610123579182015b82811115610123578251825591602001919060010190610108565b5061012f929150610133565b5090565b61014d91905b8082111561012f5760008155600101610139565b90565b61061c8061015f6000396000f3006080604052600436106100a35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100a8578063095ea7b31461013257806318160ddd1461015857806323b872dd1461017f578063313ce567146101a957806370a08231146101be5780638da5cb5b146101df57806395d89b4114610210578063a9059cbb14610225578063dd62ed3e14610249575b600080fd5b3480156100b457600080fd5b506100bd610270565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100f75781810151838201526020016100df565b50505050905090810190601f1680156101245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561013e57600080fd5b50610156600160a060020a03600435166024356102fd565b005b34801561016457600080fd5b5061016d61035f565b60408051918252519081900360200190f35b34801561018b57600080fd5b50610156600160a060020a0360043581169060243516604435610365565b3480156101b557600080fd5b5061016d610472565b3480156101ca57600080fd5b5061016d600160a060020a0360043516610478565b3480156101eb57600080fd5b506101f4610493565b60408051600160a060020a039092168252519081900360200190f35b34801561021c57600080fd5b506100bd6104a2565b34801561023157600080fd5b50610156600160a060020a03600435166024356104fd565b34801561025557600080fd5b5061016d600160a060020a03600435811690602435166105c5565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102f55780601f106102ca576101008083540402835291602001916102f5565b820191906000526020600020905b8154815290600101906020018083116102d857829003601f168201915b505050505081565b336000818152600660209081526040808320600160a060020a03871680855290835292819020859055805185815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35050565b60005481565b600160a060020a03831660009081526005602052604090205481118015906103b05750600160a060020a03831660009081526006602090815260408083203384529091529020548111155b80156103bd575060008110155b15156103c857600080fd5b600160a060020a03821660009081526005602052604090205481810110156103ef57600080fd5b600160a060020a03808316600081815260056020908152604080832080548701905593871680835284832080548790039055600682528483203384528252918490208054869003905583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505050565b60025481565b600160a060020a031660009081526005602052604090205490565b600454600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102f55780601f106102ca576101008083540402835291602001916102f5565b60403660441461050957fe5b336000908152600560205260409020548211801590610529575060008210155b151561053457600080fd5b600160a060020a038316600090815260056020526040902054828101101561055b57600080fd5b33600081815260056020908152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3505050565b600160a060020a039182166000908152600660209081526040808320939094168252919091522054905600a165627a7a7230582076282fd9412d4ad5259ebe1b2ec80f239be138e156606006879efe89f9a0a45e00290000000000000000000000000000000000000000000000000000000077359400000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000003574d4300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014576973646f6d204d65646963616c20436861696e000000000000000000000000

Deployed Bytecode

0x6080604052600436106100a35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100a8578063095ea7b31461013257806318160ddd1461015857806323b872dd1461017f578063313ce567146101a957806370a08231146101be5780638da5cb5b146101df57806395d89b4114610210578063a9059cbb14610225578063dd62ed3e14610249575b600080fd5b3480156100b457600080fd5b506100bd610270565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100f75781810151838201526020016100df565b50505050905090810190601f1680156101245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561013e57600080fd5b50610156600160a060020a03600435166024356102fd565b005b34801561016457600080fd5b5061016d61035f565b60408051918252519081900360200190f35b34801561018b57600080fd5b50610156600160a060020a0360043581169060243516604435610365565b3480156101b557600080fd5b5061016d610472565b3480156101ca57600080fd5b5061016d600160a060020a0360043516610478565b3480156101eb57600080fd5b506101f4610493565b60408051600160a060020a039092168252519081900360200190f35b34801561021c57600080fd5b506100bd6104a2565b34801561023157600080fd5b50610156600160a060020a03600435166024356104fd565b34801561025557600080fd5b5061016d600160a060020a03600435811690602435166105c5565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102f55780601f106102ca576101008083540402835291602001916102f5565b820191906000526020600020905b8154815290600101906020018083116102d857829003601f168201915b505050505081565b336000818152600660209081526040808320600160a060020a03871680855290835292819020859055805185815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35050565b60005481565b600160a060020a03831660009081526005602052604090205481118015906103b05750600160a060020a03831660009081526006602090815260408083203384529091529020548111155b80156103bd575060008110155b15156103c857600080fd5b600160a060020a03821660009081526005602052604090205481810110156103ef57600080fd5b600160a060020a03808316600081815260056020908152604080832080548701905593871680835284832080548790039055600682528483203384528252918490208054869003905583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505050565b60025481565b600160a060020a031660009081526005602052604090205490565b600454600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156102f55780601f106102ca576101008083540402835291602001916102f5565b60403660441461050957fe5b336000908152600560205260409020548211801590610529575060008210155b151561053457600080fd5b600160a060020a038316600090815260056020526040902054828101101561055b57600080fd5b33600081815260056020908152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3505050565b600160a060020a039182166000908152600660209081526040808320939094168252919091522054905600a165627a7a7230582076282fd9412d4ad5259ebe1b2ec80f239be138e156606006879efe89f9a0a45e0029

Deployed Bytecode Sourcemap

95:2207:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;152:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;152: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;152:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1647:154;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1647:154:0;-1:-1:-1;;;;;1647:154:0;;;;;;;;;122:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;122:26:0;;;;;;;;;;;;;;;;;;;;1253:389;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1253:389:0;-1:-1:-1;;;;;1253:389:0;;;;;;;;;;;;174:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;174:23:0;;;;784:102;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;784:102:0;-1:-1:-1;;;;;784:102:0;;;;;225:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;225:20:0;;;;;;;;-1:-1:-1;;;;;225:20:0;;;;;;;;;;;;;;201;;8:9:-1;5:2;;;30:1;27;20:12;5:2;201:20:0;;;;891:357;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;891:357:0;-1:-1:-1;;;;;891:357:0;;;;;;;1806:129;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1806:129:0;-1:-1:-1;;;;;1806:129:0;;;;;;;;;;152:18;;;;;;;;;;;;;;;-1:-1:-1;;152:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1647:154::-;1718:10;1710:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;1710:29:0;;;;;;;;;;;;:38;;;1758;;;;;;;1710:29;;1718:10;1758:38;;;;;;;;;;;1647:154;;:::o;122:26::-;;;;:::o;1253:389::-;-1:-1:-1;;;;;1339:15:0;;;;;;:8;:15;;;;;;:25;-1:-1:-1;1339:25:0;;;:65;;-1:-1:-1;;;;;;1368:14:0;;;;;;:7;:14;;;;;;;;1383:10;1368:26;;;;;;;;:36;-1:-1:-1;1368:36:0;1339:65;:80;;;;;1418:1;1408:6;:11;;1339:80;1331:89;;;;;;;;-1:-1:-1;;;;;1459:13:0;;;;;;:8;:13;;;;;;1433:22;;;:39;;1425:48;;;;;;-1:-1:-1;;;;;1484:13:0;;;;;;;:8;:13;;;;;;;;:23;;;;;;1518:15;;;;;;;;;:25;;;;;;;1554:7;:14;;;;;1569:10;1554:26;;;;;;;;:36;;;;;;;1606:28;;;;;;;1484:13;;1518:15;;1606:28;;;;;;;;;;1253:389;;;:::o;174:23::-;;;;:::o;784:102::-;-1:-1:-1;;;;;865:16:0;844:7;865:16;;;:8;:16;;;;;;;784:102::o;225:20::-;;;-1:-1:-1;;;;;225:20:0;;:::o;201:::-;;;;;;;;;;;;;;;-1:-1:-1;;201:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;891:357;961:4;739:8;758;739:27;732:35;;;;996:10;987:20;;;;:8;:20;;;;;;:30;-1:-1:-1;987:30:0;;;:45;;;1031:1;1021:6;:11;;987:45;979:54;;;;;;;;-1:-1:-1;;;;;1082:20:0;;;;;;:8;:20;;;;;;1049:29;;;:53;;1041:62;;;;;;1120:10;1111:20;;;;:8;:20;;;;;;;;:30;;;;;;;-1:-1:-1;;;;;1149:20:0;;;;;;;;;:30;;;;;;1192:40;;;;;;;1149:20;;1120:10;1192:40;;;;;;;;;;;891:357;;;:::o;1806:129::-;-1:-1:-1;;;;;1905:15:0;;;1884:7;1905:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;1806:129::o

Swarm Source

bzzr://76282fd9412d4ad5259ebe1b2ec80f239be138e156606006879efe89f9a0a45e

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.