Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 88 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Bid | 13468645 | 1215 days ago | IN | 30 ETH | 0.00311861 | ||||
Bid | 13468623 | 1215 days ago | IN | 30 ETH | 0.00376662 | ||||
Pause | 13468621 | 1215 days ago | IN | 0 ETH | 0.01288743 | ||||
Withdraw | 13468620 | 1215 days ago | IN | 0 ETH | 0.00929349 | ||||
Bid | 13468618 | 1215 days ago | IN | 30 ETH | 0.00411012 | ||||
Bid | 13468616 | 1215 days ago | IN | 30 ETH | 0.00438852 | ||||
Withdraw | 13468615 | 1215 days ago | IN | 0 ETH | 0.01028209 | ||||
Bid | 13468615 | 1215 days ago | IN | 30 ETH | 0.00449033 | ||||
Bid | 13468610 | 1215 days ago | IN | 30 ETH | 0.00450391 | ||||
Bid | 13468610 | 1215 days ago | IN | 30 ETH | 0.0045102 | ||||
Bid | 13468610 | 1215 days ago | IN | 30 ETH | 0.0045102 | ||||
Bid | 13468610 | 1215 days ago | IN | 30 ETH | 0.00931068 | ||||
Bid | 13468608 | 1215 days ago | IN | 30 ETH | 0.00430174 | ||||
Bid | 13468608 | 1215 days ago | IN | 30 ETH | 0.00430803 | ||||
Bid | 13468608 | 1215 days ago | IN | 30 ETH | 0.00633583 | ||||
Bid | 13468608 | 1215 days ago | IN | 30 ETH | 0.00843283 | ||||
Bid | 13468608 | 1215 days ago | IN | 30 ETH | 0.01052983 | ||||
Bid | 13468608 | 1215 days ago | IN | 30 ETH | 0.04659534 | ||||
Bid | 13468608 | 1215 days ago | IN | 30 ETH | 0.07452738 | ||||
Bid | 13468607 | 1215 days ago | IN | 30 ETH | 0.0038313 | ||||
Bid | 13468607 | 1215 days ago | IN | 35 ETH | 0.0038313 | ||||
Bid | 13468607 | 1215 days ago | IN | 30 ETH | 0.0038313 | ||||
Bid | 13468607 | 1215 days ago | IN | 35 ETH | 0.00383759 | ||||
Bid | 13468607 | 1215 days ago | IN | 30 ETH | 0.00796239 | ||||
Bid | 13468607 | 1215 days ago | IN | 35 ETH | 0.4194 |
Latest 15 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
13468615 | 1215 days ago | 497.25 ETH | ||||
13468615 | 1215 days ago | 12.75 ETH | ||||
13468606 | 1215 days ago | 5 ETH | ||||
13468605 | 1215 days ago | 5 ETH | ||||
13468605 | 1215 days ago | 5 ETH | ||||
13468603 | 1215 days ago | 5 ETH | ||||
13468602 | 1215 days ago | 989.625 ETH | ||||
13468602 | 1215 days ago | 25.375 ETH | ||||
13468580 | 1215 days ago | 39 ETH | ||||
13468580 | 1215 days ago | 1 ETH | ||||
13468515 | 1215 days ago | 68.25 ETH | ||||
13468515 | 1215 days ago | 1.75 ETH | ||||
13468506 | 1215 days ago | 156 ETH | ||||
13468506 | 1215 days ago | 4 ETH | ||||
13464754 | 1215 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xD8a46AfA...cdD42837c The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
MirrorDutchAuctionProxy
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
Yes with 2000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.8.6; /** * @title MirrorDutchAuctionProxy * @author MirrorXYZ */ contract MirrorDutchAuctionProxy { /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @notice Stores implementation logic. * @param implementation - the implementation holds the logic for all proxies * @param initializationData - initialization call */ constructor(address implementation, bytes memory initializationData) { // Delegatecall into the relayer, supplying initialization calldata. (bool ok, ) = implementation.delegatecall(initializationData); // Revert and include revert data if delegatecall to implementation reverts. if (!ok) { assembly { returndatacopy(0, 0, returndatasize()) revert(0, returndatasize()) } } assembly { sstore(_IMPLEMENTATION_SLOT, implementation) } } /** * @notice When any function is called on this contract, we delegate to * the logic contract stored in the implementation storage slot. */ fallback() external payable { assembly { let ptr := mload(0x40) calldatacopy(ptr, 0, calldatasize()) let result := delegatecall( gas(), sload(_IMPLEMENTATION_SLOT), ptr, calldatasize(), 0, 0 ) let size := returndatasize() returndatacopy(ptr, 0, size) switch result case 0 { revert(ptr, size) } default { return(ptr, size) } } } receive() external payable {} }
{ "optimizer": { "enabled": true, "runs": 2000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"implementation","type":"address"},{"internalType":"bytes","name":"initializationData","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]
Deployed Bytecode
0x608060405236600a57005b604051366000823760008036837f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc545af43d806000843e818015604b578184f35b8184fdfea2646970667358221220fdfce259ac528d71e33de4e65d4d3c6c002f84249a6e86fd12035fbc70ef6c8364736f6c63430008060033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.