Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x51491077...4EcF986CA | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 14.03745330561347321 Eth | 14.037487553898806432 Eth | 0.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 )
transfer[LinkToken (ln:252)]
transfer[LinkToken (ln:257)]
1234567891011121314151617181920212223242526pragma 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 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}function sub(uint256 a, uint256 b) internal constant returns (uint256) {assert(b <= a);return a - b;}