Transaction Hash:
Block:
20067360 at Jun-11-2024 08:21:23 AM +UTC
Transaction Fee:
0.00036053993175651 ETH
$1.36
Gas Used:
37,235 Gas / 9.682823466 Gwei
Emitted Events:
56 |
DxToken.Transfer( from=[Sender] 0x087aa9796e940d48e34fbe5f100b2e3bc0cd8370, to=0x8C8af18887Cd2B9cC87E7e4bdb9484F5e99AB49a, value=3343562000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x087aA979...bc0CD8370 |
0.0004512 Eth
Nonce: 0
|
0.00009066006824349 Eth
Nonce: 1
| 0.00036053993175651 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 17.428980042527815924 Eth | 17.429128982527815924 Eth | 0.00014894 | |
0x973e5269...8d27041A9 |
Execution Trace
DxToken.transfer( _to=0x8C8af18887Cd2B9cC87E7e4bdb9484F5e99AB49a, _value=3343562000000000000000000 ) => ( True )
transfer[ERC20Basic (ln:156)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.23;/*** @title SafeMath* @dev Math operations with safety checks that throw on error*/library SafeMath {/*** @dev Multiplies two numbers, throws on overflow.*/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;}/*** @dev Integer division of two numbers, truncating the quotient.*/function div(uint256 a, uint256 b) internal pure returns (uint256) {// assert(b > 0); // Solidity automatically throws when dividing by 0