Transaction Hash:
Block:
19462795 at Mar-18-2024 04:14:47 PM +UTC
Transaction Fee:
0.001776691130396768 ETH
$6.43
Gas Used:
47,227 Gas / 37.620241184 Gwei
Emitted Events:
614 |
IndexAIToken.Approval( owner=[Sender] 0xa8ab8dc3a156aa7aa0d8e6f4507017488ac50359, spender=0x00000000...43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x873eC47B...0171506F8 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 14.048216522894051172 Eth | 14.048216570121051172 Eth | 0.000000047227 | |
0xa8ab8Dc3...88AC50359 |
1.229811344985595863 Eth
Nonce: 108
|
1.228034653855199095 Eth
Nonce: 109
| 0.001776691130396768 |
Execution Trace
IndexAIToken.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)pragma solidity ^0.8.20;import {Context} from "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** The initial owner is set to the address provided by the deployer. This can* later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;/*** @dev The caller account is not authorized to perform an operation.*/error OwnableUnauthorizedAccount(address account);/*** @dev The owner is not a valid owner account. (eg. `address(0)`)*/error OwnableInvalidOwner(address owner);