ETH Price: $2,785.53 (+3.56%)

Transaction Decoder

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 Code
0x2877C5f8...DA2f5FF13
0.102232664187189048 Eth
Nonce: 1072
0.101176533429476006 Eth
Nonce: 1073
0.001056130757713042
(Flashbots: Builder)
0.200075734447335808 Eth0.200246505839325535 Eth0.000170771391989727
0xF6aF193b...43f74cF4a

Execution Trace

GGBOND.approve( spender=0x77EDAE6A5f332605720688C7Fda7476476e8f83f, amount=196018580984593057500605 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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());
}
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX