git.delta.rocks / unique-network / refs/commits / b5e8dff6d126

difftreelog

source

tests/src/eth/api/CollectionHelpers.sol1.1 KiBsourcehistory
1// SPDX-License-Identifier: OTHER2// This code is automatically generated34pragma solidity >=0.8.0 <0.9.0;56// Common stubs holder7interface Dummy {89}1011interface ERC165 is Dummy {12	function supportsInterface(bytes4 interfaceID) external view returns (bool);13}1415// Inline16interface CollectionHelpersEvents {17	event CollectionCreated(18		address indexed owner,19		address indexed collectionId20	);21}2223// Selector: 86a0d92924interface CollectionHelpers is Dummy, ERC165, CollectionHelpersEvents {25	// Selector: createNonfungibleCollection(string,string,string) e34a684426	function createNonfungibleCollection(27		string memory name,28		string memory description,29		string memory tokenPrefix30	) external returns (address);3132	// Selector: createERC721MetadataCompatibleCollection(string,string,string,string) a634a5f933	function createERC721MetadataCompatibleCollection(34		string memory name,35		string memory description,36		string memory tokenPrefix,37		string memory baseUri38	) external returns (address);3940	// Selector: isCollectionExist(address) c3de149441	function isCollectionExist(address collectionAddress)42		external43		view44		returns (bool);45}