ETH Price: $2,526.06 (-8.41%)

Transaction Decoder

Block:
19189003 at Feb-09-2024 07:11:47 AM +UTC
Transaction Fee:
0.001226501734227968 ETH $3.10
Gas Used:
26,368 Gas / 46.514780576 Gwei

Emitted Events:

274 BobaCat.Approval( owner=[Sender] 0xc2c68d11b6f54f108f8acda26248302713275798, spender=0x00000000...43aC78BA3, value=54998496450000000000000 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
134.239641307649671429 Eth134.239641729387347461 Eth0.000000421737676032
0xc2c68D11...713275798
0.010295409688112611 Eth
Nonce: 49
0.009068907953884643 Eth
Nonce: 50
0.001226501734227968

Execution Trace

BobaCat.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=54998496450000000000000 ) => ( 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
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
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