Transaction Hash:
Block:
8675704 at Oct-04-2019 12:36:13 PM +UTC
Transaction Fee:
0.000037095 ETH
$0.10
Gas Used:
37,095 Gas / 1 Gwei
Emitted Events:
124 |
DCS.Transfer( _from=[Sender] 0xf42223a0bea7c10e314af15bc74b13c08c31dd80, _to=0x2B45Bb45AbE291FB5ffa03772E9cBdCF9c88600D, _value=19500000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xb2930B35...e543a0347
Miner
| (MiningPoolHub: Old Address) | 9,344.998446760069039863 Eth | 9,344.998483855069039863 Eth | 0.000037095 | |
0xbdeD3f75...9AfdE12B1 | |||||
0xF42223A0...08c31Dd80 |
0.0030572777476 Eth
Nonce: 39
|
0.0030201827476 Eth
Nonce: 40
| 0.000037095 |
Execution Trace
DCS.transfer( _to=0x2B45Bb45AbE291FB5ffa03772E9cBdCF9c88600D, _amount=19500000000000 ) => ( success=True )
transfer[DCS (ln:244)]
sub[DCS (ln:249)]
add[DCS (ln:250)]
Transfer[DCS (ln:251)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.25;// ----------------------------------------------------------------------------// 'DCSTOKEN//// NAME : DCS TOKEN// Symbol : DCS// Total supply: 27,000,000,000// Decimals : 8////// -----------------------------------------------------------------------------library SafeMath {function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {if (a == 0) {return 0;}c = a * b;assert(c / a == b);return c;}function div(uint256 a, uint256 b) internal pure returns (uint256) {// assert(b > 0); // Solidity automatically throws when dividing by 0// uint256 c = a / b;