Transaction Hash:
Block:
17850937 at Aug-05-2023 07:44:23 PM +UTC
Transaction Fee:
0.001392954599194552 ETH
$3.54
Gas Used:
81,814 Gas / 17.025870868 Gwei
Emitted Events:
12 |
FundropPass.MinterReferred( referrer=0x8f153Cf8...A3A73B1B6 )
|
13 |
FundropPass.Transfer( from=0x00000000...000000000, to=[Sender] 0x768311718ec07b939a9af9db2d389ac551202267, tokenId=288736 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x00000000...895470803 | |||||
0x3b64216A...75Ab7ED67
Miner
| (Boba Builder) | 0.195689149781967003 Eth | 0.195693985116342331 Eth | 0.000004835334375328 | |
0x76831171...551202267 |
0.002810259672310807 Eth
Nonce: 1
|
0.001417305073116255 Eth
Nonce: 2
| 0.001392954599194552 |
Execution Trace
FundropPass.mint( referrer=0x8f153Cf86EfdC5fdDE2E8675CD9833cA3A73B1B6, signature=0x62DC9DB3A7ADF13B331C2D3D49E822CBDD42E20B888D9B864A6E548AFEC4E8C753F86438416142DAC2B647BBF6C70014989EE22D3D658468F130506B1082F9E41B )

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