ETH Price: $2,771.33 (+4.16%)

Transaction Decoder

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 Code
0x2DCDEA0E...87740f3a4
0.007340269615860326 Eth
Nonce: 8
0.00585674869252143 Eth
Nonce: 9
0.001483520923338896
(beaverbuild)
15.652435339888708029 Eth15.652460836528708029 Eth0.00002549664
0xB62E45c3...9F9DFadEf

Execution Trace

WallStreetMemesToken.approve( to=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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
// SPDX-License-Identifier: MIT
pragma 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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX