git.delta.rocks / unique-network / refs/commits / 73ad88465834

difftreelog

source

tests/src/eth/api/Collection.sol1.4 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// Selector: 037b69c816interface Collection 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: setSponsor(address,address) f01fba9325	function setSponsor(address collectionAddress, address sponsor)26		external27		view;2829	// Selector: confirmSponsorship(address) abc0000130	function confirmSponsorship(address collectionAddress) external view;3132	// Selector: setOffchainShema(address,string) d7dc2de333	function setOffchainShema(address collectionAddress, string memory shema)34		external35		view;3637	// Selector: setVariableOnChainSchema(address,string) 582691c338	function setVariableOnChainSchema(39		address collectionAddress,40		string memory variable41	) external view;4243	// Selector: setConstOnChainSchema(address,string) 921456e744	function setConstOnChainSchema(45		address collectionAddress,46		string memory constOnChain47	) external view;4849	// Selector: setLimits(address,string) d05638cc50	function setLimits(address collectionAddress, string memory limitsJson)51		external52		view;53}