difftreelog
chore regenerate stubs
in: master
4 files changed
pallets/unique/src/eth/stubs/CollectionHelpers.rawdiffbeforeafterbothbinary blob — no preview
pallets/unique/src/eth/stubs/CollectionHelpers.soldiffbeforeafterboth23}23}242425/// @title Contract, which allows users to operate with collections25/// @title Contract, which allows users to operate with collections26/// @dev the ERC-165 identifier for this interface is 0x542f507926/// @dev the ERC-165 identifier for this interface is 0x5891863127contract CollectionHelpers is Dummy, ERC165, CollectionHelpersEvents {27contract CollectionHelpers is Dummy, ERC165, CollectionHelpersEvents {28 /// Create an NFT collection28 /// Create an NFT collection29 /// @param name Name of the collection29 /// @param name Name of the collection65 return 0x0000000000000000000000000000000000000000;65 return 0x0000000000000000000000000000000000000000;66 }66 }6768 /// @dev EVM selector for this function is: 0xa9e7b5c0,69 /// or in textual repr: createERC721MetadataCompatibleNFTCollection(string,string,string,string)70 function createERC721MetadataCompatibleNFTCollection(71 string memory name,72 string memory description,73 string memory tokenPrefix,74 string memory baseUri75 ) public payable returns (address) {76 require(false, stub_error);77 name;78 description;79 tokenPrefix;80 baseUri;81 dummy = 0;82 return 0x0000000000000000000000000000000000000000;83 }846785 /// @dev EVM selector for this function is: 0xab173450,68 /// @dev EVM selector for this function is: 0xab173450,86 /// or in textual repr: createRFTCollection(string,string,string)69 /// or in textual repr: createRFTCollection(string,string,string)97 return 0x0000000000000000000000000000000000000000;80 return 0x0000000000000000000000000000000000000000;98 }81 }99100 /// @dev EVM selector for this function is: 0xa5596388,101 /// or in textual repr: createERC721MetadataCompatibleRFTCollection(string,string,string,string)102 function createERC721MetadataCompatibleRFTCollection(103 string memory name,104 string memory description,105 string memory tokenPrefix,106 string memory baseUri107 ) public payable returns (address) {108 require(false, stub_error);109 name;110 description;111 tokenPrefix;112 baseUri;113 dummy = 0;114 return 0x0000000000000000000000000000000000000000;115 }11682117 /// @dev EVM selector for this function is: 0x85624258,83 /// @dev EVM selector for this function is: 0x85624258,118 /// or in textual repr: makeCollectionERC721MetadataCompatible(address,string)84 /// or in textual repr: makeCollectionERC721MetadataCompatible(address,string)tests/src/eth/api/CollectionHelpers.soldiffbeforeafterboth18}18}191920/// @title Contract, which allows users to operate with collections20/// @title Contract, which allows users to operate with collections21/// @dev the ERC-165 identifier for this interface is 0x542f507921/// @dev the ERC-165 identifier for this interface is 0x5891863122interface CollectionHelpers is Dummy, ERC165, CollectionHelpersEvents {22interface CollectionHelpers is Dummy, ERC165, CollectionHelpersEvents {23 /// Create an NFT collection23 /// Create an NFT collection24 /// @param name Name of the collection24 /// @param name Name of the collection46 string memory tokenPrefix46 string memory tokenPrefix47 ) external payable returns (address);47 ) external payable returns (address);4849 /// @dev EVM selector for this function is: 0xa9e7b5c0,50 /// or in textual repr: createERC721MetadataCompatibleNFTCollection(string,string,string,string)51 function createERC721MetadataCompatibleNFTCollection(52 string memory name,53 string memory description,54 string memory tokenPrefix,55 string memory baseUri56 ) external payable returns (address);574858 /// @dev EVM selector for this function is: 0xab173450,49 /// @dev EVM selector for this function is: 0xab173450,59 /// or in textual repr: createRFTCollection(string,string,string)50 /// or in textual repr: createRFTCollection(string,string,string)63 string memory tokenPrefix54 string memory tokenPrefix64 ) external payable returns (address);55 ) external payable returns (address);6566 /// @dev EVM selector for this function is: 0xa5596388,67 /// or in textual repr: createERC721MetadataCompatibleRFTCollection(string,string,string,string)68 function createERC721MetadataCompatibleRFTCollection(69 string memory name,70 string memory description,71 string memory tokenPrefix,72 string memory baseUri73 ) external payable returns (address);745675 /// @dev EVM selector for this function is: 0x85624258,57 /// @dev EVM selector for this function is: 0x85624258,76 /// or in textual repr: makeCollectionERC721MetadataCompatible(address,string)58 /// or in textual repr: makeCollectionERC721MetadataCompatible(address,string)tests/src/eth/collectionHelpersAbi.jsondiffbeforeafterboth25 "stateMutability": "view",25 "stateMutability": "view",26 "type": "function"26 "type": "function"27 },27 },28 {29 "inputs": [30 { "internalType": "string", "name": "name", "type": "string" },31 { "internalType": "string", "name": "description", "type": "string" },32 { "internalType": "string", "name": "tokenPrefix", "type": "string" },33 { "internalType": "string", "name": "baseUri", "type": "string" }34 ],35 "name": "createERC721MetadataCompatibleNFTCollection",36 "outputs": [{ "internalType": "address", "name": "", "type": "address" }],37 "stateMutability": "payable",38 "type": "function"39 },40 {41 "inputs": [42 { "internalType": "string", "name": "name", "type": "string" },43 { "internalType": "string", "name": "description", "type": "string" },44 { "internalType": "string", "name": "tokenPrefix", "type": "string" },45 { "internalType": "string", "name": "baseUri", "type": "string" }46 ],47 "name": "createERC721MetadataCompatibleRFTCollection",48 "outputs": [{ "internalType": "address", "name": "", "type": "address" }],49 "stateMutability": "payable",50 "type": "function"51 },52 {28 {53 "inputs": [29 "inputs": [54 { "internalType": "string", "name": "name", "type": "string" },30 { "internalType": "string", "name": "name", "type": "string" },