Transaction Hash:
Block:
17889853 at Aug-11-2023 06:27:47 AM +UTC
Transaction Fee:
0.001150704547679138 ETH
$3.39
Gas Used:
81,826 Gas / 14.062822913 Gwei
Emitted Events:
213 |
FundropPass.MinterReferred( referrer=0xB20dC7d4...A77428A5E )
|
214 |
FundropPass.Transfer( from=0x00000000...000000000, to=[Sender] 0xe2d0a837d1135a874b7aca0f87ac804bcc8759b4, tokenId=325186 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x00000000...895470803 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 5.636202501092741081 Eth | 5.636210683692741081 Eth | 0.0000081826 | |
0xe2d0A837...bCC8759B4 |
0.0138524 Eth
Nonce: 0
|
0.012701695452320862 Eth
Nonce: 1
| 0.001150704547679138 |
Execution Trace
FundropPass.mint( referrer=0xB20dC7d47887FC471aD4FcedCaDC5a4A77428A5E, signature=0x2D8C7C26A47CD47A7D6B4B5806ABFBEDB95FBA58980C049D1E3858696AE90875246FA76070A5A8DFAE996309F4894F8431759B742FA5F506D31C284933FE7E9D1C )

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