ETH Price: $4,629.49 (-2.59%)

Transaction Decoder

Block:
20730045 at Sep-11-2024 09:26:23 PM +UTC
Transaction Fee:
0.000127348362138998 ETH $0.59
Gas Used:
46,354 Gas / 2.747300387 Gwei

Emitted Events:

233 ChefToken.Approval( owner=[Sender] 0x9374176ba0e0e56d1f244b2f4ba32a794bf06e0e, spender=0x4d38ac8F...49998B880, value=23697223212040000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x3943799a...22A5b9d7e
(Titan Builder)
9.573932441276709365 Eth9.573965598357804965 Eth0.0000331570810956
0x9374176B...94BF06e0e
0.0659726665747526 Eth
Nonce: 166
0.065845318212613602 Eth
Nonce: 167
0.000127348362138998

Execution Trace

ChefToken.approve( spender=0x4d38ac8F0Db33904Ab04D97296eC4C549998B880, amount=23697223212040000000000000 ) => ( 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
26
pragma solidity 0.8.26;
// SPDX-License-Identifier: MIT
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);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX