ETH Price: $3,538.99 (+1.98%)

Transaction Decoder

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 Code
0x419c4dB4...8D9fDA05E
0x47e595BC...6ED35fe99
0.017233775 Eth
Nonce: 13
0.016666105385 Eth
Nonce: 14
0.000567669615
(Spark Pool)
4,222.28843537417739869 Eth4,222.28900304379239869 Eth0.000567669615

Execution Trace

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