ETH Price: $3,884.72 (+3.19%)

Transaction Decoder

Block:
22660678 at Jun-08-2025 03:11:47 PM +UTC
Transaction Fee:
0.000072370377996356 ETH $0.28
Gas Used:
46,364 Gas / 1.560917479 Gwei

Emitted Events:

407 Dragon.Approval( owner=[Sender] 0xd1eb03f065fa022047b947c4305f60abce525a6c, spender=0x216B4B4B...4278Bfcae, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
(Titan Builder)
7.606761086487154326 Eth7.60678263066012327 Eth0.000021544172968944
0xD1eB03F0...BCE525a6c
0.011969091297618915 Eth
Nonce: 5
0.011896720919622559 Eth
Nonce: 6
0.000072370377996356

Execution Trace

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