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

difftreelog

source

tests/src/eth/api/CollectionHelper.sol685 Bsourcehistory
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// Selector: 56c215c516interface CollectionHelper is Dummy, ERC165 {17	// Selector: create721Collection(string,string,string) 951c015118	function create721Collection(19		string memory name,20		string memory description,21		string memory tokenPrefix22	) external view returns (address);2324	// Selector: isCollectionExist(address) c3de149425	function isCollectionExist(address collectionAddress)26		external27		view28		returns (bool);29}