Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 89 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21476025 | 28 days ago | IN | 0 ETH | 0.00019907 | ||||
Transfer | 21332839 | 48 days ago | IN | 0 ETH | 0.00102301 | ||||
Transfer | 20515586 | 162 days ago | IN | 0 ETH | 0.00014227 | ||||
Transfer | 20333915 | 188 days ago | IN | 0 ETH | 0.00077546 | ||||
Transfer | 19863476 | 253 days ago | IN | 0 ETH | 0.00063031 | ||||
Transfer | 18829352 | 398 days ago | IN | 0 ETH | 0.00387389 | ||||
Transfer | 18828338 | 399 days ago | IN | 0 ETH | 0.00385236 | ||||
Transfer | 17388144 | 600 days ago | IN | 0 ETH | 0.00183574 | ||||
Transfer | 17333256 | 608 days ago | IN | 0 ETH | 0.00287845 | ||||
Transfer | 17331692 | 608 days ago | IN | 0 ETH | 0.00335975 | ||||
Transfer | 17325263 | 609 days ago | IN | 0 ETH | 0.0021708 | ||||
Transfer | 17297428 | 613 days ago | IN | 0 ETH | 0.00220336 | ||||
Transfer | 16884690 | 672 days ago | IN | 0 ETH | 0.00153299 | ||||
Transfer | 16535246 | 721 days ago | IN | 0 ETH | 0.00165371 | ||||
Transfer | 16416580 | 737 days ago | IN | 0 ETH | 0.00100873 | ||||
Transfer | 16200605 | 767 days ago | IN | 0 ETH | 0.00164668 | ||||
Transfer | 16199285 | 767 days ago | IN | 0 ETH | 0.00154221 | ||||
Transfer | 16197782 | 768 days ago | IN | 0 ETH | 0.00130585 | ||||
Transfer | 16177638 | 771 days ago | IN | 0 ETH | 0.00110288 | ||||
Transfer | 16149367 | 774 days ago | IN | 0 ETH | 0.01013978 | ||||
Transfer | 16149363 | 774 days ago | IN | 0 ETH | 0.00667928 | ||||
Transfer | 16149359 | 774 days ago | IN | 0 ETH | 0.01087337 | ||||
Transfer | 15976423 | 799 days ago | IN | 0 ETH | 0.00121052 | ||||
Transfer | 15132089 | 924 days ago | IN | 0 ETH | 0.00078187 | ||||
Transfer | 15016118 | 943 days ago | IN | 0 ETH | 0.00189479 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
13510011 | 1181 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x04c8369c...7a7057244 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
MirrorProxy
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 MirrorProxy * @author MirrorXYZ * The MirrorProxy contract is used to deploy minimal contracts for multiple * economic producers on the Mirror ecosystem (e.g. crowdfunds, editions). The * proxies are used with the proxy-relayer pattern. The proxy delegates calls * to a relayer contract that calls into the storage contract. The proxy uses the * EIP-1967 standard to store the "implementation" logic, which in our case is * the relayer contract. The relayer logic is directly stored into the standard * slot using `sstore` in the constructor, and read using `sload` in the fallback * function. */ contract MirrorProxy { /** * @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 Initializes a proxy by delegating logic to the relayer, * and reverts if the call is not successful. Stores relayer logic. * @param relayer - the relayer holds the logic for all proxies * @param initializationData - initialization call */ constructor(address relayer, bytes memory initializationData) { // Delegatecall into the relayer, supplying initialization calldata. (bool ok, ) = relayer.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, relayer) } } /** * @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) } } } }
{ "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":"relayer","type":"address"},{"internalType":"bytes","name":"initializationData","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]
Deployed Bytecode
0x6080604052604051366000823760008036837f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc545af43d806000843e8180156045578184f35b8184fdfea264697066735822122007dbd558715ae23a206103620ae265d840dc6216091d3210799b3b7f0a24734964736f6c63430008060033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 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.