Transaction Hash:
Block:
20331901 at Jul-18-2024 07:25:23 AM +UTC
Transaction Fee:
0.000573556565835898 ETH
$1.81
Gas Used:
53,849 Gas / 10.651201802 Gwei
Emitted Events:
483 |
GravityTokenG.Transfer( from=[Sender] 0x7034a2de52feddf2db4ef7b7abec7fef574a122e, to=0x30013bA9F8F362CAae765de3bcC94e525719CC7c, value=10000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x7034a2de...f574a122e |
1.171677088222326273 Eth
Nonce: 1775
|
1.171103531656490375 Eth
Nonce: 1776
| 0.000573556565835898 | ||
0x9C7BEBa8...7eF260649 | |||||
0xdf99A083...17Dc6A555
Miner
| (Flashbots: Builder 2) | 9.571862291076261437 Eth | 9.571929356722749454 Eth | 0.000067065646488017 |
Execution Trace
GravityTokenG.transfer( to=0x30013bA9F8F362CAae765de3bcC94e525719CC7c, 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);