Transaction Hash:
Block:
7773901 at May-16-2019 10:04:20 PM +UTC
Transaction Fee:
0.000567669615 ETH
$2.01
Gas Used:
37,139 Gas / 15.285 Gwei
Emitted Events:
86 |
Dragon.Transfer( from=[Sender] 0x47e595bc58cf1c9bf21c0b93af727b56ed35fe99, to=UserWallet, value=4892808103428473231414 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x419c4dB4...8D9fDA05E | |||||
0x47e595BC...6ED35fe99 |
0.017233775 Eth
Nonce: 13
|
0.016666105385 Eth
Nonce: 14
| 0.000567669615 | ||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 4,222.28843537417739869 Eth | 4,222.28900304379239869 Eth | 0.000567669615 |
Execution Trace
Dragon.transfer( _to=0x16AF887f61bA4f52160633f5D9F61b152eeFBd46, _value=4892808103428473231414 ) => ( 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() {