ETH Price: $3,778.87 (-1.80%)

Transaction Decoder

Block:
20854551 at Sep-29-2024 06:37:47 AM +UTC
Transaction Fee:
0.00033449290117716 ETH $1.26
Gas Used:
46,365 Gas / 7.214340584 Gwei

Emitted Events:

256 Redis.Approval( owner=[Sender] 0x5d2fcf5de2f9e78849b803045bbaf4c7482fe1ec, spender=0x40aA958d...a374bcD7f, value=771214831802299914341843720999 )

Account State Difference:

  Address   Before After State Difference Code
0x5d2fcf5d...7482fE1eC
0.020903900938811935 Eth
Nonce: 166
0.020569408037634775 Eth
Nonce: 167
0.00033449290117716
(beaverbuild)
11.719244611903216873 Eth11.719307575573216873 Eth0.00006296367
0xbBC9926a...7aA4277dA

Execution Trace

Redis.approve( spender=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, amount=771214831802299914341843720999 ) => ( 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.16;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(
address recipient,
uint256 amount
) external returns (bool);
function allowance(
address owner,
address spender
) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX