ETH Price: $2,640.70 (+3.85%)

Transaction Decoder

Block:
22585897 at May-29-2025 04:02:47 AM +UTC
Transaction Fee:
0.0001378743160268 ETH $0.36
Gas Used:
46,451 Gas / 2.9681668 Gwei

Emitted Events:

891 LinkToken.Approval( owner=[Sender] 0x194dc8ab80e0f74a71e1fe1344aa1d3845f99038, spender=0x11111112...73A960582, value=6242392084646837000 )

Account State Difference:

  Address   Before After State Difference Code
0x194dc8AB...845F99038
0.00339396525118154 Eth
Nonce: 7
0.00325609093515474 Eth
Nonce: 8
0.0001378743160268
(Titan Builder)
14.414513847257953213 Eth14.414520236046646551 Eth0.000006388788693338
0x51491077...4EcF986CA

Execution Trace

LinkToken.approve( _spender=0x1111111254EEB25477B68fb85Ed929f73A960582, _value=6242392084646837000 ) => ( 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.16;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal constant returns (uint256) {
uint256 c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) {
assert(b <= a);
return a - b;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX