Transaction Hash:
Block:
22524870 at May-20-2025 02:57:59 PM +UTC
Transaction Fee:
0.00012528158821695 ETH
$0.32
Gas Used:
46,365 Gas / 2.70207243 Gwei
Emitted Events:
162 |
WOLFToken.Approval( owner=[Sender] 0xfeced0ba92f4214f1191439994381f5d70384c21, spender=0x40aA958d...a374bcD7f, value=20111857490738895340340240 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x33ABE795...590f5FdAE | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.606482923954049862 Eth | 6.606523970555185512 Eth | 0.00004104660113565 | |
0xFeCED0Ba...D70384C21 |
0.008939053282903193 Eth
Nonce: 24
|
0.008813771694686243 Eth
Nonce: 25
| 0.00012528158821695 |
Execution Trace
WOLFToken.approve( spender=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, amount=20111857490738895340340240 ) => ( True )
approve[ERC20 (ln:193)]
_msgSender[ERC20 (ln:194)]
_approve[ERC20 (ln:195)]
Approval[ERC20 (ln:362)]
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());}/**