Transaction Hash:
Block:
20837542 at Sep-26-2024 09:40:59 PM +UTC
Transaction Fee:
0.000978987147973632 ETH
$2.71
Gas Used:
46,543 Gas / 21.034036224 Gwei
Emitted Events:
254 |
Chefdotfun.Approval( owner=[Sender] 0x0c285904db116616da9d1251ccb6e437b25eea30, spender=0x00000000...43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0c285904...7b25eea30 |
0.015039544213642464 Eth
Nonce: 1258
|
0.014060557065668832 Eth
Nonce: 1259
| 0.000978987147973632 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.590684893647720747 Eth | 9.590790478994009862 Eth | 0.000105585346289115 | |
0x8f2Bf2f5...3202b8636 |
Execution Trace
Chefdotfun.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[ERC20 (ln:188)]
_msgSender[ERC20 (ln:189)]
_approve[ERC20 (ln:190)]
Approval[ERC20 (ln:317)]
12345678910111213141516171819202122232425pragma solidity 0.8.25;// SPDX-License-Identifier: MIT/**Let's cook CryptocurrencyChef.fun is a cutting-edge platform designed to simplify the process of token deployment and provide investors with early access to promising cryptoprojects that are technically safe.App: https://chef.fun/Website: https://web.chef.fun/Documentation: https://chef-fun-organization.gitbook.io/chef.funTwitter: https://x.com/chefdotfunTelegram Portal: https://t.me/chefdotfun*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}}interface IERC20 {/*** @dev Returns the amount of tokens in existence.*/function totalSupply() external view returns (uint256);