Transaction Hash:
Block:
7775856 at May-17-2019 05:27:04 AM +UTC
Transaction Fee:
0.0010298178 ETH
$3.09
Gas Used:
52,011 Gas / 19.8 Gwei
Emitted Events:
47 |
Dragon.Transfer( from=[Sender] 0x2b5634c42055806a59e9107ed44d43c426e58258, to=UserWallet, value=8591100000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2B5634C4...426E58258 | (KuCoin 1) |
5,410.717126091313593235 Eth
Nonce: 1466558
|
5,410.716096273513593235 Eth
Nonce: 1466559
| 0.0010298178 | |
0x419c4dB4...8D9fDA05E | |||||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 5,344.323820195099360123 Eth | 5,344.324850012899360123 Eth | 0.0010298178 |
Execution Trace
Dragon.transfer( _to=0x2e82eF5965cCCeDb31F5E08C26D59c75d5B1F7e5, _value=8591100000000000000000 ) => ( True )
transfer[ERC20Basic (ln:92)]
File 1 of 2: Dragon
File 2 of 2: UserWallet
12345678910111213141516pragma 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;
File 2 of 2: UserWallet
12345678910111213141516pragma solidity ^0.4.10;// Copyright 2017 Bittrexcontract AbstractSweeper {function sweep(address token, uint amount) returns (bool);function () { throw; }Controller controller;function AbstractSweeper(address _controller) {controller = Controller(_controller);}modifier canSweep() {