ETH Price: $3,001.91 (+1.58%)

Transaction Decoder

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 Code
0x2B5634C4...426E58258
(KuCoin 1)
5,410.717126091313593235 Eth
Nonce: 1466558
5,410.716096273513593235 Eth
Nonce: 1466559
0.0010298178
0x419c4dB4...8D9fDA05E
(Spark Pool)
5,344.323820195099360123 Eth5,344.324850012899360123 Eth0.0010298178

Execution Trace

Dragon.transfer( _to=0x2e82eF5965cCCeDb31F5E08C26D59c75d5B1F7e5, _value=8591100000000000000000 ) => ( True )
File 1 of 2: Dragon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pragma 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;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 2: UserWallet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pragma solidity ^0.4.10;
// Copyright 2017 Bittrex
contract AbstractSweeper {
function sweep(address token, uint amount) returns (bool);
function () { throw; }
Controller controller;
function AbstractSweeper(address _controller) {
controller = Controller(_controller);
}
modifier canSweep() {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX