ETH Price: $3,644.69 (-2.51%)

Transaction Decoder

Block:
22638505 at Jun-05-2025 12:48:11 PM +UTC
Transaction Fee:
0.000144708707573172 ETH $0.53
Gas Used:
46,364 Gas / 3.121143723 Gwei

Emitted Events:

322 Dragon.Approval( owner=[Sender] 0xcbe8cc79f816e35035cc31b469c67252d18d98b4, spender=0xa7Ca2C86...C2b0Db22A, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
(Titan Builder)
6.678823634711601104 Eth6.678869998711601104 Eth0.000046364
0xcbE8CC79...2D18d98b4
0.023365200941881972 Eth
Nonce: 28
0.0232204922343088 Eth
Nonce: 29
0.000144708707573172

Execution Trace

Dragon.approve( _spender=0xa7Ca2C8673bcFA5a26d8ceeC2887f2CC2b0Db22A, _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