ETH Price: $2,777.34 (+6.06%)

Transaction Decoder

Block:
21559043 at Jan-05-2025 03:02:23 PM +UTC
Transaction Fee:
0.000392457 ETH $1.09
Gas Used:
30,189 Gas / 13 Gwei

Emitted Events:

491 LinkToken.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000a0b9c94f5271e37657da87c4f3a61844fd36b787, 0x000000000000000000000000d23e3b9cfb707472620bd58bdcbc1748a4ae74ef, 00000000000000000000000000000000000000000000000046257dec2634d400 )

Account State Difference:

  Address   Before After State Difference Code
0x51491077...4EcF986CA
(beaverbuild)
14.03745330561347321 Eth14.037487553898806432 Eth0.000034248285333222
0xA0b9c94F...4Fd36b787
0.003 Eth
Nonce: 91
0.002607543 Eth
Nonce: 92
0.000392457

Execution Trace

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