Transaction Hash:
Block:
21286376 at Nov-28-2024 01:04:23 PM +UTC
Transaction Fee:
0.000371527383694503 ETH
$0.93
Gas Used:
30,201 Gas / 12.301823903 Gwei
Emitted Events:
111 |
LinkToken.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000ef2fbe7f0c5843a587b5dad9d239186df10f8d5c, 0x0000000000000000000000009772db485b028616e85a41b718047de21aef31fe, 00000000000000000000000000000000000000000000004b390d90c09bf2c000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x51491077...4EcF986CA | |||||
0xe43Cc5b6...C500014CA
Miner
| (Fee Recipient: 0xe43...4CA) | 128.631261456524191656 Eth | 128.631264498671857887 Eth | 0.000003042147666231 | |
0xeF2FBE7F...dF10F8D5C |
0.003088568930842538 Eth
Nonce: 5
|
0.002717041547148035 Eth
Nonce: 6
| 0.000371527383694503 |
Execution Trace
LinkToken.transfer( _to=0x9772dB485b028616E85a41B718047de21AEf31FE, _value=1387616906720000000000 ) => ( 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;}