ETH Price: $3,744.59 (+1.57%)

Transaction Decoder

Block:
22592303 at May-30-2025 01:33:59 AM +UTC
Transaction Fee:
0.00007464555089544 ETH $0.28
Gas Used:
24,080 Gas / 3.099898293 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
(Titan Builder)
6.097851553901108572 Eth6.097875633901108572 Eth0.00002408
0xAD97D063...3ea2Ae701
0.01311136086645561 Eth
Nonce: 53
0.01303671531556017 Eth
Nonce: 54
0.00007464555089544

Execution Trace

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