ETH Price: $3,686.13 (+0.93%)

Transaction Decoder

Block:
19427188 at Mar-13-2024 03:58:11 PM +UTC
Transaction Fee:
0.003338026512163189 ETH $12.30
Gas Used:
47,201 Gas / 70.719402389 Gwei

Emitted Events:

272 io2DAIToken.Approval( owner=[Sender] 0xa8ab8dc3a156aa7aa0d8e6f4507017488ac50359, spender=0x00000000...43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
5.073658617783016076 Eth5.073658664984016076 Eth0.000000047201
0xa8ab8Dc3...88AC50359
5.041916868102605944 Eth
Nonce: 81
5.038578841590442755 Eth
Nonce: 82
0.003338026512163189
0xB44b653f...68E8B2A1d

Execution Trace

io2DAIToken.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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
/**
* 2DAI.io
* Telegram: https://t.me/Token2dAI
* Ready to unleash your creativity with the power of AI? Let's generate the visuals of your dreams.
* Total Supply: 1 Billion Tokens
* Initial Max Wallet: 2% (>20000000 Tokens)
* Set slippage to 3-4% : 1% to LP, 2% tax for Marketing & Hosting costs.
*/
// 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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX