ETH Price: $2,595.52 (-6.51%)

Transaction Decoder

Block:
21368685 at Dec-10-2024 12:59:47 AM +UTC
Transaction Fee:
0.000646396186382118 ETH $1.68
Gas Used:
30,201 Gas / 21.403138518 Gwei

Emitted Events:

208 LinkToken.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000ef2fbe7f0c5843a587b5dad9d239186df10f8d5c, 0x0000000000000000000000009772db485b028616e85a41b718047de21aef31fe, 00000000000000000000000000000000000000000000003c9669fad680567000 )

Account State Difference:

  Address   Before After State Difference Code
0x51491077...4EcF986CA
(beaverbuild)
13.606061490419378453 Eth13.606088428742771981 Eth0.000026938323393528
0xeF2FBE7F...dF10F8D5C
0.010885204029381927 Eth
Nonce: 8
0.010238807842999809 Eth
Nonce: 9
0.000646396186382118

Execution Trace

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