Transaction Hash:
Block:
17677494 at Jul-12-2023 12:30:47 PM +UTC
Transaction Fee:
0.001056130757713042 ETH
$2.94
Gas Used:
46,331 Gas / 22.795336982 Gwei
Emitted Events:
143 |
GGBOND.Approval( owner=[Sender] 0x2877c5f8b0c608b6e64488a7458d81ada2f5ff13, spender=0x77EDAE6A...476e8f83f, value=196018580984593057500605 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2877C5f8...DA2f5FF13 |
0.102232664187189048 Eth
Nonce: 1072
|
0.101176533429476006 Eth
Nonce: 1073
| 0.001056130757713042 | ||
0xDAFEA492...692c98Bc5
Miner
| (Flashbots: Builder) | 0.200075734447335808 Eth | 0.200246505839325535 Eth | 0.000170771391989727 | |
0xF6aF193b...43f74cF4a |
Execution Trace
GGBOND.approve( spender=0x77EDAE6A5f332605720688C7Fda7476476e8f83f, amount=196018580984593057500605 ) => ( True )
approve[ERC20 (ln:193)]
_msgSender[ERC20 (ln:194)]
_approve[ERC20 (ln:195)]
Approval[ERC20 (ln:350)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../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.** By default, the owner account will be the one that deploys the contract. 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;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.*/constructor() {_transferOwnership(_msgSender());}/**