Transaction Hash:
Block:
17764055 at Jul-24-2023 04:08:23 PM +UTC
Transaction Fee:
0.006433730624933625 ETH
$17.26
Gas Used:
112,125 Gas / 57.379983277 Gwei
Emitted Events:
298 |
ERC721DropProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000000000000000000000000000000000000000000000, 0x00000000000000000000000058b43515c356270fbb80c7d7f446c1a03a4e9dd9, 0x0000000000000000000000000000000000000000000000000000000000000010 )
|
299 |
GnosisSafeProxy.0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d( 0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d, 0x0000000000000000000000006e60bcdf52078a250932cf9fec174c5f67348845, 0000000000000000000000000000000000000000000000000002c2ad68fd9000 )
|
300 |
ERC721DropProxy.0x6f8da53cfedb8cc4f7935c3629624e50b63053c93bb2cad246aa4d3a2ba7d4ce( 0x6f8da53cfedb8cc4f7935c3629624e50b63053c93bb2cad246aa4d3a2ba7d4ce, 0000000000000000000000000000000000000000000000000002c2ad68fd9000, 000000000000000000000000d1d1d4e36117ab794ec5d4c78cbd3a8904e691d0, 0000000000000000000000000000000000000000000000000000000000000001 )
|
301 |
ERC721DropProxy.0x4e26b0356a15833a75d497ecc40ebbb716b99466ed0dba9454f1fff451e25a90( 0x4e26b0356a15833a75d497ecc40ebbb716b99466ed0dba9454f1fff451e25a90, 0x00000000000000000000000058b43515c356270fbb80c7d7f446c1a03a4e9dd9, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000, 000000000000000000000000000000000000000000000000000000000000000f )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x58b43515...03A4E9DD9 |
0.211849110461589601 Eth
Nonce: 149
|
0.204638379836655976 Eth
Nonce: 150
| 0.007210730624933625 | ||
0x6e60bCdF...F67348845 | |||||
0xd1d1D4e3...904E691D0 | 302.239346329527381486 Eth | 302.240123329527381486 Eth | 0.000777 | ||
0xeD33259a...a9B5685Bf
Miner
| (Fee Recipient: 0xeD3...5Bf) | 1,230.080312260314095762 Eth | 1,230.080323472814095762 Eth | 0.0000112125 |
Execution Trace
ETH 0.000777
ERC721DropProxy.efef39a1( )

ETH 0.000777
ERC721Drop.purchase( quantity=1 ) => ( 15 )
ETH 0.000777
GnosisSafeProxy.CALL( )
- ETH 0.000777
GnosisSafe.DELEGATECALL( )
- ETH 0.000777
purchase[ERC721Drop (ln:394)]
_handlePurchase[ERC721Drop (ln:402)]
Purchase_WrongPrice[ERC721Drop (ln:421)]
_numberMinted[ERC721Drop (ln:427)]
_msgSender[ERC721Drop (ln:427)]
_msgSender[ERC721Drop (ln:429)]
Purchase_TooManyForAddress[ERC721Drop (ln:432)]
_mintNFTs[ERC721Drop (ln:434)]
_msgSender[ERC721Drop (ln:434)]
_lastMintedTokenId[ERC721Drop (ln:435)]
_payoutZoraFee[ERC721Drop (ln:436)]
zoraFeeForAmount[ERC721Drop (ln:1166)]
call[ERC721Drop (ln:1167)]
MintFeePayout[ERC721Drop (ln:1170)]
Sale[ERC721Drop (ln:437)]
_msgSender[ERC721Drop (ln:438)]
MintComment[ERC721Drop (ln:444)]
_msgSender[ERC721Drop (ln:445)]
File 1 of 4: ERC721DropProxy
File 2 of 4: GnosisSafeProxy
File 3 of 4: ERC721Drop
File 4 of 4: GnosisSafe
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity ^0.8.10;import {ERC1967Proxy} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";/// @dev Zora NFT Creator Proxy Access Contractcontract ERC721DropProxy is ERC1967Proxy {constructor(address _logic, bytes memory _data)payableERC1967Proxy(_logic, _data){}}// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (proxy/ERC1967/ERC1967Proxy.sol)pragma solidity ^0.8.0;import "../Proxy.sol";import "./ERC1967Upgrade.sol";/*** @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
File 2 of 4: GnosisSafeProxy
12345678910111213141516// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain/// @author Richard Meissner - <richard@gnosis.io>interface IProxy {function masterCopy() external view returns (address);}/// @title GnosisSafeProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract./// @author Stefan George - <stefan@gnosis.io>/// @author Richard Meissner - <richard@gnosis.io>contract GnosisSafeProxy {// singleton always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.// To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`address internal singleton;
File 3 of 4: ERC721Drop
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity ^0.8.10;/**________ _____ ____ ______ ____/\\_____ \\ /\\ __`\\/\\ _`\\ /\\ _ \\ /\\ _`\\\\/____//'/'\\ \\ \\/\\ \\ \\ \\L\\ \\ \\ \\L\\ \\ \\ \\ \\/\\ \\ _ __ ___ _____ ____//'/' \\ \\ \\ \\ \\ \\ , /\\ \\ __ \\ \\ \\ \\ \\ \\/\\`'__\\/ __`\\/\\ '__`\\ /',__\\//'/'___ \\ \\ \\_\\ \\ \\ \\\\ \\\\ \\ \\/\\ \\ \\ \\ \\_\\ \\ \\ \\//\\ \\L\\ \\ \\ \\L\\ \\/\\__, `\\/\\_______\\\\ \\_____\\ \\_\\ \\_\\ \\_\\ \\_\\ \\ \\____/\\ \\_\\\\ \\____/\\ \\ ,__/\\/\\____/\\/_______/ \\/_____/\\/_/\\/ /\\/_/\\/_/ \\/___/ \\/_/ \\/___/ \\ \\ \\/ \\/___/\\ \\_\\\\/_/*/import {ERC721AUpgradeable} from "erc721a-upgradeable/ERC721AUpgradeable.sol";import {IERC721Upgradeable} from "@openzeppelin/contracts-upgradeable/interfaces/IERC721Upgradeable.sol";import {IERC721AUpgradeable} from "erc721a-upgradeable/IERC721AUpgradeable.sol";
File 4 of 4: GnosisSafe
12345678910111213141516// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "./base/ModuleManager.sol";import "./base/OwnerManager.sol";import "./base/FallbackManager.sol";import "./base/GuardManager.sol";import "./common/EtherPaymentFallback.sol";import "./common/Singleton.sol";import "./common/SignatureDecoder.sol";import "./common/SecuredTokenTransfer.sol";import "./common/StorageAccessible.sol";import "./interfaces/ISignatureValidator.sol";import "./external/GnosisSafeMath.sol";/// @title Gnosis Safe - A multisignature wallet with support for confirmations using signed messages based on ERC191./// @author Stefan George - <stefan@gnosis.io>/// @author Richard Meissner - <richard@gnosis.io>