ETH Price: $2,505.06 (-0.60%)

Transaction Decoder

Block:
19573886 at Apr-03-2024 07:53:23 AM +UTC
Transaction Fee:
0.00107454788793766 ETH $2.69
Gas Used:
46,964 Gas / 22.880246315 Gwei

Emitted Events:

349 SHFL.Approval( owner=[Sender] 0xef205e1a13587ad52759cf675b8142120caffc4a, spender=0x11111112...73A960582, value=3700000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
3.037450978944431484 Eth3.037453327144431484 Eth0.0000023482
0x88815627...170D88888
0xEF205E1a...20cAFfC4a
0.027349464081470808 Eth
Nonce: 189
0.026274916193533148 Eth
Nonce: 190
0.00107454788793766

Execution Trace

SHFL.approve( spender=0x1111111254EEB25477B68fb85Ed929f73A960582, value=3700000000000000000000 ) => ( 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
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX