ETH Price: $3,410.29 (+0.83%)

Transaction Decoder

Block:
7774956 at May-17-2019 02:01:02 AM +UTC
Transaction Fee:
0.000571417 ETH $1.95
Gas Used:
51,947 Gas / 11 Gwei

Emitted Events:

42 Dragon.Transfer( from=[Sender] 0x0d0707963952f2fba59dd06f2b425ace40b492fe, to=UserWallet, value=1971232000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x0D070796...e40b492Fe
(Gate.io 1)
35,212.660584435449749138 Eth
Nonce: 1146894
35,212.660013018449749138 Eth
Nonce: 1146895
0.000571417
0x419c4dB4...8D9fDA05E
(Hiveon: Old Pool)
1,216.309308353155679771 Eth1,216.309879770155679771 Eth0.000571417

Execution Trace

Dragon.transfer( _to=0x9259DD7224D01522AC4efdc5f5A3d22e6fa8F3A3, _value=1971232000000000000000 ) => ( 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