ETH Price: $2,761.56 (-1.10%)

Transaction Decoder

Block:
22593638 at May-30-2025 06:03:11 AM +UTC
Transaction Fee:
0.000105870948820683 ETH $0.29
Gas Used:
46,661 Gas / 2.268938703 Gwei

Emitted Events:

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

Account State Difference:

  Address   Before After State Difference Code
0x440cEDfC...E29B91ec4
0.000948916594431899 Eth
Nonce: 45
0.000843045645611216 Eth
Nonce: 46
0.000105870948820683
(beaverbuild)
17.465213512347724467 Eth17.465260173347911111 Eth0.000046661000186644
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