ETH Price: $4,657.12 (+4.11%)

Transaction Decoder

Block:
22595899 at May-30-2025 01:38:59 PM +UTC
Transaction Fee:
0.000205783079515307 ETH $0.96
Gas Used:
46,667 Gas / 4.409605921 Gwei

Emitted Events:

293 LinkToken.Approval( owner=[Sender] 0xc2000115ae0336cd36b603c6e5d0f5a209bcf3b9, spender=0x00000000...072C22734, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
5.753801427489886456 Eth5.753805067515886456 Eth0.000003640026
0x51491077...4EcF986CA
0xC2000115...209BCf3B9
0.002624688702723918 Eth
Nonce: 10
0.002418905623208611 Eth
Nonce: 11
0.000205783079515307

Execution Trace

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