Transaction Hash:
Block:
20188610 at Jun-28-2024 07:11:59 AM +UTC
Transaction Fee:
0.000160189938046397 ETH
$0.57
Gas Used:
46,417 Gas / 3.451104941 Gwei
Emitted Events:
343 |
GravityTokenG.Approval( owner=[Sender] 0x7055cc829f44c1f9bf1494338c6fc9e7a151a2ee, spender=0x7AD2a94B...957a53c19, value=10000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x7055cC82...7a151A2Ee |
0.022731849446117536 Eth
Nonce: 14
|
0.022571659508071139 Eth
Nonce: 15
| 0.000160189938046397 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 19.522088778007972216 Eth | 19.52210870793656822 Eth | 0.000019929928596004 | |
0x9C7BEBa8...7eF260649 |
Execution Trace
GravityTokenG.approve( spender=0x7AD2a94BefF3294a31894cFb5ba4206957a53c19, value=10000000000000000000 ) => ( 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);