ETH Price: $2,936.12 (-1.79%)
Gas: 1.36 Gwei

Transaction Decoder

Block:
22612657 at Jun-01-2025 09:53:59 PM +UTC
Transaction Fee:
0.000062979596755463 ETH $0.18
Gas Used:
46,661 Gas / 1.349726683 Gwei

Emitted Events:

26 VraToken.Approval( owner=[Sender] 0x6939695106f17918254e29960e4920c09ba87624, spender=0x881D4023...dC08D300C, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x69396951...09BA87624
0.001121147587548931 Eth
Nonce: 1034
0.001058167990793468 Eth
Nonce: 1035
0.000062979596755463
(BuilderNet)
57.881025686979494451 Eth57.881049017479494451 Eth0.0000233305
0xF411903c...a66507255

Execution Trace

VraToken.approve( spender=0x881D40237659C251811CEC9c364ef91dC08D300C, value=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.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