Transaction Hash:
Block:
22604921 at May-31-2025 07:54:47 PM +UTC
Transaction Fee:
0.000127709835603812 ETH
$0.38
Gas Used:
46,739 Gas / 2.732404108 Gwei
Emitted Events:
343 |
LinkToken.Approval( owner=[Sender] 0xfac2532e92f2f68937c6d0d10cd616cc3c9c208c, spender=0x69460570...25f0Ca22d, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x51491077...4EcF986CA | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 19.788503769772914694 Eth | 19.788550508772914694 Eth | 0.000046739 | |
0xFAc2532E...c3C9C208c |
0.117883165773070198 Eth
Nonce: 1
|
0.117755455937466386 Eth
Nonce: 2
| 0.000127709835603812 |
Execution Trace
LinkToken.approve( _spender=0x69460570c93f9DE5E2edbC3052bf10125f0Ca22d, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[LinkToken (ln:265)]
approve[LinkToken (ln:270)]
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;}