Transaction Hash:
Block:
20765629 at Sep-16-2024 08:41:47 PM +UTC
Transaction Fee:
0.000317219532859808 ETH
$0.84
Gas Used:
46,279 Gas / 6.854502752 Gwei
Emitted Events:
234 |
Chefdotfun.Approval( owner=[Sender] 0x9374176ba0e0e56d1f244b2f4ba32a794bf06e0e, spender=0x00000000...43aC78BA3, value=5037934556292655934986 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x8f2Bf2f5...3202b8636 | |||||
0x9374176B...94BF06e0e |
0.067516806205310672 Eth
Nonce: 203
|
0.067199586672450864 Eth
Nonce: 204
| 0.000317219532859808 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 18.945920484510011177 Eth | 18.945964422497579184 Eth | 0.000043937987568007 |
Execution Trace
Chefdotfun.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=5037934556292655934986 ) => ( 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);