ETH Price: $3,515.44 (+3.12%)

Transaction Decoder

Block:
22690245 at Jun-12-2025 06:23:11 PM +UTC
Transaction Fee:
0.000152941808857984 ETH $0.54
Gas Used:
46,016 Gas / 3.323665874 Gwei

Emitted Events:

434 Dragon.Approval( owner=[Sender] 0x73024f4c577ded086ccf97921c51286f8ed1ce86, spender=0x6A000F20...040001068, value=2500000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
(Titan Builder)
8.806389523739595109 Eth8.806432820193995109 Eth0.0000432964544
0x73024F4C...F8ed1Ce86
0.003153550587005073 Eth
Nonce: 2056
0.003000608778147089 Eth
Nonce: 2057
0.000152941808857984

Execution Trace

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