Transaction Hash:
Block:
20037646 at Jun-07-2024 04:45:11 AM +UTC
Transaction Fee:
0.000358091397378074 ETH
$1.35
Gas Used:
46,729 Gas / 7.663151306 Gwei
Emitted Events:
104 |
GravityTokenG.Approval( owner=[Sender] 0xb85b3d61439a3d70d3df7913a3a764f352b32c55, spender=0x7AD2a94B...957a53c19, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x35CAb8e0...b8d4755F5
Miner
| 116.884221111443939326 Eth | 116.884244475943939326 Eth | 0.0000233645 | ||
0x9C7BEBa8...7eF260649 | |||||
0xb85b3D61...352b32C55 |
0.160439840530943096 Eth
Nonce: 126
|
0.160081749133565022 Eth
Nonce: 127
| 0.000358091397378074 |
Execution Trace
GravityTokenG.approve( spender=0x7AD2a94BefF3294a31894cFb5ba4206957a53c19, 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);