Transaction Hash:
Block:
18431896 at Oct-26-2023 04:05:11 AM +UTC
Transaction Fee:
0.001483520923338896 ETH
$4.11
Gas Used:
47,216 Gas / 31.419877231 Gwei
Emitted Events:
137 |
WallStreetMemesToken.Approval( owner=[Sender] 0x2dcdea0effc0daaf546016a53cd23f787740f3a4, spender=0x40aA958d...a374bcD7f, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2DCDEA0E...87740f3a4 |
0.007340269615860326 Eth
Nonce: 8
|
0.00585674869252143 Eth
Nonce: 9
| 0.001483520923338896 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 15.652435339888708029 Eth | 15.652460836528708029 Eth | 0.00002549664 | |
0xB62E45c3...9F9DFadEf |
Execution Trace
WallStreetMemesToken.approve( to=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[WallStreetMemesToken (ln:279)]
_approve[WallStreetMemesToken (ln:283)]
Approval[WallStreetMemesToken (ln:414)]
_msgSender[WallStreetMemesToken (ln:283)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.9;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Emitted when `value` tokens are moved from one account (`from`) to* another (`to`).** Note that `value` may be zero.*/event Transfer(address indexed from, address indexed to, uint256 value);/*** @dev Emitted when the allowance of a `spender` for an `owner` is set by* a call to {approve}. `value` is the new allowance.*/event Approval(address indexed owner,address indexed spender,uint256 value);/*** @dev Returns the amount of tokens in existence.*/function totalSupply() external view returns (uint256);