ETH Price: $2,983.22 (-0.61%)

Transaction Decoder

Block:
22588104 at May-29-2025 11:26:47 AM +UTC
Transaction Fee:
0.0001520904 ETH $0.45
Gas Used:
46,088 Gas / 3.3 Gwei

Emitted Events:

212 Dragon.Approval( owner=[Sender] 0xc877d5ba08fc9a796dcd494d86b10a42d9c515c3, spender=0x11111112...0f8842A65, value=2595069776442941788601 )

Account State Difference:

  Address   Before After State Difference Code
0x419c4dB4...8D9fDA05E
(beaverbuild)
14.337911518026497234 Eth14.337965465180162394 Eth0.00005394715366516
0xC877D5bA...2D9C515C3
1.07048876718524771 Eth
Nonce: 3
1.07033667678524771 Eth
Nonce: 4
0.0001520904

Execution Trace

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