Transaction Hash:
Block:
19592494 at Apr-05-2024 10:24:23 PM +UTC
Transaction Fee:
0.000651861148013812 ETH
$1.79
Gas Used:
46,292 Gas / 14.081507561 Gwei
Emitted Events:
349 |
Andy.Approval( owner=[Sender] 0x7d1e77766ee72262b4536cb80f0d271b09b6e6b0, spender=0x00000000...43aC78BA3, value=16193082451782334465101187 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 3.098729329546947414 Eth | 3.098729778579347414 Eth | 0.0000004490324 | ||
0x68BbEd6A...5597fc91E | |||||
0x7d1E7776...B09b6e6b0 |
0.003750758205559443 Eth
Nonce: 4
|
0.003098897057545631 Eth
Nonce: 5
| 0.000651861148013812 |
Execution Trace
Andy.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=16193082451782334465101187 ) => ( True )
approve[ERC20 (ln:455)]
_approve[ERC20 (ln:459)]
Approval[ERC20 (ln:659)]
_msgSender[ERC20 (ln:459)]
1234567891011121314151617181920212223242526/** SPDX-License-Identifier: MIT* https://boysclubandy.com* https://x.com/andycoinonerc* https://t.me/TheOnlyAndyLeft*/pragma solidity 0.8.19;library SafeMath {/*** @dev Returns the addition of two unsigned integers, with an overflow flag.** _Available since v3.4._*/function tryAdd(uint256 a,uint256 b) internal pure returns (bool, uint256) {unchecked {uint256 c = a + b;if (c < a) return (false, 0);return (true, c);}}