git.delta.rocks / unique-network / refs/commits / 088ceb16caa8

difftreelog

chore regenerate stubs

Yaroslav Bolyukin2022-10-14parent: #6bf51e4.patch.diff
in: master

4 files changed

modifiedpallets/unique/src/eth/stubs/CollectionHelpers.rawdiffbeforeafterboth

binary blob — no preview

modifiedpallets/unique/src/eth/stubs/CollectionHelpers.soldiffbeforeafterboth
23}23}
2424
25/// @title Contract, which allows users to operate with collections25/// @title Contract, which allows users to operate with collections
26/// @dev the ERC-165 identifier for this interface is 0x542f507926/// @dev the ERC-165 identifier for this interface is 0x58918631
27contract CollectionHelpers is Dummy, ERC165, CollectionHelpersEvents {27contract CollectionHelpers is Dummy, ERC165, CollectionHelpersEvents {
28 /// Create an NFT collection28 /// Create an NFT collection
29 /// @param name Name of the collection29 /// @param name Name of the collection
65 return 0x0000000000000000000000000000000000000000;65 return 0x0000000000000000000000000000000000000000;
66 }66 }
67
68 /// @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 baseUri
75 ) public payable returns (address) {
76 require(false, stub_error);
77 name;
78 description;
79 tokenPrefix;
80 baseUri;
81 dummy = 0;
82 return 0x0000000000000000000000000000000000000000;
83 }
8467
85 /// @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 }
99
100 /// @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 baseUri
107 ) public payable returns (address) {
108 require(false, stub_error);
109 name;
110 description;
111 tokenPrefix;
112 baseUri;
113 dummy = 0;
114 return 0x0000000000000000000000000000000000000000;
115 }
11682
117 /// @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)
modifiedtests/src/eth/api/CollectionHelpers.soldiffbeforeafterboth
18}18}
1919
20/// @title Contract, which allows users to operate with collections20/// @title Contract, which allows users to operate with collections
21/// @dev the ERC-165 identifier for this interface is 0x542f507921/// @dev the ERC-165 identifier for this interface is 0x58918631
22interface CollectionHelpers is Dummy, ERC165, CollectionHelpersEvents {22interface CollectionHelpers is Dummy, ERC165, CollectionHelpersEvents {
23 /// Create an NFT collection23 /// Create an NFT collection
24 /// @param name Name of the collection24 /// @param name Name of the collection
46 string memory tokenPrefix46 string memory tokenPrefix
47 ) external payable returns (address);47 ) external payable returns (address);
48
49 /// @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 baseUri
56 ) external payable returns (address);
5748
58 /// @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 tokenPrefix
64 ) external payable returns (address);55 ) external payable returns (address);
65
66 /// @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 baseUri
73 ) external payable returns (address);
7456
75 /// @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)
modifiedtests/src/eth/collectionHelpersAbi.jsondiffbeforeafterboth
25 "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" },