Transaction Hash:
Block:
7774330 at May-16-2019 11:48:35 PM +UTC
Transaction Fee:
0.00017743986 ETH
$0.49
Gas Used:
51,883 Gas / 3.42 Gwei
Emitted Events:
48 |
Dragon.Transfer( from=[Sender] 0x5ac3c50f4bbc82dfef64466890c0110a3ca0985a, to=0x8AD00d5Ffd9AA8DDF1810DE89073f0c195c35076, value=10000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1B5B5906...36A4EDa0b
Miner
| 319.234875340179971124 Eth | 319.235052780039971124 Eth | 0.00017743986 | ||
0x419c4dB4...8D9fDA05E | |||||
0x5Ac3c50f...a3cA0985A |
10.33506497470127751 Eth
Nonce: 424
|
10.33488753484127751 Eth
Nonce: 425
| 0.00017743986 |
Execution Trace
Dragon.transfer( _to=0x8AD00d5Ffd9AA8DDF1810DE89073f0c195c35076, _value=10000000000000000000 ) => ( 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) {