ETH Price: $3,539.62 (+5.98%)

Transaction Decoder

Block:
21548836 at Jan-04-2025 04:50:11 AM +UTC
Transaction Fee:
0.000234182746092596 ETH $0.83
Gas Used:
46,361 Gas / 5.051287636 Gwei

Emitted Events:

311 VraToken.Approval( owner=[Sender] 0xd4d7a60a8f44b58535fe841ea15c8cb8a89f5c06, spender=0x11111112...73A960582, value=1041236247780684321521664 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
11.383128704292751959 Eth11.383133340392751959 Eth0.0000046361
0xD4D7a60A...8a89f5C06
0.294638571970356439 Eth
Nonce: 98
0.294404389224263843 Eth
Nonce: 99
0.000234182746092596
0xF411903c...a66507255

Execution Trace

VraToken.approve( spender=0x1111111254EEB25477B68fb85Ed929f73A960582, value=1041236247780684321521664 ) => ( 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.6.0 <0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX