More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 33 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Propose New Term... | 20872067 | 2 days ago | IN | 0 ETH | 0.00390563 | ||||
Propose New Term... | 20865282 | 3 days ago | IN | 0 ETH | 0.00213454 | ||||
Propose New Term... | 20842412 | 6 days ago | IN | 0 ETH | 0.0024942 | ||||
Propose New Term... | 20836460 | 7 days ago | IN | 0 ETH | 0.00346182 | ||||
Propose New Term... | 20828685 | 8 days ago | IN | 0 ETH | 0.00637936 | ||||
Propose New Term... | 20827764 | 8 days ago | IN | 0 ETH | 0.00769586 | ||||
Propose New Term... | 20826544 | 8 days ago | IN | 0 ETH | 0.00292556 | ||||
Propose New Term... | 20822174 | 9 days ago | IN | 0 ETH | 0.00626188 | ||||
Propose New Term... | 20792853 | 13 days ago | IN | 0 ETH | 0.00294983 | ||||
Propose New Term... | 20765724 | 16 days ago | IN | 0 ETH | 0.00061752 | ||||
Propose New Term... | 20764030 | 17 days ago | IN | 0 ETH | 0.00129079 | ||||
Fund | 20741997 | 20 days ago | IN | 0 ETH | 0.00059101 | ||||
Fund | 20720158 | 23 days ago | IN | 0 ETH | 0.001882 | ||||
Propose New Term... | 20720024 | 23 days ago | IN | 0 ETH | 0.00108141 | ||||
Propose New Term... | 20693268 | 27 days ago | IN | 0 ETH | 0.0012831 | ||||
Fund | 20685940 | 28 days ago | IN | 0 ETH | 0.00127921 | ||||
Fund | 20620695 | 37 days ago | IN | 0 ETH | 0.00103711 | ||||
Fund | 20592295 | 41 days ago | IN | 0 ETH | 0.00088114 | ||||
Fund | 20584926 | 42 days ago | IN | 0 ETH | 0.00087225 | ||||
Fund | 20529395 | 49 days ago | IN | 0 ETH | 0.00088435 | ||||
Fund | 20529094 | 49 days ago | IN | 0 ETH | 0.00144354 | ||||
Fund | 20472674 | 57 days ago | IN | 0 ETH | 0.00047934 | ||||
Fund | 20465227 | 58 days ago | IN | 0 ETH | 0.00087311 | ||||
Fund | 20442649 | 62 days ago | IN | 0 ETH | 0.00119561 | ||||
Fund | 20391564 | 69 days ago | IN | 0 ETH | 0.00144842 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
19920366 | 135 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xfAB269CB...742F5eeCC The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Proxy
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-06 */ // SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.7; /// @title An beacon that provides a default implementation for proxies, must implement IDefaultImplementationBeacon. interface IDefaultImplementationBeacon { /// @dev The address of an implementation for proxies. function defaultImplementation() external view returns (address defaultImplementation_); } abstract contract SlotManipulatable { function _getReferenceTypeSlot(bytes32 slot_, bytes32 key_) internal pure returns (bytes32 value_) { return keccak256(abi.encodePacked(key_, slot_)); } function _getSlotValue(bytes32 slot_) internal view returns (bytes32 value_) { assembly { value_ := sload(slot_) } } function _setSlotValue(bytes32 slot_, bytes32 value_) internal { assembly { sstore(slot_, value_) } } } /// @title A completely transparent, and thus interface-less, proxy contract. contract Proxy is SlotManipulatable { /// @dev Storage slot with the address of the current factory. `keccak256('eip1967.proxy.factory') - 1`. bytes32 private constant FACTORY_SLOT = bytes32(0x7a45a402e4cb6e08ebc196f20f66d5d30e67285a2a8aa80503fa409e727a4af1); /// @dev Storage slot with the address of the current factory. `keccak256('eip1967.proxy.implementation') - 1`. bytes32 private constant IMPLEMENTATION_SLOT = bytes32(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc); /** * @dev The constructor requires at least one of `factory_` or `implementation_`. * If an implementation is not provided, the factory is treated as an IDefaultImplementationBeacon * to fetch the default implementation. * @param factory_ The address of a proxy factory, if any. * @param implementation_ The address of the implementation contract being proxied, if any. */ constructor(address factory_, address implementation_) { _setSlotValue(FACTORY_SLOT, bytes32(uint256(uint160(factory_)))); // If the implementation is empty, fetch it from the factory, which can act as a beacon. address implementation = implementation_ == address(0) ? IDefaultImplementationBeacon(factory_).defaultImplementation() : implementation_; require(implementation != address(0)); _setSlotValue(IMPLEMENTATION_SLOT, bytes32(uint256(uint160(implementation)))); } fallback() payable external virtual { bytes32 implementation = _getSlotValue(IMPLEMENTATION_SLOT); require(address(uint160(uint256(implementation))).code.length != uint256(0)); assembly { calldatacopy(0, 0, calldatasize()) let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) returndatacopy(0, 0, returndatasize()) switch result case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"factory_","type":"address"},{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]
Deployed Bytecode
0x60806040526000602d7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b90506001600160a01b0381163b604257600080fd5b3660008037600080366000845af43d6000803e8080156060573d6000f35b3d6000fdfea264697066735822122065b133a3f7fa45a139e1ab4bd420b9636a4de4c45142d268b2723a5727f443e564736f6c63430008070033
Deployed Bytecode Sourcemap
997:2157:0:-:0;;;2574:22;2599:34;1448:66;734:12;;612:152;2599:34;2574:59;-1:-1:-1;;;;;;2654:53:0;;;2646:76;;;;;;2778:14;2775:1;2772;2759:34;2881:1;2878;2862:14;2859:1;2843:14;2836:5;2823:60;2920:16;2917:1;2914;2899:38;2960:6;2980:68;;;;3099:16;3096:1;3089:27;2980:68;3016:16;3013:1;3006:27
Swarm Source
ipfs://65b133a3f7fa45a139e1ab4bd420b9636a4de4c45142d268b2723a5727f443e5
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 27 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.