ETH Price: $3,550.79 (-0.16%)

Transaction Decoder

Block:
22661533 at Jun-08-2025 06:04:11 PM +UTC
Transaction Fee:
0.000076198798675888 ETH $0.27
Gas Used:
46,088 Gas / 1.653332726 Gwei

Emitted Events:

643 Dragon.Approval( owner=[Sender] 0x2ff7d78e7e960ce8901fea0f5a51872aff3cccf2, spender=0x11111112...0f8842A65, value=682924624955193441074 )

Account State Difference:

  Address   Before After State Difference Code
0x2ff7d78E...AFf3cCCf2
0.199789015190059986 Eth
Nonce: 90
0.199712816391384098 Eth
Nonce: 91
0.000076198798675888
0x419c4dB4...8D9fDA05E
(Titan Builder)
10.435888335576814483 Eth10.435911379576814483 Eth0.000023044

Execution Trace

Dragon.approve( _spender=0x111111125421cA6dc452d289314280a0f8842A65, _value=682924624955193441074 ) => ( 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