ETH Price: $3,792.46 (+6.48%)

Transaction Decoder

Block:
22595893 at May-30-2025 01:37:47 PM +UTC
Transaction Fee:
0.000232255 ETH $0.88
Gas Used:
46,451 Gas / 5 Gwei

Emitted Events:

46 LinkToken.Approval( owner=[Sender] 0x5a534486c6234e5e85813f3711390fb05721efc9, spender=0x1231DEB6...7486F4EaE, value=6920415224913494809 )

Account State Difference:

  Address   Before After State Difference Code
0x51491077...4EcF986CA
0x5a534486...05721EfC9
0.298994066806395516 Eth
Nonce: 53
0.298761811806395516 Eth
Nonce: 54
0.000232255
(beaverbuild)
14.751867857460636229 Eth14.75190098029894269 Eth0.000033122838306461

Execution Trace

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