Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.383128704292751959 Eth | 11.383133340392751959 Eth | 0.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 )
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;}}/**