More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 57,301 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 21174918 | 14 days ago | IN | 0 ETH | 0.00067502 | ||||
Set Approval For... | 21110242 | 23 days ago | IN | 0 ETH | 0.00009646 | ||||
Set Approval For... | 21108642 | 23 days ago | IN | 0 ETH | 0.0001552 | ||||
Set Approval For... | 21105788 | 23 days ago | IN | 0 ETH | 0.0001011 | ||||
Set Approval For... | 21103545 | 24 days ago | IN | 0 ETH | 0.00012255 | ||||
Set Approval For... | 21047669 | 31 days ago | IN | 0 ETH | 0.00026801 | ||||
Set Approval For... | 21047552 | 31 days ago | IN | 0 ETH | 0.00024001 | ||||
Set Approval For... | 21043276 | 32 days ago | IN | 0 ETH | 0.00066502 | ||||
Set Approval For... | 21025340 | 34 days ago | IN | 0 ETH | 0.00020185 | ||||
Safe Transfer Fr... | 21008554 | 37 days ago | IN | 0 ETH | 0.00063828 | ||||
Transfer From | 20830754 | 62 days ago | IN | 0 ETH | 0.00084705 | ||||
Set Approval For... | 20769084 | 70 days ago | IN | 0 ETH | 0.00011745 | ||||
Set Approval For... | 20627928 | 90 days ago | IN | 0 ETH | 0.00020552 | ||||
Set Approval For... | 20596482 | 94 days ago | IN | 0 ETH | 0.00002745 | ||||
Set Approval For... | 20570501 | 98 days ago | IN | 0 ETH | 0.00025414 | ||||
Set Approval For... | 20549606 | 101 days ago | IN | 0 ETH | 0.00005625 | ||||
Set Approval For... | 20524491 | 104 days ago | IN | 0 ETH | 0.00005308 | ||||
Set Approval For... | 20500651 | 108 days ago | IN | 0 ETH | 0.00004371 | ||||
Set Approval For... | 20500650 | 108 days ago | IN | 0 ETH | 0.00004355 | ||||
Transfer From | 20473183 | 112 days ago | IN | 0 ETH | 0.00014866 | ||||
Mint | 20453430 | 114 days ago | IN | 0 ETH | 0.00003516 | ||||
Set Approval For... | 20450554 | 115 days ago | IN | 0 ETH | 0.00006649 | ||||
Safe Transfer Fr... | 20444284 | 116 days ago | IN | 0 ETH | 0.00012836 | ||||
Safe Transfer Fr... | 20429792 | 118 days ago | IN | 0 ETH | 0.00032653 | ||||
Set Approval For... | 20415957 | 120 days ago | IN | 0 ETH | 0.00010507 |
Latest 18 internal transactions
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
16585632 | 657 days ago | 2.23244805 ETH | ||||
16450601 | 676 days ago | 2.69206621 ETH | ||||
16441270 | 677 days ago | 1 ETH | ||||
16377111 | 686 days ago | 2.032356 ETH | ||||
16319190 | 694 days ago | 1.388792 ETH | ||||
16255224 | 703 days ago | 1.772101 ETH | ||||
16223339 | 707 days ago | 0.04 ETH | ||||
16199178 | 711 days ago | 2.03849541 ETH | ||||
16142766 | 719 days ago | 0.04 ETH | ||||
16127448 | 721 days ago | 12.28760099 ETH | ||||
16022331 | 735 days ago | 0.01648539 ETH | ||||
16019761 | 736 days ago | 10.54377581 ETH | ||||
15990896 | 740 days ago | 20 ETH | ||||
15990892 | 740 days ago | 45 ETH | ||||
15990886 | 740 days ago | 15 ETH | ||||
15990882 | 740 days ago | 5 ETH | ||||
15989726 | 740 days ago | 0.01 ETH | ||||
15984928 | 741 days ago | 0.00829662 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xa2Fd4dEd...7EBd72F7d 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
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.7; /// @dev Proxy for NFT Factory contract Proxy { // Storage for this proxy bytes32 private constant IMPLEMENTATION_SLOT = bytes32(0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc); bytes32 private constant ADMIN_SLOT = bytes32(0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103); constructor(address impl) { require(impl != address(0)); _setSlotValue(IMPLEMENTATION_SLOT, bytes32(uint256(uint160(impl)))); _setSlotValue(ADMIN_SLOT, bytes32(uint256(uint160(msg.sender)))); } function setImplementation(address newImpl) public { require(msg.sender == _getAddress(ADMIN_SLOT)); _setSlotValue(IMPLEMENTATION_SLOT, bytes32(uint256(uint160(newImpl)))); } function setAdmin(address newAdmin) public { require(msg.sender == _getAddress(ADMIN_SLOT)); _setSlotValue(ADMIN_SLOT, bytes32(uint256(uint160(newAdmin)))); } function implementation() public view returns (address impl) { impl = address(uint160(uint256(_getSlotValue(IMPLEMENTATION_SLOT)))); } function _getAddress(bytes32 key) internal view returns (address add) { add = address(uint160(uint256(_getSlotValue(key)))); } function _getSlotValue(bytes32 slot_) internal view returns (bytes32 value_) { assembly { value_ := sload(slot_) } } function _setSlotValue(bytes32 slot_, bytes32 value_) internal { assembly { sstore(slot_, value_) } } /** * @dev Delegates the current call to `implementation`. * * This function does not return to its internall 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()) } } } receive() external payable {} /** * @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(_getAddress(IMPLEMENTATION_SLOT)); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "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":"impl","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"impl","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImpl","type":"address"}],"name":"setImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Deployed Bytecode
0x6080604052600436106100385760003560e01c80635c60da1b14610072578063704b6c02146100a3578063d784d426146100c35761003f565b3661003f57005b61007061006b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc6100e3565b6100f3565b005b34801561007e57600080fd5b50610087610117565b6040516001600160a01b03909116815260200160405180910390f35b3480156100af57600080fd5b506100706100be36600461022c565b610146565b3480156100cf57600080fd5b506100706100de36600461022c565b6101b9565b60006100ed825490565b92915050565b3660008037600080366000845af43d6000803e808015610112573d6000f35b3d6000fd5b60006101417f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b919050565b61016f7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61036100e3565b6001600160a01b0316336001600160a01b03161461018c57600080fd5b6001600160a01b03167fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355565b6101e27fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61036100e3565b6001600160a01b0316336001600160a01b0316146101ff57600080fd5b6001600160a01b03167f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b60006020828403121561023e57600080fd5b81356001600160a01b038116811461025557600080fd5b939250505056fea26469706673582212206338fb9fcfd0243a16a428ed16fd0958ef71d993b153dd86d5f2588b86012d3664736f6c63430008070033
Loading...
Loading
Loading...
Loading
OVERVIEW
The Prometheans are an Order dedicating their lives to maintaining a fire on the outskirts of society. Their origins stretch back endless generations.The reason why this fire exists, and why it must stay lit, has been long forgotten. Some believe that it wards off an ancient...Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 100.00% | $609.4 | 0.01 | $6.09 |
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.