ETH Price: $2,541.60 (-7.17%)

Transaction Decoder

Block:
22585643 at May-29-2025 03:11:23 AM +UTC
Transaction Fee:
0.00019131169673092 ETH $0.49
Gas Used:
26,539 Gas / 7.20870028 Gwei

Emitted Events:

139 LinkToken.Approval( owner=[Sender] 0xdebd1abd218103efc7a748c9079c54f443dffc8a, spender=0x87870Bca...50B4fA4E2, value=15322741729999998976 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
9.336168698274707944 Eth9.336200862859726779 Eth0.000032164585018835
0xdEbd1aBd...443DfFc8A
0.011597018847525399 Eth
Nonce: 63
0.011405707150794479 Eth
Nonce: 64
0.00019131169673092

Execution Trace

LinkToken.approve( _spender=0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2, _value=15322741729999998976 ) => ( 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