Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Babylon Core | 16447864 | 729 days ago | IN | 0 ETH | 0.00077467 |
Latest 25 internal transactions (View All)
Advanced mode:
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.
Contract Name:
BabylonEditionsExtension
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: agpl-3.0 pragma solidity ^0.8.0; import "./interfaces/IBabylonCore.sol"; import "./interfaces/IEditionsExtension.sol"; import "./editions/BabylonEditions.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@manifoldxyz/creator-core-solidity/contracts/core/IERC721CreatorCore.sol"; import "@manifoldxyz/creator-core-solidity/contracts/extensions/ICreatorExtensionTokenURI.sol"; contract BabylonEditionsExtension is Ownable, IEditionsExtension, ICreatorExtensionTokenURI { address internal _core; // id of a listing -> collection address mapping(uint256 => address) internal _editions; // Mapping for token URIs of Editions collections mapping(address => string) internal _editionURIs; // Max royalties basis points is 1000 (10%) uint256 constant MAX_ROYALTIES_BPS = 1000; event EditionRegistered(uint256 listingId, address editionsCollection, address newOwner, string editionsURI); event EditionMinted(uint256 listingId, address editionsCollection, address receiver, uint256 amount); function registerEdition( EditionInfo calldata info, address creator, uint256 listingId ) external override { require(msg.sender == _core, "BabylonEditionsExtension: Only BabylonCore can register"); require(_editions[listingId] == address(0), "BabylonEditionsExtension: Edition already registered for this listing"); require(info.royaltiesBps <= MAX_ROYALTIES_BPS, "BabylonEditionsExtension: Royalties BPS too high"); address newEditions = address(new BabylonEditions(info.name)); address payable[] memory receivers = new address payable[](1); receivers[0] = payable(creator); uint256[] memory basisPoints = new uint256[](1); basisPoints[0] = info.royaltiesBps; IERC721CreatorCore(newEditions).setRoyalties(receivers, basisPoints); IERC721CreatorCore(newEditions).registerExtension(address(this), ""); Ownable(newEditions).transferOwnership(creator); _editions[listingId] = newEditions; _editionURIs[newEditions] = info.editionURI; emit EditionRegistered(listingId, newEditions, creator, info.editionURI); } function mintEdition(uint256 listingId, address receiver, uint256 amount) external override { require(msg.sender == _core, "BabylonEditionsExtension: Only BabylonCore can mint"); address editionsCollection = _editions[listingId]; require(editionsCollection != address(0), "BabylonEditionsExtension: Edition should exist for this listing"); IERC721CreatorCore(editionsCollection).mintExtensionBatch(receiver, uint16(amount)); emit EditionMinted(listingId, editionsCollection, receiver, amount); } function setBabylonCore(address core) external onlyOwner { require(core != address(0), "BabylonEditionsExtension: Zero address"); _core = core; } function getEditionsCollection(uint256 listingId) external view returns (address) { return _editions[listingId]; } function getEditionURI(uint256 listingId) external view returns (string memory) { return _editionURIs[_editions[listingId]]; } function getBabylonCore() external view returns (address) { return _core; } function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(ICreatorExtensionTokenURI).interfaceId || interfaceId == type(IERC165).interfaceId; } function tokenURI(address core, uint256 tokenId) external view override returns (string memory) { return _editionURIs[core]; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @dev Core creator interface */ interface ICreatorCore is IERC165 { event ExtensionRegistered(address indexed extension, address indexed sender); event ExtensionUnregistered(address indexed extension, address indexed sender); event ExtensionBlacklisted(address indexed extension, address indexed sender); event MintPermissionsUpdated(address indexed extension, address indexed permissions, address indexed sender); event RoyaltiesUpdated(uint256 indexed tokenId, address payable[] receivers, uint256[] basisPoints); event DefaultRoyaltiesUpdated(address payable[] receivers, uint256[] basisPoints); event ApproveTransferUpdated(address extension); event ExtensionRoyaltiesUpdated(address indexed extension, address payable[] receivers, uint256[] basisPoints); event ExtensionApproveTransferUpdated(address indexed extension, bool enabled); /** * @dev gets address of all extensions */ function getExtensions() external view returns (address[] memory); /** * @dev add an extension. Can only be called by contract owner or admin. * extension address must point to a contract implementing ICreatorExtension. * Returns True if newly added, False if already added. */ function registerExtension(address extension, string calldata baseURI) external; /** * @dev add an extension. Can only be called by contract owner or admin. * extension address must point to a contract implementing ICreatorExtension. * Returns True if newly added, False if already added. */ function registerExtension(address extension, string calldata baseURI, bool baseURIIdentical) external; /** * @dev add an extension. Can only be called by contract owner or admin. * Returns True if removed, False if already removed. */ function unregisterExtension(address extension) external; /** * @dev blacklist an extension. Can only be called by contract owner or admin. * This function will destroy all ability to reference the metadata of any tokens created * by the specified extension. It will also unregister the extension if needed. * Returns True if removed, False if already removed. */ function blacklistExtension(address extension) external; /** * @dev set the baseTokenURI of an extension. Can only be called by extension. */ function setBaseTokenURIExtension(string calldata uri) external; /** * @dev set the baseTokenURI of an extension. Can only be called by extension. * For tokens with no uri configured, tokenURI will return "uri+tokenId" */ function setBaseTokenURIExtension(string calldata uri, bool identical) external; /** * @dev set the common prefix of an extension. Can only be called by extension. * If configured, and a token has a uri set, tokenURI will return "prefixURI+tokenURI" * Useful if you want to use ipfs/arweave */ function setTokenURIPrefixExtension(string calldata prefix) external; /** * @dev set the tokenURI of a token extension. Can only be called by extension that minted token. */ function setTokenURIExtension(uint256 tokenId, string calldata uri) external; /** * @dev set the tokenURI of a token extension for multiple tokens. Can only be called by extension that minted token. */ function setTokenURIExtension(uint256[] memory tokenId, string[] calldata uri) external; /** * @dev set the baseTokenURI for tokens with no extension. Can only be called by owner/admin. * For tokens with no uri configured, tokenURI will return "uri+tokenId" */ function setBaseTokenURI(string calldata uri) external; /** * @dev set the common prefix for tokens with no extension. Can only be called by owner/admin. * If configured, and a token has a uri set, tokenURI will return "prefixURI+tokenURI" * Useful if you want to use ipfs/arweave */ function setTokenURIPrefix(string calldata prefix) external; /** * @dev set the tokenURI of a token with no extension. Can only be called by owner/admin. */ function setTokenURI(uint256 tokenId, string calldata uri) external; /** * @dev set the tokenURI of multiple tokens with no extension. Can only be called by owner/admin. */ function setTokenURI(uint256[] memory tokenIds, string[] calldata uris) external; /** * @dev set a permissions contract for an extension. Used to control minting. */ function setMintPermissions(address extension, address permissions) external; /** * @dev Configure so transfers of tokens created by the caller (must be extension) gets approval * from the extension before transferring */ function setApproveTransferExtension(bool enabled) external; /** * @dev get the extension of a given token */ function tokenExtension(uint256 tokenId) external view returns (address); /** * @dev Set default royalties */ function setRoyalties(address payable[] calldata receivers, uint256[] calldata basisPoints) external; /** * @dev Set royalties of a token */ function setRoyalties(uint256 tokenId, address payable[] calldata receivers, uint256[] calldata basisPoints) external; /** * @dev Set royalties of an extension */ function setRoyaltiesExtension(address extension, address payable[] calldata receivers, uint256[] calldata basisPoints) external; /** * @dev Get royalites of a token. Returns list of receivers and basisPoints */ function getRoyalties(uint256 tokenId) external view returns (address payable[] memory, uint256[] memory); // Royalty support for various other standards function getFeeRecipients(uint256 tokenId) external view returns (address payable[] memory); function getFeeBps(uint256 tokenId) external view returns (uint[] memory); function getFees(uint256 tokenId) external view returns (address payable[] memory, uint256[] memory); function royaltyInfo(uint256 tokenId, uint256 value) external view returns (address, uint256); /** * @dev Set the default approve transfer contract location. */ function setApproveTransfer(address extension) external; /** * @dev Get the default approve transfer contract location. */ function getApproveTransfer() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "./ICreatorCore.sol"; /** * @dev Core ERC721 creator interface */ interface IERC721CreatorCore is ICreatorCore { /** * @dev mint a token with no extension. Can only be called by an admin. * Returns tokenId minted */ function mintBase(address to) external returns (uint256); /** * @dev mint a token with no extension. Can only be called by an admin. * Returns tokenId minted */ function mintBase(address to, string calldata uri) external returns (uint256); /** * @dev batch mint a token with no extension. Can only be called by an admin. * Returns tokenId minted */ function mintBaseBatch(address to, uint16 count) external returns (uint256[] memory); /** * @dev batch mint a token with no extension. Can only be called by an admin. * Returns tokenId minted */ function mintBaseBatch(address to, string[] calldata uris) external returns (uint256[] memory); /** * @dev mint a token. Can only be called by a registered extension. * Returns tokenId minted */ function mintExtension(address to) external returns (uint256); /** * @dev mint a token. Can only be called by a registered extension. * Returns tokenId minted */ function mintExtension(address to, string calldata uri) external returns (uint256); /** * @dev batch mint a token. Can only be called by a registered extension. * Returns tokenIds minted */ function mintExtensionBatch(address to, uint16 count) external returns (uint256[] memory); /** * @dev batch mint a token. Can only be called by a registered extension. * Returns tokenId minted */ function mintExtensionBatch(address to, string[] calldata uris) external returns (uint256[] memory); /** * @dev burn a token. Can only be called by token owner or approved address. * On burn, calls back to the registered extension's onBurn method */ function burn(uint256 tokenId) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @dev Implement this if you want your extension to have overloadable URI's */ interface ICreatorExtensionTokenURI is IERC165 { /** * Get the uri for a given creator/tokenId */ function tokenURI(address creator, uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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. 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 This is a virtual function that should be overridden so it returns the address to which the fallback function * and {_fallback} should delegate. */ function _implementation() internal view virtual returns (address); /** * @dev Delegates the current call to the address returned by `_implementation()`. * * This function does not return to its internal call site, it will return directly to the external caller. */ function _fallback() internal virtual { _beforeFallback(); _delegate(_implementation()); } /** * @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 { _fallback(); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data * is empty. */ receive() external payable virtual { _fallback(); } /** * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback` * call, or as part of the Solidity `fallback` or `receive` functions. * * If overridden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual {} }
// 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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// 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; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @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 an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title: Babylon Editions /// @author: manifold.xyz import "./ERC721Creator.sol"; /////////////////////////////////////////////////// // // // // // _ _ _ // // | | | | | | // // | |__ __ _| |__ _ _| | ___ _ __ // // | '_ \ / _` | '_ \| | | | |/ _ \| '_ \ // // | |_) | (_| | |_) | |_| | | (_) | | | | // // |_.__/ \__,_|_.__/ \__, |_|\___/|_| |_| // // __/ | // // |___/ // // // // // /////////////////////////////////////////////////// contract BabylonEditions is ERC721Creator { constructor(string memory name) ERC721Creator(name, "BAB") {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/proxy/Proxy.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/StorageSlot.sol"; contract ERC721Creator is Proxy { constructor(string memory name, string memory symbol) { assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1)); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = 0x2d3fC875de7Fe7Da43AD0afa0E7023c9B91D06b1; Address.functionDelegateCall( 0x2d3fC875de7Fe7Da43AD0afa0E7023c9B91D06b1, abi.encodeWithSignature("initialize(string,string)", name, symbol) ); } /** * @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; /** * @dev Returns the current implementation address. */ function implementation() public view returns (address) { return _implementation(); } function _implementation() internal override view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } }
// SPDX-License-Identifier: agpl-3.0 pragma solidity ^0.8.0; interface IBabylonCore { enum ItemType { ERC721, ERC1155 } struct ListingItem { ItemType itemType; address token; uint256 identifier; uint256 amount; } /** * @dev Indicates state of a listing. */ enum ListingState { Active, Resolving, Successful, Finalized, Canceled } /** * @dev Contains all information for a specific listing. */ struct ListingInfo { ListingItem item; ListingState state; address creator; address claimer; address mintPass; uint256 price; uint256 timeStart; uint256 totalTickets; uint256 currentTickets; uint256 donationBps; uint256 randomRequestId; uint256 creationTimestamp; } function resolveClaimer( uint256 id, uint256 random ) external; function getListingInfo(uint256 id) external view returns (ListingInfo memory); }
// SPDX-License-Identifier: agpl-3.0 pragma solidity ^0.8.0; interface IEditionsExtension { struct EditionInfo { uint256 royaltiesBps; string name; string editionURI; } function registerEdition( EditionInfo calldata info, address creator, uint256 listingId ) external; function mintEdition(uint256 listingId, address receiver, uint256 amount) external; }
{ "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
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":false,"internalType":"address","name":"editionsCollection","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EditionMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":false,"internalType":"address","name":"editionsCollection","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"},{"indexed":false,"internalType":"string","name":"editionsURI","type":"string"}],"name":"EditionRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"getBabylonCore","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"listingId","type":"uint256"}],"name":"getEditionURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"listingId","type":"uint256"}],"name":"getEditionsCollection","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"listingId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintEdition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"royaltiesBps","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"editionURI","type":"string"}],"internalType":"struct IEditionsExtension.EditionInfo","name":"info","type":"tuple"},{"internalType":"address","name":"creator","type":"address"},{"internalType":"uint256","name":"listingId","type":"uint256"}],"name":"registerEdition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"core","type":"address"}],"name":"setBabylonCore","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"core","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6119058061007e6000396000f3fe60806040523480156200001157600080fd5b5060043610620000b75760003560e01c80638da5cb5b116200007a5780638da5cb5b14620001765780639c32a39b1462000188578063b2cc44d5146200019a578063e9dc637514620001b1578063f2fde38b14620001c8578063f9caec7f14620001df57600080fd5b806301ffc9a714620000bc57806346bef80e14620000e857806361890d7b146200010e5780636b77898c1462000127578063715018a6146200016c575b600080fd5b620000d3620000cd36600462000bb9565b620001f6565b60405190151581526020015b60405180910390f35b620000ff620000f936600462000bec565b6200022e565b604051620000df919062000c06565b620001256200011f36600462000c73565b620002ee565b005b620001536200013836600462000bec565b6000908152600260205260409020546001600160a01b031690565b6040516001600160a01b039091168152602001620000df565b62000125620004cb565b6000546001600160a01b031662000153565b6001546001600160a01b031662000153565b62000125620001ab36600462000cab565b620004e3565b620000ff620001c236600462000cc9565b62000576565b62000125620001d936600462000cab565b6200062b565b62000125620001f036600462000cf6565b620006aa565b60006001600160e01b0319821663e9dc637560e01b14806200022857506001600160e01b031982166301ffc9a760e01b145b92915050565b6000818152600260209081526040808320546001600160a01b0316835260039091529020805460609190620002639062000d47565b80601f0160208091040260200160405190810160405280929190818152602001828054620002919062000d47565b8015620002e25780601f10620002b657610100808354040283529160200191620002e2565b820191906000526020600020905b815481529060010190602001808311620002c457829003601f168201915b50505050509050919050565b6001546001600160a01b031633146200036a5760405162461bcd60e51b815260206004820152603360248201527f426162796c6f6e45646974696f6e73457874656e73696f6e3a204f6e6c79204260448201527218589e5b1bdb90dbdc994818d85b881b5a5b9d606a1b60648201526084015b60405180910390fd5b6000838152600260205260409020546001600160a01b031680620003f75760405162461bcd60e51b815260206004820152603f60248201527f426162796c6f6e45646974696f6e73457874656e73696f6e3a2045646974696f60448201527f6e2073686f756c6420657869737420666f722074686973206c697374696e6700606482015260840162000361565b60405163e00aab4b60e01b81526001600160a01b03848116600483015261ffff8416602483015282169063e00aab4b906044016000604051808303816000875af11580156200044a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000474919081019062000d99565b50604080518581526001600160a01b0383811660208301528516818301526060810184905290517ff3e8a3bb42fd3b757a3024ab78da41b4a78e0a212ad659b853013b3774511d2c9181900360800190a150505050565b620004d562000aff565b620004e1600062000b5b565b565b620004ed62000aff565b6001600160a01b038116620005545760405162461bcd60e51b815260206004820152602660248201527f426162796c6f6e45646974696f6e73457874656e73696f6e3a205a65726f206160448201526564647265737360d01b606482015260840162000361565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821660009081526003602052604090208054606091906200059f9062000d47565b80601f0160208091040260200160405190810160405280929190818152602001828054620005cd9062000d47565b80156200061e5780601f10620005f2576101008083540402835291602001916200061e565b820191906000526020600020905b8154815290600101906020018083116200060057829003601f168201915b5050505050905092915050565b6200063562000aff565b6001600160a01b0381166200069c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000361565b620006a78162000b5b565b50565b6001546001600160a01b031633146200072c5760405162461bcd60e51b815260206004820152603760248201527f426162796c6f6e45646974696f6e73457874656e73696f6e3a204f6e6c79204260448201527f6162796c6f6e436f72652063616e207265676973746572000000000000000000606482015260840162000361565b6000818152600260205260409020546001600160a01b031615620007c75760405162461bcd60e51b815260206004820152604560248201527f426162796c6f6e45646974696f6e73457874656e73696f6e3a2045646974696f60448201527f6e20616c7265616479207265676973746572656420666f722074686973206c696064820152647374696e6760d81b608482015260a40162000361565b6103e883351115620008355760405162461bcd60e51b815260206004820152603060248201527f426162796c6f6e45646974696f6e73457874656e73696f6e3a20526f79616c7460448201526f0d2cae64084a0a640e8dede40d0d2ced60831b606482015260840162000361565b600062000846602085018562000e63565b604051620008549062000bab565b6200086192919062000edd565b604051809103906000f0801580156200087e573d6000803e3d6000fd5b5060408051600180825281830190925291925060009190602080830190803683370190505090508381600081518110620008bc57620008bc62000efb565b6001600160a01b03929092166020928302919091019091015260408051600180825281830190925260009181602001602082028036833701905050905085600001358160008151811062000914576200091462000efb565b6020908102919091010152604051631996e8d760e11b81526001600160a01b0384169063332dd1ae906200094f908590859060040162000f11565b600060405180830381600087803b1580156200096a57600080fd5b505af11580156200097f573d6000803e3d6000fd5b505060408051633071a0f960e01b81523060048201526024810191909152600060448201526001600160a01b0386169250633071a0f99150606401600060405180830381600087803b158015620009d557600080fd5b505af1158015620009ea573d6000803e3d6000fd5b505060405163f2fde38b60e01b81526001600160a01b0388811660048301528616925063f2fde38b9150602401600060405180830381600087803b15801562000a3257600080fd5b505af115801562000a47573d6000803e3d6000fd5b5050506000858152600260205260409081902080546001600160a01b0319166001600160a01b03871617905562000a82915087018762000e63565b6001600160a01b03851660009081526003602052604090209162000aa891908362000fec565b507f451b0648e6417a9af38a17c425e06ce3518f387af6d376d38e88d8615af9f4f584848762000adc60408b018b62000e63565b60405162000aef959493929190620010ba565b60405180910390a1505050505050565b6000546001600160a01b03163314620004e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000361565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6107d580620010fb83390190565b60006020828403121562000bcc57600080fd5b81356001600160e01b03198116811462000be557600080fd5b9392505050565b60006020828403121562000bff57600080fd5b5035919050565b600060208083528351808285015260005b8181101562000c355785810183015185820160400152820162000c17565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811462000c6e57600080fd5b919050565b60008060006060848603121562000c8957600080fd5b8335925062000c9b6020850162000c56565b9150604084013590509250925092565b60006020828403121562000cbe57600080fd5b62000be58262000c56565b6000806040838503121562000cdd57600080fd5b62000ce88362000c56565b946020939093013593505050565b60008060006060848603121562000d0c57600080fd5b833567ffffffffffffffff81111562000d2457600080fd5b84016060818703121562000d3757600080fd5b925062000c9b6020850162000c56565b600181811c9082168062000d5c57607f821691505b60208210810362000d7d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121562000dad57600080fd5b825167ffffffffffffffff8082111562000dc657600080fd5b818501915085601f83011262000ddb57600080fd5b81518181111562000df05762000df062000d83565b8060051b604051601f19603f8301168101818110858211171562000e185762000e1862000d83565b60405291825284820192508381018501918883111562000e3757600080fd5b938501935b8285101562000e575784518452938501939285019262000e3c565b98975050505050505050565b6000808335601e1984360301811262000e7b57600080fd5b83018035915067ffffffffffffffff82111562000e9757600080fd5b60200191503681900382131562000ead57600080fd5b9250929050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60208152600062000ef360208301848662000eb4565b949350505050565b634e487b7160e01b600052603260045260246000fd5b604080825283519082018190526000906020906060840190828701845b8281101562000f555781516001600160a01b03168452928401929084019060010162000f2e565b5050508381038285015284518082528583019183019060005b8181101562000f8c5783518352928401929184019160010162000f6e565b5090979650505050505050565b601f82111562000fe757600081815260208120601f850160051c8101602086101562000fc25750805b601f850160051c820191505b8181101562000fe35782815560010162000fce565b5050505b505050565b67ffffffffffffffff83111562001007576200100762000d83565b6200101f8362001018835462000d47565b8362000f99565b6000601f8411600181146200105657600085156200103d5750838201355b600019600387901b1c1916600186901b178355620010b3565b600083815260209020601f19861690835b8281101562001089578685013582556020948501946001909201910162001067565b5086821015620010a75760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b8581526001600160a01b03858116602083015284166040820152608060608201819052600090620010ef908301848662000eb4565b97965050505050505056fe608060405234801561001057600080fd5b506040516107d53803806107d583398101604081905261002f916102eb565b6040805180820190915260038152622120a160e91b6020820152819061007660017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd610397565b60008051602061078e83398151915214610092576100926103b8565b732d3fc875de7fe7da43ad0afa0e7023c9b91d06b16100cb60008051602061078e83398151915260001b61015760201b6100dd1760201c565b80546001600160a01b0319166001600160a01b039290921691909117905560405161014e90732d3fc875de7fe7da43ad0afa0e7023c9b91d06b19061011690859085906024016103fa565b60408051601f19818403018152919052602080820180516001600160e01b031663266c45bb60e11b1790526100e061015a821b17901c565b50505050610457565b90565b606061017f83836040518060600160405280602781526020016107ae60279139610188565b90505b92915050565b6060600080856001600160a01b0316856040516101a59190610428565b600060405180830381855af49150503d80600081146101e0576040519150601f19603f3d011682016040523d82523d6000602084013e6101e5565b606091505b5090925090506101f786838387610201565b9695505050505050565b6060831561027557825160000361026e576001600160a01b0385163b61026e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064015b60405180910390fd5b508161027f565b61027f8383610287565b949350505050565b8151156102975781518083602001fd5b8060405162461bcd60e51b81526004016102659190610444565b634e487b7160e01b600052604160045260246000fd5b60005b838110156102e25781810151838201526020016102ca565b50506000910152565b6000602082840312156102fd57600080fd5b81516001600160401b038082111561031457600080fd5b818401915084601f83011261032857600080fd5b81518181111561033a5761033a6102b1565b604051601f8201601f19908116603f01168101908382118183101715610362576103626102b1565b8160405282815287602084870101111561037b57600080fd5b61038c8360208301602088016102c7565b979650505050505050565b8181038181111561018257634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052600160045260246000fd5b600081518084526103e68160208601602086016102c7565b601f01601f19169290920160200192915050565b60408152600061040d60408301856103ce565b828103602084015261041f81856103ce565b95945050505050565b6000825161043a8184602087016102c7565b9190910192915050565b60208152600061017f60208301846103ce565b610328806104666000396000f3fe6080604052600436106100225760003560e01c80635c60da1b1461003957610031565b366100315761002f61006a565b005b61002f61006a565b34801561004557600080fd5b5061004e6100a5565b6040516001600160a01b03909116815260200160405180910390f35b6100a361009e7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b61010c565b565b60006100d87f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b90565b606061010583836040518060600160405280602781526020016102cc60279139610130565b9392505050565b3660008037600080366000845af43d6000803e80801561012b573d6000f35b3d6000fd5b6060600080856001600160a01b03168560405161014d919061027c565b600060405180830381855af49150503d8060008114610188576040519150601f19603f3d011682016040523d82523d6000602084013e61018d565b606091505b509150915061019e868383876101a8565b9695505050505050565b6060831561021c578251600003610215576001600160a01b0385163b6102155760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064015b60405180910390fd5b5081610226565b610226838361022e565b949350505050565b81511561023e5781518083602001fd5b8060405162461bcd60e51b815260040161020c9190610298565b60005b8381101561027357818101518382015260200161025b565b50506000910152565b6000825161028e818460208701610258565b9190910192915050565b60208152600082518060208401526102b7816040850160208701610258565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212209d870363402038cfb39a2497780125330f3abf6ced1aba4f9ea87d84de900ce064736f6c63430008110033360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220f672f6e86f537a1d84774ce107d043bf15ef8d915640531cb1cede59a20ad4c564736f6c63430008110033
Deployed Bytecode
0x60806040523480156200001157600080fd5b5060043610620000b75760003560e01c80638da5cb5b116200007a5780638da5cb5b14620001765780639c32a39b1462000188578063b2cc44d5146200019a578063e9dc637514620001b1578063f2fde38b14620001c8578063f9caec7f14620001df57600080fd5b806301ffc9a714620000bc57806346bef80e14620000e857806361890d7b146200010e5780636b77898c1462000127578063715018a6146200016c575b600080fd5b620000d3620000cd36600462000bb9565b620001f6565b60405190151581526020015b60405180910390f35b620000ff620000f936600462000bec565b6200022e565b604051620000df919062000c06565b620001256200011f36600462000c73565b620002ee565b005b620001536200013836600462000bec565b6000908152600260205260409020546001600160a01b031690565b6040516001600160a01b039091168152602001620000df565b62000125620004cb565b6000546001600160a01b031662000153565b6001546001600160a01b031662000153565b62000125620001ab36600462000cab565b620004e3565b620000ff620001c236600462000cc9565b62000576565b62000125620001d936600462000cab565b6200062b565b62000125620001f036600462000cf6565b620006aa565b60006001600160e01b0319821663e9dc637560e01b14806200022857506001600160e01b031982166301ffc9a760e01b145b92915050565b6000818152600260209081526040808320546001600160a01b0316835260039091529020805460609190620002639062000d47565b80601f0160208091040260200160405190810160405280929190818152602001828054620002919062000d47565b8015620002e25780601f10620002b657610100808354040283529160200191620002e2565b820191906000526020600020905b815481529060010190602001808311620002c457829003601f168201915b50505050509050919050565b6001546001600160a01b031633146200036a5760405162461bcd60e51b815260206004820152603360248201527f426162796c6f6e45646974696f6e73457874656e73696f6e3a204f6e6c79204260448201527218589e5b1bdb90dbdc994818d85b881b5a5b9d606a1b60648201526084015b60405180910390fd5b6000838152600260205260409020546001600160a01b031680620003f75760405162461bcd60e51b815260206004820152603f60248201527f426162796c6f6e45646974696f6e73457874656e73696f6e3a2045646974696f60448201527f6e2073686f756c6420657869737420666f722074686973206c697374696e6700606482015260840162000361565b60405163e00aab4b60e01b81526001600160a01b03848116600483015261ffff8416602483015282169063e00aab4b906044016000604051808303816000875af11580156200044a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000474919081019062000d99565b50604080518581526001600160a01b0383811660208301528516818301526060810184905290517ff3e8a3bb42fd3b757a3024ab78da41b4a78e0a212ad659b853013b3774511d2c9181900360800190a150505050565b620004d562000aff565b620004e1600062000b5b565b565b620004ed62000aff565b6001600160a01b038116620005545760405162461bcd60e51b815260206004820152602660248201527f426162796c6f6e45646974696f6e73457874656e73696f6e3a205a65726f206160448201526564647265737360d01b606482015260840162000361565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821660009081526003602052604090208054606091906200059f9062000d47565b80601f0160208091040260200160405190810160405280929190818152602001828054620005cd9062000d47565b80156200061e5780601f10620005f2576101008083540402835291602001916200061e565b820191906000526020600020905b8154815290600101906020018083116200060057829003601f168201915b5050505050905092915050565b6200063562000aff565b6001600160a01b0381166200069c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000361565b620006a78162000b5b565b50565b6001546001600160a01b031633146200072c5760405162461bcd60e51b815260206004820152603760248201527f426162796c6f6e45646974696f6e73457874656e73696f6e3a204f6e6c79204260448201527f6162796c6f6e436f72652063616e207265676973746572000000000000000000606482015260840162000361565b6000818152600260205260409020546001600160a01b031615620007c75760405162461bcd60e51b815260206004820152604560248201527f426162796c6f6e45646974696f6e73457874656e73696f6e3a2045646974696f60448201527f6e20616c7265616479207265676973746572656420666f722074686973206c696064820152647374696e6760d81b608482015260a40162000361565b6103e883351115620008355760405162461bcd60e51b815260206004820152603060248201527f426162796c6f6e45646974696f6e73457874656e73696f6e3a20526f79616c7460448201526f0d2cae64084a0a640e8dede40d0d2ced60831b606482015260840162000361565b600062000846602085018562000e63565b604051620008549062000bab565b6200086192919062000edd565b604051809103906000f0801580156200087e573d6000803e3d6000fd5b5060408051600180825281830190925291925060009190602080830190803683370190505090508381600081518110620008bc57620008bc62000efb565b6001600160a01b03929092166020928302919091019091015260408051600180825281830190925260009181602001602082028036833701905050905085600001358160008151811062000914576200091462000efb565b6020908102919091010152604051631996e8d760e11b81526001600160a01b0384169063332dd1ae906200094f908590859060040162000f11565b600060405180830381600087803b1580156200096a57600080fd5b505af11580156200097f573d6000803e3d6000fd5b505060408051633071a0f960e01b81523060048201526024810191909152600060448201526001600160a01b0386169250633071a0f99150606401600060405180830381600087803b158015620009d557600080fd5b505af1158015620009ea573d6000803e3d6000fd5b505060405163f2fde38b60e01b81526001600160a01b0388811660048301528616925063f2fde38b9150602401600060405180830381600087803b15801562000a3257600080fd5b505af115801562000a47573d6000803e3d6000fd5b5050506000858152600260205260409081902080546001600160a01b0319166001600160a01b03871617905562000a82915087018762000e63565b6001600160a01b03851660009081526003602052604090209162000aa891908362000fec565b507f451b0648e6417a9af38a17c425e06ce3518f387af6d376d38e88d8615af9f4f584848762000adc60408b018b62000e63565b60405162000aef959493929190620010ba565b60405180910390a1505050505050565b6000546001600160a01b03163314620004e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000361565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6107d580620010fb83390190565b60006020828403121562000bcc57600080fd5b81356001600160e01b03198116811462000be557600080fd5b9392505050565b60006020828403121562000bff57600080fd5b5035919050565b600060208083528351808285015260005b8181101562000c355785810183015185820160400152820162000c17565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811462000c6e57600080fd5b919050565b60008060006060848603121562000c8957600080fd5b8335925062000c9b6020850162000c56565b9150604084013590509250925092565b60006020828403121562000cbe57600080fd5b62000be58262000c56565b6000806040838503121562000cdd57600080fd5b62000ce88362000c56565b946020939093013593505050565b60008060006060848603121562000d0c57600080fd5b833567ffffffffffffffff81111562000d2457600080fd5b84016060818703121562000d3757600080fd5b925062000c9b6020850162000c56565b600181811c9082168062000d5c57607f821691505b60208210810362000d7d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121562000dad57600080fd5b825167ffffffffffffffff8082111562000dc657600080fd5b818501915085601f83011262000ddb57600080fd5b81518181111562000df05762000df062000d83565b8060051b604051601f19603f8301168101818110858211171562000e185762000e1862000d83565b60405291825284820192508381018501918883111562000e3757600080fd5b938501935b8285101562000e575784518452938501939285019262000e3c565b98975050505050505050565b6000808335601e1984360301811262000e7b57600080fd5b83018035915067ffffffffffffffff82111562000e9757600080fd5b60200191503681900382131562000ead57600080fd5b9250929050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60208152600062000ef360208301848662000eb4565b949350505050565b634e487b7160e01b600052603260045260246000fd5b604080825283519082018190526000906020906060840190828701845b8281101562000f555781516001600160a01b03168452928401929084019060010162000f2e565b5050508381038285015284518082528583019183019060005b8181101562000f8c5783518352928401929184019160010162000f6e565b5090979650505050505050565b601f82111562000fe757600081815260208120601f850160051c8101602086101562000fc25750805b601f850160051c820191505b8181101562000fe35782815560010162000fce565b5050505b505050565b67ffffffffffffffff83111562001007576200100762000d83565b6200101f8362001018835462000d47565b8362000f99565b6000601f8411600181146200105657600085156200103d5750838201355b600019600387901b1c1916600186901b178355620010b3565b600083815260209020601f19861690835b8281101562001089578685013582556020948501946001909201910162001067565b5086821015620010a75760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b8581526001600160a01b03858116602083015284166040820152608060608201819052600090620010ef908301848662000eb4565b97965050505050505056fe608060405234801561001057600080fd5b506040516107d53803806107d583398101604081905261002f916102eb565b6040805180820190915260038152622120a160e91b6020820152819061007660017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd610397565b60008051602061078e83398151915214610092576100926103b8565b732d3fc875de7fe7da43ad0afa0e7023c9b91d06b16100cb60008051602061078e83398151915260001b61015760201b6100dd1760201c565b80546001600160a01b0319166001600160a01b039290921691909117905560405161014e90732d3fc875de7fe7da43ad0afa0e7023c9b91d06b19061011690859085906024016103fa565b60408051601f19818403018152919052602080820180516001600160e01b031663266c45bb60e11b1790526100e061015a821b17901c565b50505050610457565b90565b606061017f83836040518060600160405280602781526020016107ae60279139610188565b90505b92915050565b6060600080856001600160a01b0316856040516101a59190610428565b600060405180830381855af49150503d80600081146101e0576040519150601f19603f3d011682016040523d82523d6000602084013e6101e5565b606091505b5090925090506101f786838387610201565b9695505050505050565b6060831561027557825160000361026e576001600160a01b0385163b61026e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064015b60405180910390fd5b508161027f565b61027f8383610287565b949350505050565b8151156102975781518083602001fd5b8060405162461bcd60e51b81526004016102659190610444565b634e487b7160e01b600052604160045260246000fd5b60005b838110156102e25781810151838201526020016102ca565b50506000910152565b6000602082840312156102fd57600080fd5b81516001600160401b038082111561031457600080fd5b818401915084601f83011261032857600080fd5b81518181111561033a5761033a6102b1565b604051601f8201601f19908116603f01168101908382118183101715610362576103626102b1565b8160405282815287602084870101111561037b57600080fd5b61038c8360208301602088016102c7565b979650505050505050565b8181038181111561018257634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052600160045260246000fd5b600081518084526103e68160208601602086016102c7565b601f01601f19169290920160200192915050565b60408152600061040d60408301856103ce565b828103602084015261041f81856103ce565b95945050505050565b6000825161043a8184602087016102c7565b9190910192915050565b60208152600061017f60208301846103ce565b610328806104666000396000f3fe6080604052600436106100225760003560e01c80635c60da1b1461003957610031565b366100315761002f61006a565b005b61002f61006a565b34801561004557600080fd5b5061004e6100a5565b6040516001600160a01b03909116815260200160405180910390f35b6100a361009e7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b61010c565b565b60006100d87f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b90565b606061010583836040518060600160405280602781526020016102cc60279139610130565b9392505050565b3660008037600080366000845af43d6000803e80801561012b573d6000f35b3d6000fd5b6060600080856001600160a01b03168560405161014d919061027c565b600060405180830381855af49150503d8060008114610188576040519150601f19603f3d011682016040523d82523d6000602084013e61018d565b606091505b509150915061019e868383876101a8565b9695505050505050565b6060831561021c578251600003610215576001600160a01b0385163b6102155760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064015b60405180910390fd5b5081610226565b610226838361022e565b949350505050565b81511561023e5781518083602001fd5b8060405162461bcd60e51b815260040161020c9190610298565b60005b8381101561027357818101518382015260200161025b565b50506000910152565b6000825161028e818460208701610258565b9190910192915050565b60208152600082518060208401526102b7816040850160208701610258565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212209d870363402038cfb39a2497780125330f3abf6ced1aba4f9ea87d84de900ce064736f6c63430008110033360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220f672f6e86f537a1d84774ce107d043bf15ef8d915640531cb1cede59a20ad4c564736f6c63430008110033
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.