Transaction Hash:
Block:
22063648 at Mar-17-2025 02:33:23 AM +UTC
Transaction Fee:
0.000083623271195204 ETH
$0.22
Gas Used:
92,053 Gas / 0.908425268 Gwei
Emitted Events:
103 |
AdminUpgradeabilityProxy.0x26ea3ebbda62eb1baef13e1c237dddd956c87f80b2801f2616d806d52557b121( 0x26ea3ebbda62eb1baef13e1c237dddd956c87f80b2801f2616d806d52557b121, 0x000000000000000000000000000000000000000000000000000000000005e3c3, 0x000000000000000000000000fb469965ec425d5b83da58dd75a3a77ac06eafa1, 0000000000000000000000000000000000000000000000000214e8348c4f0000, 0000000000000000000000000000000000000000000000000000000067d8db73 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 17.582122173768338405 Eth | 17.582168200268338405 Eth | 0.0000460265 | |
0xcDA72070...3623d0B6f | (Foundation: Market) | 33.617111 Eth | 33.767111 Eth | 0.15 | |
0xFb469965...AC06eafa1 |
0.181065577021494955 Eth
Nonce: 1627
|
0.030981953750299751 Eth
Nonce: 1628
| 0.150083623271195204 |
Execution Trace
ETH 0.15
AdminUpgradeabilityProxy.b6aff8c1( )
- ETH 0.15
NFTMarket.placeBidV2( auctionId=385987, amount=150000000000000000, referrer=0x0000000000000000000000000000000000000000 )
File 1 of 2: AdminUpgradeabilityProxy
File 2 of 2: NFTMarket
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity ^0.6.0;import './UpgradeabilityProxy.sol';/*** @title AdminUpgradeabilityProxy* @dev This contract combines an upgradeability proxy with an authorization* mechanism for administrative tasks.* All external functions in this contract must be guarded by the* `ifAdmin` modifier. See ethereum/solidity#3864 for a Solidity* feature proposal that would enable this to be done automatically.*/contract AdminUpgradeabilityProxy is UpgradeabilityProxy {/*** Contract constructor.* @param _logic address of the initial implementation.* @param _admin Address of the proxy administrator.
File 2 of 2: NFTMarket
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)pragma solidity ^0.8.2;import "../../utils/AddressUpgradeable.sol";/*** @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.** The initialization functions use a version number. Once a version number is used, it is consumed and cannot be* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in* case an upgrade adds a module that needs to be initialized.** For example:*