Transaction Hash:
Block:
17349899 at May-27-2023 10:49:11 AM +UTC
Transaction Fee:
0.001912768590138082 ETH
$8.86
Gas Used:
81,826 Gas / 23.376049057 Gwei
Emitted Events:
298 |
FundropPass.MinterReferred( referrer=0xd1aA7B6C...24F2fE689 )
|
299 |
FundropPass.Transfer( from=0x00000000...000000000, to=[Sender] 0xbacf50b1d4b1709d13532fe59d3c368b51c89611, tokenId=204665 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x00000000...895470803 | |||||
0x6d2e03b7...Ab0002766
Miner
| (Fee Recipient: 0x6d2...766) | 228.432393753675985008 Eth | 228.432401936275985008 Eth | 0.0000081826 | |
0xBaCf50B1...b51c89611 |
0.012802609883467545 Eth
Nonce: 6
|
0.010889841293329463 Eth
Nonce: 7
| 0.001912768590138082 |
Execution Trace
FundropPass.mint( referrer=0xd1aA7B6Ca4B057A82FCb2658f3cDA7824F2fE689, signature=0xC131E2F1F79E7DD4ED94E2F875EDEAAE4A4C28425D6E3C5A792D06CC903263331AD6025568F719E8FEB771575F3A031033B55943D752DC543EBEC38140C8493A1C )

-
Null: 0x000...001.5e8a2952( )
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());}/**