Transaction Hash:
Block:
20067948 at Jun-11-2024 10:20:11 AM +UTC
Transaction Fee:
0.00061497349055912 ETH
$1.81
Gas Used:
37,235 Gas / 16.516006192 Gwei
Emitted Events:
123 |
DxToken.Transfer( from=[Sender] 0x1ae5fb5668e63af7f7c506a7c54a1c97a6b02ccb, to=0x8C8af18887Cd2B9cC87E7e4bdb9484F5e99AB49a, value=2361774000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1ae5fB56...7A6B02CCb |
0.0006768 Eth
Nonce: 0
|
0.00006182650944088 Eth
Nonce: 1
| 0.00061497349055912 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.349799947605387541 Eth | 6.349948887605387541 Eth | 0.00014894 | |
0x973e5269...8d27041A9 |
Execution Trace
DxToken.transfer( _to=0x8C8af18887Cd2B9cC87E7e4bdb9484F5e99AB49a, _value=2361774000000000000000000 ) => ( 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