ETH Price: $2,563.42 (-6.59%)

Transaction Decoder

Block:
22387116 at May-01-2025 06:08:11 AM +UTC
Transaction Fee:
0.00003884371861272 ETH $0.10
Gas Used:
46,256 Gas / 0.839755245 Gwei

Emitted Events:

214 Mask.Approval( owner=[Sender] 0xa61990f77b31747a10ba9a3342de4f65e74aa9c5, spender=0x00000000...43aC78BA3, value=834213549892125975 )

Account State Difference:

  Address   Before After State Difference Code
0x2B8AAC16...71cB44709
(beaverbuild)
13.905505805187827295 Eth13.905528933187827295 Eth0.000023128
0xa61990F7...5E74Aa9c5
0.0557350151718606 Eth
Nonce: 60
0.05569617145324788 Eth
Nonce: 61
0.00003884371861272

Execution Trace

Mask.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=834213549892125975 ) => ( 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
// Deployed with the Atlas IDE
// https://app.atlaszk.com/
//https://knowyourmeme.com/photos/1096564-wojak
pragma solidity 0.8.23;
import "./MaskUtils.sol";
contract Mask is Context, IERC20, Ownable {
using SafeMath for uint256;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
mapping(address => bool) private _isExcludedFromFee;
mapping(address => bool) private bots;
address payable private _taxWallet;
uint256 private _initialBuyTax = 23;
uint256 private _initialSellTax = 23;
uint256 private _finalBuyTax = 0;
uint256 private _finalSellTax = 0;
uint256 private _reduceBuyTaxAt = 23;
uint256 private _reduceSellTaxAt = 23;
uint256 private _preventSwapBefore = 26;
uint256 private _transferTax = 70;
uint256 private _buyCount = 0;
uint8 private constant _decimals = 9;
uint256 private constant _tTotal = 420690000000 * 10 ** _decimals;
string private constant _name = unicode"Wojak Mask";
string private constant _symbol = unicode"MASK";
uint256 public _maxTxAmount = 4206900000 * 10 ** _decimals;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX