ETH Price: $2,766.69 (+4.81%)
Gas: 0.79 Gwei

Contract

0xf417a2448FAa93994DFa6146BeDc58c0E353E24E
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer169307642023-03-29 5:06:35696 days ago1680066395IN
0xf417a244...0E353E24E
0 ETH0.0007790926.11518216
Transfer169307642023-03-29 5:06:35696 days ago1680066395IN
0xf417a244...0E353E24E
0 ETH0.000779426.11518216
Transfer169307642023-03-29 5:06:35696 days ago1680066395IN
0xf417a244...0E353E24E
0 ETH0.000779426.11518216
Transfer169307642023-03-29 5:06:35696 days ago1680066395IN
0xf417a244...0E353E24E
0 ETH0.000779426.11518216
Transfer169307632023-03-29 5:06:23696 days ago1680066383IN
0xf417a244...0E353E24E
0 ETH0.0007849126.29970378
Transfer151115832022-07-10 0:20:49958 days ago1657412449IN
0xf417a244...0E353E24E
0 ETH0.01184846397
Transfer151113212022-07-09 23:19:57958 days ago1657408797IN
0xf417a244...0E353E24E
0 ETH0.02277173763
Transfer151110322022-07-09 22:18:52958 days ago1657405132IN
0xf417a244...0E353E24E
0 ETH0.0022989877
Transfer151107832022-07-09 21:19:51958 days ago1657401591IN
0xf417a244...0E353E24E
0 ETH0.00928179311
Transfer151104992022-07-09 20:18:42958 days ago1657397922IN
0xf417a244...0E353E24E
0 ETH0.0027755893
Transfer151102422022-07-09 19:19:42959 days ago1657394382IN
0xf417a244...0E353E24E
0 ETH0.0011341138
Transfer151099612022-07-09 18:18:51959 days ago1657390731IN
0xf417a244...0E353E24E
0 ETH0.001193840
Transfer151097172022-07-09 17:18:27959 days ago1657387107IN
0xf417a244...0E353E24E
0 ETH0.0011191837.5
Transfer151091842022-07-09 15:18:51959 days ago1657379931IN
0xf417a244...0E353E24E
0 ETH0.0027009790.5
Transfer151088772022-07-09 14:18:27959 days ago1657376307IN
0xf417a244...0E353E24E
0 ETH0.001446948.5
Transfer151085822022-07-09 13:18:49959 days ago1657372729IN
0xf417a244...0E353E24E
0 ETH0.0010393530
Transfer151082972022-07-09 12:18:26959 days ago1657369106IN
0xf417a244...0E353E24E
0 ETH0.0008953530
Transfer151080312022-07-09 11:17:59959 days ago1657365479IN
0xf417a244...0E353E24E
0 ETH0.0008953530
Transfer151077562022-07-09 10:18:38959 days ago1657361918IN
0xf417a244...0E353E24E
0 ETH0.0011788739.5
Transfer151075222022-07-09 9:18:57959 days ago1657358337IN
0xf417a244...0E353E24E
0 ETH0.0008953530
Transfer151072632022-07-09 8:17:51959 days ago1657354671IN
0xf417a244...0E353E24E
0 ETH0.0008957130
Transfer151069882022-07-09 7:18:54959 days ago1657351134IN
0xf417a244...0E353E24E
0 ETH0.0011042637
Transfer151067032022-07-09 6:18:42959 days ago1657347522IN
0xf417a244...0E353E24E
0 ETH0.0009401131.5
Transfer151064152022-07-09 5:19:40959 days ago1657343980IN
0xf417a244...0E353E24E
0 ETH0.0008953530
Transfer151061432022-07-09 4:16:57959 days ago1657340217IN
0xf417a244...0E353E24E
0 ETH0.0014897343
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
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
/**
 *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

[{"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"}]

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 Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.