Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 42 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Accept New Terms | 22068198 | 7 days ago | IN | 0 ETH | 0.00029821 | ||||
Make Payment | 22068014 | 7 days ago | IN | 0 ETH | 0.00020168 | ||||
Accept New Terms | 21846456 | 38 days ago | IN | 0 ETH | 0.00095518 | ||||
Make Payment | 21624043 | 69 days ago | IN | 0 ETH | 0.00432818 | ||||
Make Payment | 21273135 | 118 days ago | IN | 0 ETH | 0.00402737 | ||||
Make Payment | 20994493 | 157 days ago | IN | 0 ETH | 0.00538713 | ||||
Accept New Terms | 20363748 | 245 days ago | IN | 0 ETH | 0.00178187 | ||||
Accept New Terms | 20312088 | 252 days ago | IN | 0 ETH | 0.00207765 | ||||
Accept New Terms | 20262219 | 259 days ago | IN | 0 ETH | 0.00210531 | ||||
Accept New Terms | 20161479 | 273 days ago | IN | 0 ETH | 0.00145159 | ||||
Accept New Terms | 20111253 | 280 days ago | IN | 0 ETH | 0.00170796 | ||||
Accept New Terms | 20065077 | 286 days ago | IN | 0 ETH | 0.00171243 | ||||
Accept New Terms | 20011380 | 294 days ago | IN | 0 ETH | 0.0035163 | ||||
Accept New Terms | 19961322 | 301 days ago | IN | 0 ETH | 0.00587335 | ||||
Accept New Terms | 19910685 | 308 days ago | IN | 0 ETH | 0.00289715 | ||||
Accept New Terms | 19860712 | 315 days ago | IN | 0 ETH | 0.00131697 | ||||
Accept New Terms | 19810905 | 322 days ago | IN | 0 ETH | 0.00204372 | ||||
Accept New Terms | 19760479 | 329 days ago | IN | 0 ETH | 0.00318517 | ||||
Accept New Terms | 19710735 | 336 days ago | IN | 0 ETH | 0.00432772 | ||||
Accept New Terms | 19660742 | 343 days ago | IN | 0 ETH | 0.00531582 | ||||
Accept New Terms | 19610912 | 350 days ago | IN | 0 ETH | 0.00917201 | ||||
Accept New Terms | 19561016 | 357 days ago | IN | 0 ETH | 0.00779746 | ||||
Accept New Terms | 19511132 | 364 days ago | IN | 0 ETH | 0.00848815 | ||||
Accept New Terms | 19461523 | 371 days ago | IN | 0 ETH | 0.03083656 | ||||
Accept New Terms | 19411477 | 378 days ago | IN | 0 ETH | 0.02399899 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
0x60806040 | 18070646 | 566 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xDA8f7941...2455669Ce 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-06-16 */ /** * SourceUnit: /Users/farhaan/repositories/maple/proxy-factory/contracts/Proxy.sol */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-only pragma solidity ^0.8.7; 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_) } } } /** * SourceUnit: /Users/farhaan/repositories/maple/proxy-factory/contracts/Proxy.sol */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: 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_); } /** * SourceUnit: /Users/farhaan/repositories/maple/proxy-factory/contracts/Proxy.sol */ ////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: AGPL-3.0-only pragma solidity ^0.8.7; ////import { IDefaultImplementationBeacon } from "./interfaces/IDefaultImplementationBeacon.sol"; ////import { SlotManipulatable } from "./SlotManipulatable.sol"; /// @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
Contract ABI
API[{"inputs":[{"internalType":"address","name":"factory_","type":"address"},{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]
Deployed Bytecode
0x60806040526000602d7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b90506001600160a01b0381163b604257600080fd5b3660008037600080366000845af43d6000803e8080156060573d6000f35b3d6000fdfea26469706673582212206a731915400432878d54bd0168588da912c447afb1999eac01f1b1977a676e8064736f6c63430008070033
Deployed Bytecode Sourcemap
1716:2157:0:-:0;;;3293:22;3318:34;2167:66;548:12;;426:152;3318:34;3293:59;-1:-1:-1;;;;;;3373:53:0;;;3365:76;;;;;;3497:14;3494:1;3491;3478:34;3600:1;3597;3581:14;3578:1;3562:14;3555:5;3542:60;3639:16;3636:1;3633;3618:38;3679:6;3699:68;;;;3818:16;3815:1;3808:27;3699:68;3735:16;3732:1;3725:27
Swarm Source
ipfs://6a731915400432878d54bd0168588da912c447afb1999eac01f1b1977a676e80
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
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.