Transaction Hash:
Block:
20067932 at Jun-11-2024 10:16:59 AM +UTC
Transaction Fee:
0.000554292405691385 ETH
$2.15
Gas Used:
32,423 Gas / 17.095654495 Gwei
Emitted Events:
331 |
DxToken.Transfer( from=[Sender] 0x30b82633651036982b11c793c625cb48b02f98af, to=0x8C8af18887Cd2B9cC87E7e4bdb9484F5e99AB49a, value=1056614000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x30B82633...8b02f98AF |
0.000670536 Eth
Nonce: 0
|
0.000116243594308615 Eth
Nonce: 1
| 0.000554292405691385 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.327624445575196802 Eth | 6.327754137575196802 Eth | 0.000129692 | |
0x973e5269...8d27041A9 |
Execution Trace
DxToken.transfer( _to=0x8C8af18887Cd2B9cC87E7e4bdb9484F5e99AB49a, _value=1056614000000000000000000 ) => ( 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