Transaction Hash:
Block:
8701421 at Oct-08-2019 12:48:54 PM +UTC
Transaction Fee:
0.0000066285 ETH
$0.02
Gas Used:
22,095 Gas / 0.3 Gwei
Emitted Events:
86 |
DCS.Transfer( _from=[Sender] 0x40480c7b2286c7ec2615c99f73d6db977e3041d0, _to=0xAb8C8e7ED11f53052D71d5229943C2427E7fAeDB, _value=999999999980 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x40480C7B...77E3041d0 |
0.0024831048876 Eth
Nonce: 41
|
0.0024764763876 Eth
Nonce: 42
| 0.0000066285 | ||
0x52bc44d5...b7d7bE3b5
Miner
| (Nanopool) | 5,283.781926267526488648 Eth | 5,283.781932896026488648 Eth | 0.0000066285 | |
0xbdeD3f75...9AfdE12B1 |
Execution Trace
DCS.transfer( _to=0xAb8C8e7ED11f53052D71d5229943C2427E7fAeDB, _amount=999999999980 ) => ( 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;