ETH Price: $4,756.78 (+2.89%)

Transaction Decoder

Block:
16824321 at Mar-14-2023 06:10:59 AM +UTC
Transaction Fee:
0.000513213 ETH $2.44
Gas Used:
30,189 Gas / 17 Gwei

Emitted Events:

91 LinkToken.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000006bf11a2f26c92c540d5b8788ebd72927d683e207, 0x0000000000000000000000006a04ddf3de778de8d9fc64fcf6fb826b03570738, 0000000000000000000000000000000000000000000000020098ebf701df8000 )

Account State Difference:

  Address   Before After State Difference Code
0x51491077...4EcF986CA
0x6bF11A2F...7d683E207
0.006137178 Eth
Nonce: 2
0.005623965 Eth
Nonce: 3
0.000513213
(Flashbots: Builder)
1.183163657505624866 Eth1.183237222507984334 Eth0.000073565002359468

Execution Trace

LinkToken.transfer( _to=0x6a04ddf3de778De8D9Fc64Fcf6fB826b03570738, _value=36936531789999996928 ) => ( 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