ETH Price: $2,723.52 (-2.91%)

Transaction Decoder

Block:
20783195 at Sep-19-2024 07:37:59 AM +UTC
Transaction Fee:
0.00044497811918569 ETH $1.21
Gas Used:
29,179 Gas / 15.24994411 Gwei

Emitted Events:

204 Chefdotfun.Approval( owner=[Sender] 0x9374176ba0e0e56d1f244b2f4ba32a794bf06e0e, spender=0x00000000...43aC78BA3, value=23694178306680720483794 )

Account State Difference:

  Address   Before After State Difference Code
0x8f2Bf2f5...3202b8636
0x9374176B...94BF06e0e
0.020638610889819613 Eth
Nonce: 213
0.020193632770633923 Eth
Nonce: 214
0.00044497811918569
(beaverbuild)
17.341788405222313657 Eth17.341843314264513657 Eth0.0000549090422

Execution Trace

Chefdotfun.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=23694178306680720483794 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
pragma solidity 0.8.25;
// SPDX-License-Identifier: MIT
/**
Let's cook Cryptocurrency
Chef.fun is a cutting-edge platform designed to simplify the process of token deployment and provide investors with early access to promising crypto
    projects that are technically safe.
App: https://chef.fun/
Website: https://web.chef.fun/
Documentation: https://chef-fun-organization.gitbook.io/chef.fun
Twitter: https://x.com/chefdotfun
Telegram 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/2691
return msg.data;
}
}
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX