Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 5.073658617783016076 Eth | 5.073658664984016076 Eth | 0.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 )
approve[ERC20 (ln:86)]
_approve[ERC20 (ln:87)]
Approval[ERC20 (ln:157)]
_msgSender[ERC20 (ln:87)]
1234567891011121314151617181920212223242526/*** 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: MITpragma 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);