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

difftreelog

source

tests/src/eth/api/CollectionHelpers.sol1.3 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: c20653fc24interface 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: createRefungibleCollection(string,string,string) 44a68ad541	function createRefungibleCollection(42		string memory name,43		string memory description,44		string memory tokenPrefix45	) external view returns (address);4647	// Selector: isCollectionExist(address) c3de149448	function isCollectionExist(address collectionAddress)49		external50		view51		returns (bool);52}