ETH Price: $3,540.63 (+4.79%)

Transaction Decoder

Block:
22625532 at Jun-03-2025 05:11:11 PM +UTC
Transaction Fee:
0.000535384786037566 ETH $1.90
Gas Used:
30,071 Gas / 17.804023346 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
(beaverbuild)
15.434816011921649016 Eth15.434819019021649016 Eth0.0000030071
0xB63abcCD...89564Be28
0.007492148837451753 Eth
Nonce: 158
0.006956764051414187 Eth
Nonce: 159
0.000535384786037566

Execution Trace

Dragon.transfer( _to=0xAE1D4AA271F0f87667B6DfB58cA4bCfDd7DD1428, _value=12382727329911734124633 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX