Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 63 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 23656061 | 11 days ago | IN | 0 ETH | 0.00010624 | ||||
| Set Approval For... | 22722627 | 141 days ago | IN | 0 ETH | 0.00001708 | ||||
| Set Approval For... | 22309560 | 199 days ago | IN | 0 ETH | 0.00012077 | ||||
| Set Approval For... | 21840093 | 265 days ago | IN | 0 ETH | 0.00006937 | ||||
| Set Approval For... | 21434489 | 321 days ago | IN | 0 ETH | 0.00055409 | ||||
| Safe Transfer Fr... | 21257191 | 346 days ago | IN | 0 ETH | 0.0004885 | ||||
| Safe Transfer Fr... | 20479637 | 455 days ago | IN | 0 ETH | 0.0002116 | ||||
| Set Approval For... | 20083209 | 510 days ago | IN | 0 ETH | 0.0006506 | ||||
| Set Approval For... | 19926828 | 532 days ago | IN | 0 ETH | 0.00103724 | ||||
| Set Approval For... | 19832986 | 545 days ago | IN | 0 ETH | 0.0001763 | ||||
| Set Approval For... | 19832984 | 545 days ago | IN | 0 ETH | 0.00031598 | ||||
| Safe Transfer Fr... | 19773409 | 553 days ago | IN | 0 ETH | 0.00025889 | ||||
| Set Approval For... | 19174001 | 637 days ago | IN | 0 ETH | 0.00124804 | ||||
| Safe Transfer Fr... | 19145244 | 641 days ago | IN | 0 ETH | 0.00094842 | ||||
| Set Approval For... | 18995188 | 662 days ago | IN | 0 ETH | 0.00079401 | ||||
| Set Approval For... | 18884604 | 678 days ago | IN | 0 ETH | 0.00195484 | ||||
| Safe Transfer Fr... | 18871481 | 680 days ago | IN | 0 ETH | 0.00384019 | ||||
| Set Approval For... | 18501974 | 731 days ago | IN | 0 ETH | 0.00090937 | ||||
| Safe Transfer Fr... | 18358163 | 752 days ago | IN | 0 ETH | 0.00034791 | ||||
| Set Approval For... | 18348167 | 753 days ago | IN | 0 ETH | 0.00025166 | ||||
| Set Approval For... | 18331053 | 755 days ago | IN | 0 ETH | 0.00028641 | ||||
| Safe Transfer Fr... | 18294642 | 760 days ago | IN | 0 ETH | 0.00034904 | ||||
| Set Approval For... | 17977917 | 805 days ago | IN | 0 ETH | 0.00166984 | ||||
| Set Approval For... | 17915859 | 814 days ago | IN | 0 ETH | 0.00112103 | ||||
| Set Approval For... | 17873880 | 819 days ago | IN | 0 ETH | 0.00090272 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
C3xNH
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 300 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/// @title: C3 x New Here/// @author: manifold.xyzimport "./manifold/ERC1155Creator.sol";/////////////////////////////////////////////////////////////////////////////////////////// //// //// C3 //// _______ _ _ ______ _____ _____ ______ __ __ ______ _____ //// |__ __| | | | ____| | __ \| __ \| ____| /\ | \/ | ____| __ \ //// | | | |__| | |__ | | | | |__) | |__ / \ | \ / | |__ | |__) | //// | | | __ | __| | | | | _ /| __| / /\ \ | |\/| | __| | _ / //// | | | | | | |____ | |__| | | \ \| |____ / ____ \| | | | |____| | \ \ //// |_| |_| |_|______| |_____/|_| \_\______/_/ \_\_| |_|______|_| \_\ //// //// NEW HERE //// //// ///////////////////////////////////////////////////////////////////////////////////////////
12345678910111213141516171819202122232425// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/// @author: manifold.xyzimport "@openzeppelin/contracts/proxy/Proxy.sol";import "@openzeppelin/contracts/utils/Address.sol";import "@openzeppelin/contracts/utils/StorageSlot.sol";contract ERC1155Creator is Proxy {constructor(string memory name, string memory symbol) {assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = 0xE9FF7CA11280553Af56d04Ecb8Be6B8c4468DCB2;(bool success, ) = 0xE9FF7CA11280553Af56d04Ecb8Be6B8c4468DCB2.delegatecall(abi.encodeWithSignature("initialize(string,string)", name, symbol));require(success, "Initialization failed");}/*** @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;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol)pragma solidity ^0.8.0;/*** @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM* instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to* be specified by overriding the virtual {_implementation} function.** Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a* different contract through the {_delegate} function.** The success and return data of the delegated call will be returned back to the caller of the proxy.*/abstract contract Proxy {/*** @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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)pragma solidity ^0.8.0;/*** @dev Library for reading and writing primitive types to specific storage slots.** Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.* This library helps with reading and writing to such slots without the need for inline assembly.** The functions in this library return Slot structs that contain a `value` member that can be used to read or write.** Example usage to set ERC1967 implementation slot:* ```* contract ERC1967 {* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;** function _getImplementation() internal view returns (address) {* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;* }** function _setImplementation(address newImplementation) internal {* require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;* }
1234567891011121314151617181920212223242526{"remappings": ["@openzeppelin/=node_modules/@openzeppelin/"],"optimizer": {"enabled": true,"runs": 300},"metadata": {"bytecodeHash": "ipfs"},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"evmVersion": "london","libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
608060405234801561001057600080fd5b50604080518082018252600d81526c43332078204e6577204865726560981b6020808301919091528251808401909352600583526408666f09c960db1b908301529061007d60017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd6101f1565b6000805160206104018339815191521461009957610099610218565b73e9ff7ca11280553af56d04ecb8be6b8c4468dcb26100d260008051602061040183398151915260001b6101ee60201b6100ce1760201c565b80546001600160a01b0319166001600160a01b039290921691909117905560405160009073e9ff7ca11280553af56d04ecb8be6b8c4468dcb29061011c908590859060240161027e565b60408051601f198184030181529181526020820180516001600160e01b031663266c45bb60e11b1790525161015191906102ac565b600060405180830381855af49150503d806000811461018c576040519150601f19603f3d011682016040523d82523d6000602084013e610191565b606091505b50509050806101e65760405162461bcd60e51b815260206004820152601560248201527f496e697469616c697a6174696f6e206661696c65640000000000000000000000604482015260640160405180910390fd5b5050506102c8565b90565b8181038181111561021257634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052600160045260246000fd5b60005b83811015610249578181015183820152602001610231565b50506000910152565b6000815180845261026a81602086016020860161022e565b601f01601f19169290920160200192915050565b6040815260006102916040830185610252565b82810360208401526102a38185610252565b95945050505050565b600082516102be81846020870161022e565b9190910192915050565b61012a806102d76000396000f3fe608060405260043610601f5760003560e01c80635c60da1b14603157602b565b36602b576029605f565b005b6029605f565b348015603c57600080fd5b5060436097565b6040516001600160a01b03909116815260200160405180910390f35b609560917f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b60d1565b565b600060c97f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b90565b3660008037600080366000845af43d6000803e80801560ef573d6000f35b3d6000fdfea264697066735822122049d76cffc01c5824fac75470c483e5d6b40f222b40cb7ecc4bc5b86c1cb2de1264736f6c63430008110033360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc
Deployed Bytecode
0x608060405260043610601f5760003560e01c80635c60da1b14603157602b565b36602b576029605f565b005b6029605f565b348015603c57600080fd5b5060436097565b6040516001600160a01b03909116815260200160405180910390f35b609560917f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b60d1565b565b600060c97f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b90565b3660008037600080366000845af43d6000803e80801560ef573d6000f35b3d6000fdfea264697066735822122049d76cffc01c5824fac75470c483e5d6b40f222b40cb7ecc4bc5b86c1cb2de1264736f6c63430008110033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Showing 0 tokens with a value of $0
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.