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

difftreelog

source

tests/src/eth/api/UniqueFungible.sol6.8 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 ERC20Events {17	event Transfer(address indexed from, address indexed to, uint256 value);18	event Approval(19		address indexed owner,20		address indexed spender,21		uint256 value22	);23}2425// Selector: 79cc679026interface ERC20UniqueExtensions is Dummy, ERC165 {27	// Selector: burnFrom(address,uint256) 79cc679028	function burnFrom(address from, uint256 amount) external returns (bool);29}3031// Selector: 942e8b2232interface ERC20 is Dummy, ERC165, ERC20Events {33	// Selector: name() 06fdde0334	function name() external view returns (string memory);3536	// Selector: symbol() 95d89b4137	function symbol() external view returns (string memory);3839	// Selector: totalSupply() 18160ddd40	function totalSupply() external view returns (uint256);4142	// Selector: decimals() 313ce56743	function decimals() external view returns (uint8);4445	// Selector: balanceOf(address) 70a0823146	function balanceOf(address owner) external view returns (uint256);4748	// Selector: transfer(address,uint256) a9059cbb49	function transfer(address to, uint256 amount) external returns (bool);5051	// Selector: transferFrom(address,address,uint256) 23b872dd52	function transferFrom(53		address from,54		address to,55		uint256 amount56	) external returns (bool);5758	// Selector: approve(address,uint256) 095ea7b359	function approve(address spender, uint256 amount) external returns (bool);6061	// Selector: allowance(address,address) dd62ed3e62	function allowance(address owner, address spender)63		external64		view65		returns (uint256);66}6768// Selector: aa7d570d69interface Collection is Dummy, ERC165 {70	// Set collection property.71	//72	// @param key Property key.73	// @param value Propery value.74	//75	// Selector: setCollectionProperty(string,bytes) 2f073f6676	function setCollectionProperty(string memory key, bytes memory value)77		external;7879	// Delete collection property.80	//81	// @param key Property key.82	//83	// Selector: deleteCollectionProperty(string) 7b7debce84	function deleteCollectionProperty(string memory key) external;8586	// Get collection property.87	//88	// @dev Throws error if key not found.89	//90	// @param key Property key.91	// @return bytes The property corresponding to the key.92	//93	// Selector: collectionProperty(string) cf24fd6d94	function collectionProperty(string memory key)95		external96		view97		returns (bytes memory);9899	// Set the sponsor of the collection.100	//101	// @dev In order for sponsorship to work, it must be confirmed on behalf of the sponsor.102	//103	// @param sponsor Address of the sponsor from whose account funds will be debited for operations with the contract.104	//105	// Selector: setCollectionSponsor(address) 7623402e106	function setCollectionSponsor(address sponsor) external;107108	// Collection sponsorship confirmation.109	//110	// @dev After setting the sponsor for the collection, it must be confirmed with this function.111	//112	// Selector: confirmCollectionSponsorship() 3c50e97a113	function confirmCollectionSponsorship() external;114115	// Set limits for the collection.116	// @dev Throws error if limit not found.117	// @param limit Name of the limit. Valid names:118	// 	"accountTokenOwnershipLimit",119	// 	"sponsoredDataSize",120	// 	"sponsoredDataRateLimit",121	// 	"tokenLimit",122	// 	"sponsorTransferTimeout",123	// 	"sponsorApproveTimeout"124	// @param value Value of the limit.125	//126	// Selector: setCollectionLimit(string,uint32) 6a3841db127	function setCollectionLimit(string memory limit, uint32 value) external;128129	// Set limits for the collection.130	// @dev Throws error if limit not found.131	// @param limit Name of the limit. Valid names:132	// 	"ownerCanTransfer",133	// 	"ownerCanDestroy",134	// 	"transfersEnabled"135	// @param value Value of the limit.136	//137	// Selector: setCollectionLimit(string,bool) 993b7fba138	function setCollectionLimit(string memory limit, bool value) external;139140	// Get contract address.141	//142	// Selector: contractAddress() f6b4dfb4143	function contractAddress() external view returns (address);144145	// Add collection admin by substrate address.146	// @param new_admin Substrate administrator address.147	//148	// Selector: addCollectionAdminSubstrate(uint256) 5730062b149	function addCollectionAdminSubstrate(uint256 newAdmin) external;150151	// Remove collection admin by substrate address.152	// @param admin Substrate administrator address.153	//154	// Selector: removeCollectionAdminSubstrate(uint256) 4048fcf9155	function removeCollectionAdminSubstrate(uint256 admin) external;156157	// Add collection admin.158	// @param new_admin Address of the added administrator.159	//160	// Selector: addCollectionAdmin(address) 92e462c7161	function addCollectionAdmin(address newAdmin) external;162163	// Remove collection admin.164	//165	// @param new_admin Address of the removed administrator.166	//167	// Selector: removeCollectionAdmin(address) fafd7b42168	function removeCollectionAdmin(address admin) external;169170	// Toggle accessibility of collection nesting.171	//172	// @param enable If "true" degenerates to nesting: 'Owner' else to nesting: 'Disabled'173	//174	// Selector: setCollectionNesting(bool) 112d4586175	function setCollectionNesting(bool enable) external;176177	// Toggle accessibility of collection nesting.178	//179	// @param enable If "true" degenerates to nesting: {OwnerRestricted: [1, 2, 3]} else to nesting: 'Disabled'180	// @param collections Addresses of collections that will be available for nesting.181	//182	// Selector: setCollectionNesting(bool,address[]) 64872396183	function setCollectionNesting(bool enable, address[] memory collections)184		external;185186	// Set the collection access method.187	// @param mode Access mode188	// 	0 for Normal189	// 	1 for AllowList190	//191	// Selector: setCollectionAccess(uint8) 41835d4c192	function setCollectionAccess(uint8 mode) external;193194	// Add the user to the allowed list.195	//196	// @param user Address of a trusted user.197	//198	// Selector: addToCollectionAllowList(address) 67844fe6199	function addToCollectionAllowList(address user) external;200201	// Remove the user from the allowed list.202	//203	// @param user Address of a removed user.204	//205	// Selector: removeFromCollectionAllowList(address) 85c51acb206	function removeFromCollectionAllowList(address user) external;207208	// Switch permission for minting.209	//210	// @param mode Enable if "true".211	//212	// Selector: setCollectionMintMode(bool) 00018e84213	function setCollectionMintMode(bool mode) external;214215	// Check that account is the owner or admin of the collection216	//217	// @return "true" if account is the owner or admin218	//219	// Selector: verifyOwnerOrAdmin() 04a46053220	function verifyOwnerOrAdmin() external returns (bool);221222	// Selector: uniqueCollectionType() d34b55b8223	function uniqueCollectionType() external returns (string memory);224}225226interface UniqueFungible is227	Dummy,228	ERC165,229	ERC20,230	ERC20UniqueExtensions,231	Collection232{}