Transaction Hash:
Block:
22651534 at Jun-07-2025 08:31:47 AM +UTC
Transaction Fee:
0.000041050298829488 ETH
$0.15
Gas Used:
30,071 Gas / 1.365112528 Gwei
Emitted Events:
300 |
Dragon.Transfer( from=[Sender] 0xaf7d1e3d1d1717f94dc20a3ca212159b71880ad6, to=0x0559c65011298dAd9c0Ecc302078d84DCE3742c5, value=6065646319397434229055 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x419c4dB4...8D9fDA05E | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 16.321290226918246807 Eth | 16.321305262418246807 Eth | 0.0000150355 | |
0xAf7D1E3D...B71880Ad6 |
0.003956391488285738 Eth
Nonce: 6955
|
0.00391534118945625 Eth
Nonce: 6956
| 0.000041050298829488 |
Execution Trace
Dragon.transfer( _to=0x0559c65011298dAd9c0Ecc302078d84DCE3742c5, _value=6065646319397434229055 ) => ( True )
transfer[ERC20Basic (ln:92)]
1234567891011121314151617181920212223242526pragma solidity ^0.4.18;// File: zeppelin-solidity/contracts/math/SafeMath.sol/*** @title SafeMath* @dev Math operations with safety checks that throw on error*/library SafeMath {function mul(uint256 a, uint256 b) internal pure returns (uint256) {if (a == 0) {return 0;}uint256 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 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}function sub(uint256 a, uint256 b) internal pure returns (uint256) {