Transaction Hash:
Block:
17259575 at May-14-2023 05:28:23 PM +UTC
Transaction Fee:
0.001093646258324108 ETH
$4.07
Gas Used:
24,251 Gas / 45.096955108 Gwei
Emitted Events:
221 |
GGBOND.Approval( owner=[Sender] 0xfa61e585bd292c1e5c2b070b9c311eac1b74d06c, spender=0x00000000...43aC78BA3, value=0 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xA8C62111...c42632f64
Miner
| (Fee Recipient: 0xA8C...f64) | 31.294424947496762179 Eth | 31.294427372596762179 Eth | 0.0000024251 | |
0xF6aF193b...43f74cF4a | |||||
0xFa61e585...c1b74d06C |
0.07788932918015585 Eth
Nonce: 535
|
0.076795682921831742 Eth
Nonce: 536
| 0.001093646258324108 |
Execution Trace
GGBOND.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=0 ) => ( 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());}/**