ETH Price: $3,745.00 (+2.81%)

Transaction Decoder

Block:
19432641 at Mar-14-2024 10:25:11 AM +UTC
Transaction Fee:
0.003613078606658165 ETH $13.53
Gas Used:
73,939 Gas / 48.865667735 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(MEV Builder: 0x3B...436)
102.159522949562383084 Eth102.159523023501383084 Eth0.000000073939
0x5AEf5bba...57b87c62c
0xa8ab8Dc3...88AC50359
5.16371062419559104 Eth
Nonce: 94
5.160097545588932875 Eth
Nonce: 95
0.003613078606658165

Execution Trace

DeepFakeAI.transfer( recipient=0x658579BFFd19C20F48c9fA16bE306534f032654A, amount=672139526610187607586585 ) => ( 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
/**
* Website: FakeAI.io
* Telegram: https://t.me/FakeAI
* Twitter: https://twitter.com/DeepFakeAI_
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.12;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this;
return msg.data;
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX