git.delta.rocks / unique-network / refs/commits / 4fbe604fc85f

difftreelog

updated evm stubs

Grigoriy Simonov2022-07-22parent: #898c743.patch.diff
in: master

4 files changed

modifiedpallets/refungible/src/stubs/UniqueRefungibleToken.rawdiffbeforeafterboth

binary blob — no preview

modifiedpallets/refungible/src/stubs/UniqueRefungibleToken.soldiffbeforeafterboth
43 }43 }
44}44}
45
46// Selector: 7d9262e6
47contract Collection is Dummy, ERC165 {
48 // Selector: setCollectionProperty(string,bytes) 2f073f66
49 function setCollectionProperty(string memory key, bytes memory value)
50 public
51 {
52 require(false, stub_error);
53 key;
54 value;
55 dummy = 0;
56 }
57
58 // Selector: deleteCollectionProperty(string) 7b7debce
59 function deleteCollectionProperty(string memory key) public {
60 require(false, stub_error);
61 key;
62 dummy = 0;
63 }
64
65 // Throws error if key not found
66 //
67 // Selector: collectionProperty(string) cf24fd6d
68 function collectionProperty(string memory key)
69 public
70 view
71 returns (bytes memory)
72 {
73 require(false, stub_error);
74 key;
75 dummy;
76 return hex"";
77 }
78
79 // Selector: setCollectionSponsor(address) 7623402e
80 function setCollectionSponsor(address sponsor) public {
81 require(false, stub_error);
82 sponsor;
83 dummy = 0;
84 }
85
86 // Selector: confirmCollectionSponsorship() 3c50e97a
87 function confirmCollectionSponsorship() public {
88 require(false, stub_error);
89 dummy = 0;
90 }
91
92 // Selector: setCollectionLimit(string,uint32) 6a3841db
93 function setCollectionLimit(string memory limit, uint32 value) public {
94 require(false, stub_error);
95 limit;
96 value;
97 dummy = 0;
98 }
99
100 // Selector: setCollectionLimit(string,bool) 993b7fba
101 function setCollectionLimit(string memory limit, bool value) public {
102 require(false, stub_error);
103 limit;
104 value;
105 dummy = 0;
106 }
107
108 // Selector: contractAddress() f6b4dfb4
109 function contractAddress() public view returns (address) {
110 require(false, stub_error);
111 dummy;
112 return 0x0000000000000000000000000000000000000000;
113 }
114
115 // Selector: addCollectionAdminSubstrate(uint256) 5730062b
116 function addCollectionAdminSubstrate(uint256 newAdmin) public view {
117 require(false, stub_error);
118 newAdmin;
119 dummy;
120 }
121
122 // Selector: removeCollectionAdminSubstrate(uint256) 4048fcf9
123 function removeCollectionAdminSubstrate(uint256 newAdmin) public view {
124 require(false, stub_error);
125 newAdmin;
126 dummy;
127 }
128
129 // Selector: addCollectionAdmin(address) 92e462c7
130 function addCollectionAdmin(address newAdmin) public view {
131 require(false, stub_error);
132 newAdmin;
133 dummy;
134 }
135
136 // Selector: removeCollectionAdmin(address) fafd7b42
137 function removeCollectionAdmin(address admin) public view {
138 require(false, stub_error);
139 admin;
140 dummy;
141 }
142
143 // Selector: setCollectionNesting(bool) 112d4586
144 function setCollectionNesting(bool enable) public {
145 require(false, stub_error);
146 enable;
147 dummy = 0;
148 }
149
150 // Selector: setCollectionNesting(bool,address[]) 64872396
151 function setCollectionNesting(bool enable, address[] memory collections)
152 public
153 {
154 require(false, stub_error);
155 enable;
156 collections;
157 dummy = 0;
158 }
159
160 // Selector: setCollectionAccess(uint8) 41835d4c
161 function setCollectionAccess(uint8 mode) public {
162 require(false, stub_error);
163 mode;
164 dummy = 0;
165 }
166
167 // Selector: addToCollectionAllowList(address) 67844fe6
168 function addToCollectionAllowList(address user) public view {
169 require(false, stub_error);
170 user;
171 dummy;
172 }
173
174 // Selector: removeFromCollectionAllowList(address) 85c51acb
175 function removeFromCollectionAllowList(address user) public view {
176 require(false, stub_error);
177 user;
178 dummy;
179 }
180
181 // Selector: setCollectionMintMode(bool) 00018e84
182 function setCollectionMintMode(bool mode) public {
183 require(false, stub_error);
184 mode;
185 dummy = 0;
186 }
187}
18845
189// Selector: 942e8b2246// Selector: 942e8b22
190contract ERC20 is Dummy, ERC165, ERC20Events {47contract ERC20 is Dummy, ERC165, ERC20Events {
270 }127 }
271}128}
272
273contract UniqueRFT is Dummy, ERC165, Collection {}
274129
275contract UniqueRefungibleToken is130contract UniqueRefungibleToken is Dummy, ERC165, ERC20, ERC20UniqueExtensions {}
276 Dummy,
277 ERC165,
278 ERC20,
279 ERC20UniqueExtensions,
280 UniqueRFT
281{}
282131
modifiedtests/src/eth/api/UniqueRefungibleToken.soldiffbeforeafterboth
--- a/tests/src/eth/api/UniqueRefungibleToken.sol
+++ b/tests/src/eth/api/UniqueRefungibleToken.sol
@@ -28,70 +28,6 @@
 	function burnFrom(address from, uint256 amount) external returns (bool);
 }
 
-// Selector: 7d9262e6
-interface Collection is Dummy, ERC165 {
-	// Selector: setCollectionProperty(string,bytes) 2f073f66
-	function setCollectionProperty(string memory key, bytes memory value)
-		external;
-
-	// Selector: deleteCollectionProperty(string) 7b7debce
-	function deleteCollectionProperty(string memory key) external;
-
-	// Throws error if key not found
-	//
-	// Selector: collectionProperty(string) cf24fd6d
-	function collectionProperty(string memory key)
-		external
-		view
-		returns (bytes memory);
-
-	// Selector: setCollectionSponsor(address) 7623402e
-	function setCollectionSponsor(address sponsor) external;
-
-	// Selector: confirmCollectionSponsorship() 3c50e97a
-	function confirmCollectionSponsorship() external;
-
-	// Selector: setCollectionLimit(string,uint32) 6a3841db
-	function setCollectionLimit(string memory limit, uint32 value) external;
-
-	// Selector: setCollectionLimit(string,bool) 993b7fba
-	function setCollectionLimit(string memory limit, bool value) external;
-
-	// Selector: contractAddress() f6b4dfb4
-	function contractAddress() external view returns (address);
-
-	// Selector: addCollectionAdminSubstrate(uint256) 5730062b
-	function addCollectionAdminSubstrate(uint256 newAdmin) external view;
-
-	// Selector: removeCollectionAdminSubstrate(uint256) 4048fcf9
-	function removeCollectionAdminSubstrate(uint256 newAdmin) external view;
-
-	// Selector: addCollectionAdmin(address) 92e462c7
-	function addCollectionAdmin(address newAdmin) external view;
-
-	// Selector: removeCollectionAdmin(address) fafd7b42
-	function removeCollectionAdmin(address admin) external view;
-
-	// Selector: setCollectionNesting(bool) 112d4586
-	function setCollectionNesting(bool enable) external;
-
-	// Selector: setCollectionNesting(bool,address[]) 64872396
-	function setCollectionNesting(bool enable, address[] memory collections)
-		external;
-
-	// Selector: setCollectionAccess(uint8) 41835d4c
-	function setCollectionAccess(uint8 mode) external;
-
-	// Selector: addToCollectionAllowList(address) 67844fe6
-	function addToCollectionAllowList(address user) external view;
-
-	// Selector: removeFromCollectionAllowList(address) 85c51acb
-	function removeFromCollectionAllowList(address user) external view;
-
-	// Selector: setCollectionMintMode(bool) 00018e84
-	function setCollectionMintMode(bool mode) external;
-}
-
 // Selector: 942e8b22
 interface ERC20 is Dummy, ERC165, ERC20Events {
 	// Selector: name() 06fdde03
@@ -128,13 +64,10 @@
 		view
 		returns (uint256);
 }
-
-interface UniqueRFT is Dummy, ERC165, Collection {}
 
 interface UniqueRefungibleToken is
 	Dummy,
 	ERC165,
 	ERC20,
-	ERC20UniqueExtensions,
-	UniqueRFT
+	ERC20UniqueExtensions
 {}
modifiedtests/src/eth/reFungibleTokenAbi.jsondiffbeforeafterboth
--- a/tests/src/eth/reFungibleTokenAbi.json
+++ b/tests/src/eth/reFungibleTokenAbi.json
@@ -51,33 +51,6 @@
   },
   {
     "inputs": [
-      { "internalType": "address", "name": "newAdmin", "type": "address" }
-    ],
-    "name": "addCollectionAdmin",
-    "outputs": [],
-    "stateMutability": "view",
-    "type": "function"
-  },
-  {
-    "inputs": [
-      { "internalType": "uint256", "name": "newAdmin", "type": "uint256" }
-    ],
-    "name": "addCollectionAdminSubstrate",
-    "outputs": [],
-    "stateMutability": "view",
-    "type": "function"
-  },
-  {
-    "inputs": [
-      { "internalType": "address", "name": "user", "type": "address" }
-    ],
-    "name": "addToCollectionAllowList",
-    "outputs": [],
-    "stateMutability": "view",
-    "type": "function"
-  },
-  {
-    "inputs": [
       { "internalType": "address", "name": "owner", "type": "address" },
       { "internalType": "address", "name": "spender", "type": "address" }
     ],
@@ -112,28 +85,7 @@
     ],
     "name": "burnFrom",
     "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
-    "stateMutability": "nonpayable",
-    "type": "function"
-  },
-  {
-    "inputs": [{ "internalType": "string", "name": "key", "type": "string" }],
-    "name": "collectionProperty",
-    "outputs": [{ "internalType": "bytes", "name": "", "type": "bytes" }],
-    "stateMutability": "view",
-    "type": "function"
-  },
-  {
-    "inputs": [],
-    "name": "confirmCollectionSponsorship",
-    "outputs": [],
     "stateMutability": "nonpayable",
-    "type": "function"
-  },
-  {
-    "inputs": [],
-    "name": "contractAddress",
-    "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
-    "stateMutability": "view",
     "type": "function"
   },
   {
@@ -141,121 +93,13 @@
     "name": "decimals",
     "outputs": [{ "internalType": "uint8", "name": "", "type": "uint8" }],
     "stateMutability": "view",
-    "type": "function"
-  },
-  {
-    "inputs": [{ "internalType": "string", "name": "key", "type": "string" }],
-    "name": "deleteCollectionProperty",
-    "outputs": [],
-    "stateMutability": "nonpayable",
     "type": "function"
   },
   {
     "inputs": [],
     "name": "name",
     "outputs": [{ "internalType": "string", "name": "", "type": "string" }],
-    "stateMutability": "view",
-    "type": "function"
-  },
-  {
-    "inputs": [
-      { "internalType": "address", "name": "admin", "type": "address" }
-    ],
-    "name": "removeCollectionAdmin",
-    "outputs": [],
-    "stateMutability": "view",
-    "type": "function"
-  },
-  {
-    "inputs": [
-      { "internalType": "uint256", "name": "newAdmin", "type": "uint256" }
-    ],
-    "name": "removeCollectionAdminSubstrate",
-    "outputs": [],
-    "stateMutability": "view",
-    "type": "function"
-  },
-  {
-    "inputs": [
-      { "internalType": "address", "name": "user", "type": "address" }
-    ],
-    "name": "removeFromCollectionAllowList",
-    "outputs": [],
     "stateMutability": "view",
-    "type": "function"
-  },
-  {
-    "inputs": [{ "internalType": "uint8", "name": "mode", "type": "uint8" }],
-    "name": "setCollectionAccess",
-    "outputs": [],
-    "stateMutability": "nonpayable",
-    "type": "function"
-  },
-  {
-    "inputs": [
-      { "internalType": "string", "name": "limit", "type": "string" },
-      { "internalType": "uint32", "name": "value", "type": "uint32" }
-    ],
-    "name": "setCollectionLimit",
-    "outputs": [],
-    "stateMutability": "nonpayable",
-    "type": "function"
-  },
-  {
-    "inputs": [
-      { "internalType": "string", "name": "limit", "type": "string" },
-      { "internalType": "bool", "name": "value", "type": "bool" }
-    ],
-    "name": "setCollectionLimit",
-    "outputs": [],
-    "stateMutability": "nonpayable",
-    "type": "function"
-  },
-  {
-    "inputs": [{ "internalType": "bool", "name": "mode", "type": "bool" }],
-    "name": "setCollectionMintMode",
-    "outputs": [],
-    "stateMutability": "nonpayable",
-    "type": "function"
-  },
-  {
-    "inputs": [{ "internalType": "bool", "name": "enable", "type": "bool" }],
-    "name": "setCollectionNesting",
-    "outputs": [],
-    "stateMutability": "nonpayable",
-    "type": "function"
-  },
-  {
-    "inputs": [
-      { "internalType": "bool", "name": "enable", "type": "bool" },
-      {
-        "internalType": "address[]",
-        "name": "collections",
-        "type": "address[]"
-      }
-    ],
-    "name": "setCollectionNesting",
-    "outputs": [],
-    "stateMutability": "nonpayable",
-    "type": "function"
-  },
-  {
-    "inputs": [
-      { "internalType": "string", "name": "key", "type": "string" },
-      { "internalType": "bytes", "name": "value", "type": "bytes" }
-    ],
-    "name": "setCollectionProperty",
-    "outputs": [],
-    "stateMutability": "nonpayable",
-    "type": "function"
-  },
-  {
-    "inputs": [
-      { "internalType": "address", "name": "sponsor", "type": "address" }
-    ],
-    "name": "setCollectionSponsor",
-    "outputs": [],
-    "stateMutability": "nonpayable",
     "type": "function"
   },
   {