Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x440cEDfC...E29B91ec4 |
0.000948916594431899 Eth
Nonce: 45
|
0.000843045645611216 Eth
Nonce: 46
| 0.000105870948820683 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 17.465213512347724467 Eth | 17.465260173347911111 Eth | 0.000046661000186644 | |
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;}}/**