ETH Price: $3,398.16 (+3.31%)

Transaction Decoder

Block:
22711462 at Jun-15-2025 05:35:59 PM +UTC
Transaction Fee:
0.000025103402897583 ETH $0.09
Gas Used:
30,201 Gas / 0.831210983 Gwei

Emitted Events:

31 LinkToken.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000007450e6002fb083e5d5d9b25b525aa7902a911add, 0x00000000000000000000000091d40e4818f4d4c57b4578d9eca6afc92ac8debe, 0000000000000000000000000000000000000000000000326798485c82090c00 )

Account State Difference:

  Address   Before After State Difference Code
(Lido: Execution Layer Rewards Vault)
9.173336635077248343 Eth9.173346103090748343 Eth0.0000094680135
0x51491077...4EcF986CA
0x7450e600...02a911ADd
0.000475321046796351 Eth
Nonce: 1
0.000450217643898768 Eth
Nonce: 2
0.000025103402897583

Execution Trace

LinkToken.transfer( _to=0x91D40E4818F4D4C57b4578d9ECa6AFc92aC8DEbE, _value=929801999630000000000 ) => ( success=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