Transaction Hash:
Block:
22067728 at Mar-17-2025 04:13:47 PM +UTC
Transaction Fee:
0.00003375299394944 ETH
$0.09
Gas Used:
24,320 Gas / 1.387869817 Gwei
Emitted Events:
236 |
Mask.Approval( owner=[Sender] 0xd585ec94f56e4aa8deafa03ee4346b03492434f3, spender=0x40aA958d...a374bcD7f, value=0 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2B8AAC16...71cB44709 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 18.261440344319475606 Eth | 18.261453107138707606 Eth | 0.000012762819232 | |
0xd585EC94...3492434f3 |
0.001253438954861572 Eth
Nonce: 12
|
0.001219685960912132 Eth
Nonce: 13
| 0.00003375299394944 |
Execution Trace
Mask.approve( spender=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, amount=0 ) => ( 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;