Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x69396951...09BA87624 |
0.001121147587548931 Eth
Nonce: 1034
|
0.001058167990793468 Eth
Nonce: 1035
| 0.000062979596755463 | ||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 57.881025686979494451 Eth | 57.881049017479494451 Eth | 0.0000233305 | |
0xF411903c...a66507255 |
Execution Trace
VraToken.approve( spender=0x881D40237659C251811CEC9c364ef91dC08D300C, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[ERC777 (ln:1026)]
_msgSender[ERC777 (ln:1027)]
_approve[ERC777 (ln:1028)]
Approval[ERC777 (ln:1189)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma 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/2691return msg.data;}}/**