Transaction Hash:
Block:
7773583 at May-16-2019 08:56:13 PM +UTC
Transaction Fee:
0.000600615 ETH
$2.03
Gas Used:
37,075 Gas / 16.2 Gwei
Emitted Events:
72 |
Dragon.Transfer( from=[Sender] 0x2b5634c42055806a59e9107ed44d43c426e58258, to=0xB248ADFF7438c3ef405181EEeC9B334de31F6244, value=10044963707000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2B5634C4...426E58258 | (KuCoin 1) |
9,970.023371652301215809 Eth
Nonce: 1465985
|
9,970.022771037301215809 Eth
Nonce: 1465986
| 0.000600615 | |
0x419c4dB4...8D9fDA05E | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 628.239981967675549378 Eth | 628.240582582675549378 Eth | 0.000600615 |
Execution Trace
Dragon.transfer( _to=0xB248ADFF7438c3ef405181EEeC9B334de31F6244, _value=10044963707000000000000 ) => ( 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) {