Transaction Hash:
Block:
16756202 at Mar-04-2023 04:16:11 PM +UTC
Transaction Fee:
0.003226124509101285 ETH
$5.86
Gas Used:
110,595 Gas / 29.170618103 Gwei
Emitted Events:
170 |
ERC721DropProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000000000000000000000000000000000000000000000, 0x000000000000000000000000758a5cc98358b8f29a37583a770767bccd927756, 0x000000000000000000000000000000000000000000000000000000000006a4e3 )
|
171 |
GnosisSafeProxy.0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d( 0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d, 0x000000000000000000000000d4307e0acd12cf46fd6cf93bc264f5d5d1598792, 0000000000000000000000000000000000000000000000000002c2ad68fd9000 )
|
172 |
ERC721DropProxy.0x6f8da53cfedb8cc4f7935c3629624e50b63053c93bb2cad246aa4d3a2ba7d4ce( 0x6f8da53cfedb8cc4f7935c3629624e50b63053c93bb2cad246aa4d3a2ba7d4ce, 0000000000000000000000000000000000000000000000000002c2ad68fd9000, 000000000000000000000000d1d1d4e36117ab794ec5d4c78cbd3a8904e691d0, 0000000000000000000000000000000000000000000000000000000000000001 )
|
173 |
ERC721DropProxy.0x4e26b0356a15833a75d497ecc40ebbb716b99466ed0dba9454f1fff451e25a90( 0x4e26b0356a15833a75d497ecc40ebbb716b99466ed0dba9454f1fff451e25a90, 0x000000000000000000000000758a5cc98358b8f29a37583a770767bccd927756, 0x0000000000000000000000000000000000000000000000000000000000000001, 0x0000000000000000000000000000000000000000000000000000000000000000, 000000000000000000000000000000000000000000000000000000000006a4e2 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x758A5cc9...cCD927756 |
0.090316501420590381 Eth
Nonce: 110
|
0.086313376911489096 Eth
Nonce: 111
| 0.004003124509101285 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 124.977000657427961012 Eth | 124.977055954927961012 Eth | 0.0000552975 | |
0xd1d1D4e3...904E691D0 | 684.631276366268470654 Eth | 684.632053366268470654 Eth | 0.000777 | ||
0xD4307E0a...5D1598792 |
Execution Trace
ETH 0.000777
ERC721DropProxy.efef39a1( )

ETH 0.000777
ERC721Drop.purchase( quantity=1 ) => ( 435426 )
ETH 0.000777
GnosisSafeProxy.CALL( )
- ETH 0.000777
GnosisSafe.DELEGATECALL( )
- ETH 0.000777
purchase[ERC721Drop (ln:2654)]
Purchase_WrongPrice[ERC721Drop (ln:2664)]
_numberMinted[ERC721Drop (ln:2670)]
_msgSender[ERC721Drop (ln:2670)]
_msgSender[ERC721Drop (ln:2672)]
Purchase_TooManyForAddress[ERC721Drop (ln:2675)]
_mintNFTs[ERC721Drop (ln:2677)]
_msgSender[ERC721Drop (ln:2677)]
_lastMintedTokenId[ERC721Drop (ln:2678)]
_payoutZoraFee[ERC721Drop (ln:2679)]
zoraFeeForAmount[ERC721Drop (ln:3360)]
call[ERC721Drop (ln:3361)]
MintFeePayout[ERC721Drop (ln:3364)]
Sale[ERC721Drop (ln:2680)]
_msgSender[ERC721Drop (ln:2681)]
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;// OpenZeppelin Contracts v4.4.1 (proxy/ERC1967/ERC1967Proxy.sol)// OpenZeppelin Contracts (last updated v4.5.0) (proxy/Proxy.sol)/*** @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM* instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to* be specified by overriding the virtual {_implementation} function.** Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a* different contract through the {_delegate} function.** The success and return data of the delegated call will be returned back to the caller of the proxy.
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: MIT// Creator: Chiru Labspragma solidity ^0.8.4;import "./IERC721AUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol";import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";/*** @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including* the Metadata extension. Built to optimize for lower gas during batch mints.** Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).*
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>