ETH Price: $2,783.67 (+9.44%)

Transaction Decoder

Block:
17843886 at Aug-04-2023 08:05:47 PM +UTC
Transaction Fee:
0.000796905494052432 ETH $2.22
Gas Used:
26,909 Gas / 29.614831248 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0.408545901978765087 Eth0.408613174478765087 Eth0.0000672725
0x6E17279C...db7F7477e
0.003387450662694644 Eth
Nonce: 3
0.002590545168642212 Eth
Nonce: 4
0.000796905494052432

Execution Trace

Token.approve( spender=0xBBbD1BbB4f9b936C3604906D7592A644071dE884, amount=0 ) => ( 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.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX