Transaction Decoder
Transaction Hash:
Block:
22270582 at Apr-14-2025 11:42:47 PM +UTC
Transaction Fee:
0.00004101855794188 ETH
$0.15
Gas Used:
46,316 Gas / 0.88562393 Gwei
Emitted Events:
39 |
Mask.Approval( owner=[Sender] 0xc2b8cbbedcf857ea731011ee203d2908fea18b12, spender=0x4313C378...03096b27f, value=160823574268556737 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2B8AAC16...71cB44709 | |||||
0xa6c24838...dDF008387
Miner
| (MEV Builder: 0xa6c2...387) | 0.075340709410582719 Eth | 0.075363867410582719 Eth | 0.000023158 | |
0xc2B8cbBE...8fEA18b12 |
0.011792260557456706 Eth
Nonce: 2
|
0.011751241999514826 Eth
Nonce: 3
| 0.00004101855794188 |
Execution Trace
Mask.approve( spender=0x4313C378Cc91eA583C91387B9216e2c03096b27f, amount=160823574268556737 ) => ( True )
approve[Mask (ln:74)]
_approve[Mask (ln:75)]
Approval[Mask (ln:91)]
_msgSender[Mask (ln:75)]
1234567891011121314151617181920212223242526// Deployed with the Atlas IDE// https://app.atlaszk.com///https://knowyourmeme.com/photos/1096564-wojakpragma 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;