ETH Price: $2,576.94 (-6.09%)

Transaction Decoder

Block:
20735573 at Sep-12-2024 03:58:23 PM +UTC
Transaction Fee:
0.000370523261557312 ETH $0.95
Gas Used:
46,378 Gas / 7.989203104 Gwei

Emitted Events:

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

Account State Difference:

  Address   Before After State Difference Code
0x2bb01F2A...56A93a701
(Titan Builder)
5.382584618834661673 Eth5.382632804137645089 Eth0.000048185302983416
0x9374176B...94BF06e0e
0.199958414294660491 Eth
Nonce: 178
0.199587891033103179 Eth
Nonce: 179
0.000370523261557312

Execution Trace

ChefToken.approve( spender=0x4d38ac8F0Db33904Ab04D97296eC4C549998B880, amount=6148716967726067827180061 ) => ( 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