Transaction Hash:
Block:
17299627 at May-20-2023 09:03:59 AM +UTC
Transaction Fee:
0.002432504317950498 ETH
$6.23
Gas Used:
80,526 Gas / 30.207688423 Gwei
Emitted Events:
254 |
FundropPass.Transfer( from=0x00000000...000000000, to=[Sender] 0x21920a30fbaa425b37ff6e4241219b5110c65ba0, tokenId=196694 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x00000000...895470803 | |||||
0x1f9090aa...8e676c326
Miner
| 4.262647498047686768 Eth | 4.262655550647686768 Eth | 0.0000080526 | ||
0x21920A30...110C65bA0 |
0.018195996415615663 Eth
Nonce: 4
|
0.015763492097665165 Eth
Nonce: 5
| 0.002432504317950498 |
Execution Trace
FundropPass.mint( referrer=0x0000000000000000000000000000000000000000, signature=0x79987B6B582061680647B3359FCF37889FCA326C6EE9A75EB968B4F1C5BFBCDB4BC06B42C0717E40949B1806060E2996976960410DA17D02D5E838CD0B7D2CE51C )

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