Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x0D070796...e40b492Fe | (Gate.io 1) |
35,212.660584435449749138 Eth
Nonce: 1146894
|
35,212.660013018449749138 Eth
Nonce: 1146895
| 0.000571417 | |
0x419c4dB4...8D9fDA05E | |||||
0x4C549990...bF4211fA5
Miner
| (Hiveon: Old Pool) | 1,216.309308353155679771 Eth | 1,216.309879770155679771 Eth | 0.000571417 |
Execution Trace
Dragon.transfer( _to=0x9259DD7224D01522AC4efdc5f5A3d22e6fa8F3A3, _value=1971232000000000000000 ) => ( 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() {