Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 29 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 21326668 | 25 days ago | IN | 0 ETH | 0.00086049 | ||||
Airdrop Edition | 21218464 | 40 days ago | IN | 0 ETH | 0.00142314 | ||||
Set Approval For... | 20851885 | 91 days ago | IN | 0 ETH | 0.00042464 | ||||
Set Approval For... | 19727756 | 248 days ago | IN | 0 ETH | 0.00087127 | ||||
Withdraw | 19599225 | 266 days ago | IN | 0 ETH | 0.00057163 | ||||
Mint Edition | 19437206 | 289 days ago | IN | 0.00507 ETH | 0.00834648 | ||||
Mint Edition | 19406544 | 293 days ago | IN | 0.00507 ETH | 0.01116994 | ||||
Withdraw | 19395198 | 295 days ago | IN | 0 ETH | 0.00154154 | ||||
Withdraw | 19395198 | 295 days ago | IN | 0 ETH | 0.00182847 | ||||
Airdrop Edition | 19395180 | 295 days ago | IN | 0 ETH | 0.00483424 | ||||
Safe Transfer Fr... | 19308429 | 307 days ago | IN | 0 ETH | 0.00244288 | ||||
Mint Edition | 19307226 | 307 days ago | IN | 0.01521 ETH | 0.00735769 | ||||
Mint Edition | 19300883 | 308 days ago | IN | 0.00507 ETH | 0.00424678 | ||||
Set Approval For... | 19280602 | 311 days ago | IN | 0 ETH | 0.00184428 | ||||
Mint Edition | 19278750 | 311 days ago | IN | 0.00507 ETH | 0.00914108 | ||||
Mint Edition | 19273677 | 312 days ago | IN | 0.00507 ETH | 0.0058843 | ||||
Withdraw | 19272943 | 312 days ago | IN | 0 ETH | 0.0011548 | ||||
Withdraw | 19272915 | 312 days ago | IN | 0 ETH | 0.00133088 | ||||
Airdrop Edition | 19272900 | 312 days ago | IN | 0 ETH | 0.00393735 | ||||
Mint Edition | 19257475 | 314 days ago | IN | 0.01014 ETH | 0.00405831 | ||||
Mint Edition | 19238223 | 317 days ago | IN | 0.01521 ETH | 0.00331806 | ||||
Mint Edition | 19231279 | 318 days ago | IN | 0.00507 ETH | 0.00448531 | ||||
Mint Edition | 19213283 | 321 days ago | IN | 0.01521 ETH | 0.00575772 | ||||
Mint Edition | 19209966 | 321 days ago | IN | 0.01014 ETH | 0.00438906 | ||||
Mint Edition | 19207996 | 321 days ago | IN | 0.01521 ETH | 0.01341718 |
Latest 20 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
19599225 | 266 days ago | 0.0084 ETH | ||||
19437206 | 289 days ago | 0.00087 ETH | ||||
19406544 | 293 days ago | 0.00087 ETH | ||||
19395198 | 295 days ago | 0.0252 ETH | ||||
19307226 | 307 days ago | 0.00261 ETH | ||||
19300883 | 308 days ago | 0.00087 ETH | ||||
19278750 | 311 days ago | 0.00087 ETH | ||||
19273677 | 312 days ago | 0.00087 ETH | ||||
19272915 | 312 days ago | 0.084 ETH | ||||
19257475 | 314 days ago | 0.00174 ETH | ||||
19238223 | 317 days ago | 0.00261 ETH | ||||
19231279 | 318 days ago | 0.00087 ETH | ||||
19213283 | 321 days ago | 0.00261 ETH | ||||
19209966 | 321 days ago | 0.00174 ETH | ||||
19207996 | 321 days ago | 0.00261 ETH | ||||
19207292 | 321 days ago | 0.00087 ETH | ||||
19207289 | 321 days ago | 0.00261 ETH | ||||
19207276 | 321 days ago | 0.00087 ETH | ||||
19207251 | 321 days ago | 0.00087 ETH | ||||
19198123 | 323 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 0xdBc63dEd...0755c5d21 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
FairxyzBeaconProxy
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import {IBeacon} from "@openzeppelin/contracts/proxy/beacon/IBeacon.sol"; /** * @dev This contract implements a proxy that gets the implementation address for each call from an {UpgradeableBeacon}. * * The beacon address is stored in storage slot `uint256(keccak256('eip1967.proxy.beacon')) - 1`, so that it doesn't * conflict with the storage layout of the implementation behind the proxy. */ contract FairxyzBeaconProxy { /** * @dev Emitted when the beacon is upgraded. */ event BeaconUpgraded(address indexed beacon); struct AddressSlot { address value; } /** * @dev The storage slot of the Beacon contract which defines the implementation for this proxy. * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor. */ bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Initializes the proxy, upgrading to beacon `beacon`. * * If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon. This * will typically be an encoded function call, and allows initializing the storage of the proxy like a Solidity * constructor. * * Requirements: * * - `beacon` must be a contract with the interface {IBeacon}. */ constructor(address beacon, bytes memory data) payable { _upgradeBeaconToAndCall(beacon, data); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other * function in the contract matches the call data. */ fallback() external payable virtual { _delegate(_implementation()); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data * is empty. */ receive() external payable virtual { _delegate(_implementation()); } /** * @dev Delegates the current call to `implementation`. * * This function does not return to its internal call site, it will return directly to the external caller. */ function _delegate(address implementation) internal virtual { assembly { // Copy msg.data. We take full control of memory in this inline assembly // block because it will not return to Solidity code. We overwrite the // Solidity scratch pad at memory position 0. calldatacopy(0, 0, calldatasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall( gas(), implementation, 0, calldatasize(), 0, 0 ) // Copy the returned data. returndatacopy(0, 0, returndatasize()) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function _getAddressSlot( bytes32 slot ) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns the current implementation address of the associated beacon. */ function _implementation() internal view virtual returns (address) { return IBeacon(_getAddressSlot(_BEACON_SLOT).value).implementation(); } /** * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that). * * Emits a {BeaconUpgraded} event. */ function _upgradeBeaconToAndCall( address newBeacon, bytes memory data ) internal { require( newBeacon.code.length > 0, "ERC1967: new beacon is not a contract" ); address implementation = IBeacon(newBeacon).implementation(); require( implementation.code.length > 0, "ERC1967: beacon implementation is not a contract" ); _getAddressSlot(_BEACON_SLOT).value = newBeacon; emit BeaconUpgraded(newBeacon); if (data.length > 0) { (bool success, bytes memory returndata) = implementation .delegatecall(data); if (!success) { if (returndata.length > 0) { assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert("Address: low-level delegate call failed"); } } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol) pragma solidity ^0.8.0; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeacon { /** * @dev Must return an address that can be used as a delegate call target. * * {BeaconProxy} will check that this address is a contract. */ function implementation() external view returns (address); }
{ "optimizer": { "enabled": true, "runs": 10000 }, "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":"beacon","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]
Deployed Bytecode
0x60806040523661001b57610019610014610022565b6100da565b005b6100196100145b7fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5054604080517f5c60da1b000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff1691635c60da1b9160048083019260209291908290030181865afa1580156100b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100d591906100fe565b905090565b3660008037600080366000845af43d6000803e8080156100f9573d6000f35b3d6000fd5b60006020828403121561011057600080fd5b815173ffffffffffffffffffffffffffffffffffffffff8116811461013457600080fd5b939250505056fea26469706673582212205f937e101a15b5b43cb683925cb18aa9952c3258643ff276fc0c5c7cd665df4c64736f6c63430008130033
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.