git.delta.rocks / unique-network / refs/commits / 2ba119d71c40

difftreelog

misc: update stubs

Trubnikov Sergey2022-08-25parent: #41b5a1d.patch.diff
in: master

12 files changed

modifiedpallets/evm-contract-helpers/src/stubs/ContractHelpers.soldiffbeforeafterboth
22}22}
2323
24<<<<<<< HEAD24<<<<<<< HEAD
25<<<<<<< HEAD
25/// @title Magic contract, which allows users to reconfigure other contracts26/// @title Magic contract, which allows users to reconfigure other contracts
26/// @dev the ERC-165 identifier for this interface is 0xd77fab7027/// @dev the ERC-165 identifier for this interface is 0xd77fab70
27=======28=======
31// Selector: 06fc42e932// Selector: 06fc42e9
32>>>>>>> path: add stubs33>>>>>>> path: add stubs
33>>>>>>> path: add stubs34>>>>>>> path: add stubs
35=======
36// Selector: 6073d917
37>>>>>>> misc: update stubs
34contract ContractHelpers is Dummy, ERC165 {38contract ContractHelpers is Dummy, ERC165 {
35 /// Get user, which deployed specified contract39 /// Get user, which deployed specified contract
36 /// @dev May return zero address in case if contract is deployed40 /// @dev May return zero address in case if contract is deployed
53 }57 }
5458
55<<<<<<< HEAD59<<<<<<< HEAD
60<<<<<<< HEAD
56 /// Set sponsor.61 /// Set sponsor.
57 /// @param contractAddress Contract for which a sponsor is being established.62 /// @param contractAddress Contract for which a sponsor is being established.
58 /// @param sponsor User address who set as pending sponsor.63 /// @param sponsor User address who set as pending sponsor.
59 /// @dev EVM selector for this function is: 0xf01fba93,64 /// @dev EVM selector for this function is: 0xf01fba93,
60 /// or in textual repr: setSponsor(address,address)65 /// or in textual repr: setSponsor(address,address)
61=======66=======
62<<<<<<< HEAD67<<<<<<< HEAD
68=======
69>>>>>>> misc: update stubs
63 // Set sponsor.70 // Set sponsor.
64 //71 //
65 // @param contract_address Contract for which a sponsor is being established.72 // @param contract_address Contract for which a sponsor is being established.
66 // @param sponsor User address who set as pending sponsor.73 // @param sponsor User address who set as pending sponsor.
67 //74 //
68=======
69>>>>>>> path: add stubs
70 // Selector: setSponsor(address,address) f01fba9375 // Selector: setSponsor(address,address) f01fba93
71>>>>>>> path: add stubs76>>>>>>> path: add stubs
72 function setSponsor(address contractAddress, address sponsor) public {77 function setSponsor(address contractAddress, address sponsor) public {
77 }82 }
7883
79<<<<<<< HEAD84<<<<<<< HEAD
85<<<<<<< HEAD
80 /// Set contract as self sponsored.86 /// Set contract as self sponsored.
81 ///87 ///
82 /// @param contractAddress Contract for which a self sponsoring is being enabled.88 /// @param contractAddress Contract for which a self sponsoring is being enabled.
83 /// @dev EVM selector for this function is: 0x89f7d9ae,89 /// @dev EVM selector for this function is: 0x89f7d9ae,
84 /// or in textual repr: selfSponsoredEnable(address)90 /// or in textual repr: selfSponsoredEnable(address)
85=======91=======
86<<<<<<< HEAD92<<<<<<< HEAD
93=======
94>>>>>>> misc: update stubs
87 // Set contract as self sponsored.95 // Set contract as self sponsored.
88 //96 //
89 // @param contract_address Contract for which a self sponsoring is being enabled.97 // @param contract_address Contract for which a self sponsoring is being enabled.
90 //98 //
91 // Selector: selfSponsoredEnable(address) 89f7d9ae99 // Selector: selfSponsoredEnable(address) 89f7d9ae
92>>>>>>> path: add stubs100>>>>>>> path: add stubs
93 function selfSponsoredEnable(address contractAddress) public {101 function selfSponsoredEnable(address contractAddress) public {
94=======
95 // Selector: confirmSponsorship(address) abc00001
96 function confirmSponsorship(address contractAddress) public {
97>>>>>>> path: add stubs
98 require(false, stub_error);102 require(false, stub_error);
99 contractAddress;103 contractAddress;
100 dummy = 0;104 dummy = 0;
101 }105 }
102106
103<<<<<<< HEAD107<<<<<<< HEAD
108<<<<<<< HEAD
104 /// Remove sponsor.109 /// Remove sponsor.
105 ///110 ///
106 /// @param contractAddress Contract for which a sponsorship is being removed.111 /// @param contractAddress Contract for which a sponsorship is being removed.
107 /// @dev EVM selector for this function is: 0xef784250,112 /// @dev EVM selector for this function is: 0xef784250,
108 /// or in textual repr: removeSponsor(address)113 /// or in textual repr: removeSponsor(address)
109=======114=======
110<<<<<<< HEAD115<<<<<<< HEAD
116=======
117>>>>>>> misc: update stubs
111 // Remove sponsor.118 // Remove sponsor.
112 //119 //
113 // @param contract_address Contract for which a sponsorship is being removed.120 // @param contract_address Contract for which a sponsorship is being removed.
140 /// @dev EVM selector for this function is: 0x743fc745,147 /// @dev EVM selector for this function is: 0x743fc745,
141 /// or in textual repr: getSponsor(address)148 /// or in textual repr: getSponsor(address)
142 function getSponsor(address contractAddress)149 function getSponsor(address contractAddress)
143=======
144 // Selector: getSponsor(address) 743fc745
145 function getSponsor(address contractAddress)
146 public150 public
147 view151 view
148 returns (Tuple0 memory)152 returns (Tuple0 memory)
153 return Tuple0(0x0000000000000000000000000000000000000000, 0);157 return Tuple0(0x0000000000000000000000000000000000000000, 0);
154 }158 }
155159
156 // Selector: hasSponsor(address) 97418603
157 function hasSponsor(address contractAddress) public view returns (bool) {
158 require(false, stub_error);
159 contractAddress;
160 dummy;
161 return false;
162 }
163
164 // Selector: hasPendingSponsor(address) 39b9b242
165 function hasPendingSponsor(address contractAddress)
166>>>>>>> path: add stubs
167 public
168 view
169 returns (Tuple0 memory)
170 {
171 require(false, stub_error);
172 contractAddress;
173 dummy;
174 return Tuple0(0x0000000000000000000000000000000000000000, 0);
175 }
176
177 /// Check tat contract has confirmed sponsor.160 /// Check tat contract has confirmed sponsor.
178 ///161 ///
179 /// @param contractAddress The contract for which the presence of a confirmed sponsor is checked.162 /// @param contractAddress The contract for which the presence of a confirmed sponsor is checked.
188 }171 }
189172
190<<<<<<< HEAD173<<<<<<< HEAD
174<<<<<<< HEAD
191 /// Check tat contract has pending sponsor.175 /// Check tat contract has pending sponsor.
192 ///176 ///
193 /// @param contractAddress The contract for which the presence of a pending sponsor is checked.177 /// @param contractAddress The contract for which the presence of a pending sponsor is checked.
196 /// or in textual repr: hasPendingSponsor(address)180 /// or in textual repr: hasPendingSponsor(address)
197=======181=======
198<<<<<<< HEAD182<<<<<<< HEAD
183=======
184>>>>>>> misc: update stubs
199 // Check tat contract has pending sponsor.185 // Check tat contract has pending sponsor.
200 //186 //
201 // @param contract_address The contract for which the presence of a pending sponsor is checked.187 // @param contract_address The contract for which the presence of a pending sponsor is checked.
204 // Selector: hasPendingSponsor(address) 39b9b242190 // Selector: hasPendingSponsor(address) 39b9b242
205>>>>>>> path: add stubs191>>>>>>> path: add stubs
206 function hasPendingSponsor(address contractAddress)192 function hasPendingSponsor(address contractAddress)
207=======
208 // Selector: sponsoringEnabled(address) 6027dc61
209 function sponsoringEnabled(address contractAddress)
210>>>>>>> path: add stubs
211 public193 public
212 view194 view
213 returns (bool)195 returns (bool)
216 contractAddress;198 contractAddress;
217 dummy;199 dummy;
218 return false;200 return false;
219<<<<<<< HEAD
220 }201 }
221202
222 /// @dev EVM selector for this function is: 0x6027dc61,203 /// @dev EVM selector for this function is: 0x6027dc61,
230 contractAddress;211 contractAddress;
231 dummy;212 dummy;
232 return false;213 return false;
233=======
234>>>>>>> path: add stubs
235 }214 }
236215
237 /// @dev EVM selector for this function is: 0xfde8a560,216 /// @dev EVM selector for this function is: 0xfde8a560,
modifiedpallets/fungible/src/stubs/UniqueFungible.soldiffbeforeafterboth
45 );45 );
46}46}
4747
48<<<<<<< HEAD
49// Selector: 79cc679048// Selector: 79cc6790
50contract ERC20UniqueExtensions is Dummy, ERC165 {49contract ERC20UniqueExtensions is Dummy, ERC165 {
51 // Selector: burnFrom(address,uint256) 79cc679050 // Selector: burnFrom(address,uint256) 79cc6790
142 }141 }
143}142}
144143
144<<<<<<< HEAD
145// Selector: ffe4da23145// Selector: ffe4da23
146=======146=======
147// Selector: 765e2fae147// Selector: 765e2fae
148>>>>>>> misk: Update stubs148>>>>>>> misk: Update stubs
149>>>>>>> misk: Update stubs149>>>>>>> misk: Update stubs
150=======
151// Selector: e54be640
152>>>>>>> misc: update stubs
150contract Collection is Dummy, ERC165 {153contract Collection is Dummy, ERC165 {
151 /// Set collection property.154 /// Set collection property.
152 ///155 ///
modifiedpallets/nonfungible/src/stubs/UniqueNFT.soldiffbeforeafterboth
482}482}
483483
484<<<<<<< HEAD484<<<<<<< HEAD
485<<<<<<< HEAD
485/// @title Unique extensions for ERC721.486/// @title Unique extensions for ERC721.
486/// @dev the ERC-165 identifier for this interface is 0xd74d154f487/// @dev the ERC-165 identifier for this interface is 0xd74d154f
487=======488=======
488<<<<<<< HEAD489<<<<<<< HEAD
490=======
491>>>>>>> misc: update stubs
489// Selector: 780e9d63492// Selector: 780e9d63
490contract ERC721Enumerable is Dummy, ERC165 {493contract ERC721Enumerable is Dummy, ERC165 {
491 // @notice Enumerate valid NFTs494 // @notice Enumerate valid NFTs
607}610}
608611
609<<<<<<< HEAD612<<<<<<< HEAD
613<<<<<<< HEAD
610/// @dev anonymous struct614/// @dev anonymous struct
611struct Tuple8 {615struct Tuple8 {
612 uint256 field_0;616 uint256 field_0;
617=======621=======
618// Selector: 765e2fae622// Selector: 765e2fae
619>>>>>>> misk: Update stubs623>>>>>>> misk: Update stubs
624=======
625// Selector: e54be640
626>>>>>>> misc: update stubs
620contract Collection is Dummy, ERC165 {627contract Collection is Dummy, ERC165 {
621 // Set collection property.628 // Set collection property.
622 //629 //
modifiedpallets/refungible/src/stubs/UniqueRefungible.soldiffbeforeafterboth
482}482}
483483
484<<<<<<< HEAD484<<<<<<< HEAD
485<<<<<<< HEAD
485/// @title Unique extensions for ERC721.486/// @title Unique extensions for ERC721.
486/// @dev the ERC-165 identifier for this interface is 0x7c3bef89487/// @dev the ERC-165 identifier for this interface is 0x7c3bef89
487=======488=======
488<<<<<<< HEAD489<<<<<<< HEAD
490=======
491>>>>>>> misc: update stubs
489// Selector: 780e9d63492// Selector: 780e9d63
490contract ERC721Enumerable is Dummy, ERC165 {493contract ERC721Enumerable is Dummy, ERC165 {
491 // @notice Enumerate valid RFTs494 // @notice Enumerate valid RFTs
621}624}
622625
623<<<<<<< HEAD626<<<<<<< HEAD
627<<<<<<< HEAD
624/// @dev anonymous struct628/// @dev anonymous struct
625struct Tuple8 {629struct Tuple8 {
626 uint256 field_0;630 uint256 field_0;
631=======635=======
632// Selector: 765e2fae636// Selector: 765e2fae
633>>>>>>> misk: Update stubs637>>>>>>> misk: Update stubs
638=======
639// Selector: e54be640
640>>>>>>> misc: update stubs
634contract Collection is Dummy, ERC165 {641contract Collection is Dummy, ERC165 {
635 // Set collection property.642 // Set collection property.
636 //643 //
modifiedtests/src/eth/api/ContractHelpers.soldiffbeforeafterboth
13}13}
1414
15<<<<<<< HEAD15<<<<<<< HEAD
16<<<<<<< HEAD
16/// @title Magic contract, which allows users to reconfigure other contracts17/// @title Magic contract, which allows users to reconfigure other contracts
17/// @dev the ERC-165 identifier for this interface is 0xd77fab7018/// @dev the ERC-165 identifier for this interface is 0xd77fab70
18=======19=======
22// Selector: 06fc42e923// Selector: 06fc42e9
23>>>>>>> path: add stubs24>>>>>>> path: add stubs
24>>>>>>> path: add stubs25>>>>>>> path: add stubs
26=======
27// Selector: 6073d917
28>>>>>>> misc: update stubs
25interface ContractHelpers is Dummy, ERC165 {29interface ContractHelpers is Dummy, ERC165 {
26 /// Get user, which deployed specified contract30 /// Get user, which deployed specified contract
27 /// @dev May return zero address in case if contract is deployed31 /// @dev May return zero address in case if contract is deployed
38 returns (address);42 returns (address);
3943
40<<<<<<< HEAD44<<<<<<< HEAD
45<<<<<<< HEAD
41 /// Set sponsor.46 /// Set sponsor.
42 /// @param contractAddress Contract for which a sponsor is being established.47 /// @param contractAddress Contract for which a sponsor is being established.
43 /// @param sponsor User address who set as pending sponsor.48 /// @param sponsor User address who set as pending sponsor.
44 /// @dev EVM selector for this function is: 0xf01fba93,49 /// @dev EVM selector for this function is: 0xf01fba93,
45 /// or in textual repr: setSponsor(address,address)50 /// or in textual repr: setSponsor(address,address)
46=======51=======
47<<<<<<< HEAD52<<<<<<< HEAD
53=======
54>>>>>>> misc: update stubs
48 // Set sponsor.55 // Set sponsor.
49 //56 //
50 // @param contract_address Contract for which a sponsor is being established.57 // @param contract_address Contract for which a sponsor is being established.
90 // @param contract_address The contract for which a sponsor is requested.97 // @param contract_address The contract for which a sponsor is requested.
91 // @return Tuble with sponsor address and his substrate mirror. If there is no confirmed sponsor error "Contract has no sponsor" throw.98 // @return Tuble with sponsor address and his substrate mirror. If there is no confirmed sponsor error "Contract has no sponsor" throw.
92 //99 //
93=======
94 // Selector: setSponsor(address,address) f01fba93
95 function setSponsor(address contractAddress, address sponsor) external;
96
97 // Selector: confirmSponsorship(address) abc00001
98 function confirmSponsorship(address contractAddress) external;
99
100>>>>>>> path: add stubs
101 // Selector: getSponsor(address) 743fc745100 // Selector: getSponsor(address) 743fc745
102>>>>>>> path: add stubs101>>>>>>> path: add stubs
103 function getSponsor(address contractAddress)102 function getSponsor(address contractAddress)
106 returns (Tuple0 memory);105 returns (Tuple0 memory);
107106
108<<<<<<< HEAD107<<<<<<< HEAD
108<<<<<<< HEAD
109 /// Check tat contract has confirmed sponsor.109 /// Check tat contract has confirmed sponsor.
110 ///110 ///
111 /// @param contractAddress The contract for which the presence of a confirmed sponsor is checked.111 /// @param contractAddress The contract for which the presence of a confirmed sponsor is checked.
122 /// or in textual repr: hasPendingSponsor(address)122 /// or in textual repr: hasPendingSponsor(address)
123=======123=======
124<<<<<<< HEAD124<<<<<<< HEAD
125=======
126>>>>>>> misc: update stubs
125 // Check tat contract has confirmed sponsor.127 // Check tat contract has confirmed sponsor.
126 //128 //
127 // @param contract_address The contract for which the presence of a confirmed sponsor is checked.129 // @param contract_address The contract for which the presence of a confirmed sponsor is checked.
135 // @param contract_address The contract for which the presence of a pending sponsor is checked.137 // @param contract_address The contract for which the presence of a pending sponsor is checked.
136 // @return **true** if contract has pending sponsor.138 // @return **true** if contract has pending sponsor.
137 //139 //
138=======
139 // Selector: hasSponsor(address) 97418603
140 function hasSponsor(address contractAddress) external view returns (bool);
141
142>>>>>>> path: add stubs
143 // Selector: hasPendingSponsor(address) 39b9b242140 // Selector: hasPendingSponsor(address) 39b9b242
144>>>>>>> path: add stubs141>>>>>>> path: add stubs
145 function hasPendingSponsor(address contractAddress)142 function hasPendingSponsor(address contractAddress)
modifiedtests/src/eth/api/UniqueFungible.soldiffbeforeafterboth
36 );36 );
37}37}
3838
39<<<<<<< HEAD
40// Selector: 79cc679039// Selector: 79cc6790
41interface ERC20UniqueExtensions is Dummy, ERC165 {40interface ERC20UniqueExtensions is Dummy, ERC165 {
42 // Selector: burnFrom(address,uint256) 79cc679041 // Selector: burnFrom(address,uint256) 79cc6790
80 returns (uint256);79 returns (uint256);
81}80}
8281
82<<<<<<< HEAD
83// Selector: ffe4da2383// Selector: ffe4da23
84=======84=======
85// Selector: 765e2fae85// Selector: 765e2fae
86>>>>>>> misk: Update stubs86>>>>>>> misk: Update stubs
87>>>>>>> misk: Update stubs87>>>>>>> misk: Update stubs
88=======
89// Selector: e54be640
90>>>>>>> misc: update stubs
88interface Collection is Dummy, ERC165 {91interface Collection is Dummy, ERC165 {
89 /// Set collection property.92 /// Set collection property.
90 ///93 ///
modifiedtests/src/eth/api/UniqueNFT.soldiffbeforeafterboth
322}322}
323323
324<<<<<<< HEAD324<<<<<<< HEAD
325<<<<<<< HEAD
325/// @title Unique extensions for ERC721.326/// @title Unique extensions for ERC721.
326/// @dev the ERC-165 identifier for this interface is 0xd74d154f327/// @dev the ERC-165 identifier for this interface is 0xd74d154f
327=======328=======
328<<<<<<< HEAD329<<<<<<< HEAD
330=======
331>>>>>>> misc: update stubs
329// Selector: 780e9d63332// Selector: 780e9d63
330interface ERC721Enumerable is Dummy, ERC165 {333interface ERC721Enumerable is Dummy, ERC165 {
331 // @notice Enumerate valid NFTs334 // @notice Enumerate valid NFTs
403}406}
404407
405<<<<<<< HEAD408<<<<<<< HEAD
409<<<<<<< HEAD
406/// @dev anonymous struct410/// @dev anonymous struct
407struct Tuple8 {411struct Tuple8 {
408 uint256 field_0;412 uint256 field_0;
413=======417=======
414// Selector: 765e2fae418// Selector: 765e2fae
415>>>>>>> misk: Update stubs419>>>>>>> misk: Update stubs
420=======
421// Selector: e54be640
422>>>>>>> misc: update stubs
416interface Collection is Dummy, ERC165 {423interface Collection is Dummy, ERC165 {
417 // Set collection property.424 // Set collection property.
418 //425 //
modifiedtests/src/eth/api/UniqueRefungible.soldiffbeforeafterboth
322}322}
323323
324<<<<<<< HEAD324<<<<<<< HEAD
325<<<<<<< HEAD
325/// @title Unique extensions for ERC721.326/// @title Unique extensions for ERC721.
326/// @dev the ERC-165 identifier for this interface is 0x7c3bef89327/// @dev the ERC-165 identifier for this interface is 0x7c3bef89
327=======328=======
328<<<<<<< HEAD329<<<<<<< HEAD
330=======
331>>>>>>> misc: update stubs
329// Selector: 780e9d63332// Selector: 780e9d63
330interface ERC721Enumerable is Dummy, ERC165 {333interface ERC721Enumerable is Dummy, ERC165 {
331 // @notice Enumerate valid RFTs334 // @notice Enumerate valid RFTs
415}418}
416419
417<<<<<<< HEAD420<<<<<<< HEAD
421<<<<<<< HEAD
418/// @dev anonymous struct422/// @dev anonymous struct
419struct Tuple8 {423struct Tuple8 {
420 uint256 field_0;424 uint256 field_0;
425=======429=======
426// Selector: 765e2fae430// Selector: 765e2fae
427>>>>>>> misk: Update stubs431>>>>>>> misk: Update stubs
432=======
433// Selector: e54be640
434>>>>>>> misc: update stubs
428interface Collection is Dummy, ERC165 {435interface Collection is Dummy, ERC165 {
429 // Set collection property.436 // Set collection property.
430 //437 //
modifiedtests/src/eth/fungibleAbi.jsondiffbeforeafterboth
151 "type": "function"151 "type": "function"
152 },152 },
153 {153 {
154 "inputs": [
155 { "internalType": "address", "name": "user", "type": "address" }
156 ],
157 "name": "isOwnerOrAdmin",
158 "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
159 "stateMutability": "view",
160 "type": "function"
161 },
162 {
163 "inputs": [
164 { "internalType": "uint256", "name": "user", "type": "uint256" }
165 ],
166 "name": "isOwnerOrAdminSubstrate",
167 "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
168 "stateMutability": "view",
169 "type": "function"
170 },
171 {
172 "inputs": [],154 "inputs": [],
173 "name": "getCollectionSponsor",155 "name": "getCollectionSponsor",
174 "outputs": [156 "outputs": [
193 "type": "function"175 "type": "function"
194 },176 },
195 {177 {
178 "inputs": [
179 { "internalType": "address", "name": "user", "type": "address" }
180 ],
181 "name": "isOwnerOrAdmin",
182 "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
183 "stateMutability": "view",
184 "type": "function"
185 },
186 {
187 "inputs": [
188 { "internalType": "uint256", "name": "user", "type": "uint256" }
189 ],
190 "name": "isOwnerOrAdminSubstrate",
191 "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
192 "stateMutability": "view",
193 "type": "function"
194 },
195 {
196 "inputs": [],196 "inputs": [],
197 "name": "name",197 "name": "name",
198 "outputs": [{ "internalType": "string", "name": "", "type": "string" }],198 "outputs": [{ "internalType": "string", "name": "", "type": "string" }],
309 },309 },
310 {310 {
311 "inputs": [311 "inputs": [
312<<<<<<< HEAD312 { "internalType": "uint256", "name": "sponsor", "type": "uint256" }
313 ],
314 "name": "setCollectionSponsorSubstrate",
315 "outputs": [],
316 "stateMutability": "nonpayable",
317 "type": "function"
318 },
319 {
320 "inputs": [
313 { "internalType": "address", "name": "newOwner", "type": "address" }321 { "internalType": "address", "name": "newOwner", "type": "address" }
314 ],322 ],
315 "name": "setOwner",323 "name": "setOwner",
322 { "internalType": "uint256", "name": "newOwner", "type": "uint256" }330 { "internalType": "uint256", "name": "newOwner", "type": "uint256" }
323 ],331 ],
324 "name": "setOwnerSubstrate",332 "name": "setOwnerSubstrate",
325=======
326 { "internalType": "uint256", "name": "sponsor", "type": "uint256" }
327 ],
328 "name": "setCollectionSponsorSubstrate",
329>>>>>>> misk: Update stubs
330 "outputs": [],333 "outputs": [],
331 "stateMutability": "nonpayable",334 "stateMutability": "nonpayable",
332 "type": "function"335 "type": "function"
modifiedtests/src/eth/nonFungibleAbi.jsondiffbeforeafterboth
483 },483 },
484 {484 {
485 "inputs": [485 "inputs": [
486<<<<<<< HEAD486 { "internalType": "uint256", "name": "sponsor", "type": "uint256" }
487 ],
488 "name": "setCollectionSponsorSubstrate",
489 "outputs": [],
490 "stateMutability": "nonpayable",
491 "type": "function"
492 },
493 {
494 "inputs": [
487 { "internalType": "address", "name": "newOwner", "type": "address" }495 { "internalType": "address", "name": "newOwner", "type": "address" }
488 ],496 ],
489 "name": "setOwner",497 "name": "setOwner",
496 { "internalType": "uint256", "name": "newOwner", "type": "uint256" }504 { "internalType": "uint256", "name": "newOwner", "type": "uint256" }
497 ],505 ],
498 "name": "setOwnerSubstrate",506 "name": "setOwnerSubstrate",
499=======
500 { "internalType": "uint256", "name": "sponsor", "type": "uint256" }
501 ],
502 "name": "setCollectionSponsorSubstrate",
503>>>>>>> misk: Update stubs
504 "outputs": [],507 "outputs": [],
505 "stateMutability": "nonpayable",508 "stateMutability": "nonpayable",
506 "type": "function"509 "type": "function"
modifiedtests/src/eth/reFungibleAbi.jsondiffbeforeafterboth
483 },483 },
484 {484 {
485 "inputs": [485 "inputs": [
486<<<<<<< HEAD486 { "internalType": "uint256", "name": "sponsor", "type": "uint256" }
487 ],
488 "name": "setCollectionSponsorSubstrate",
489 "outputs": [],
490 "stateMutability": "nonpayable",
491 "type": "function"
492 },
493 {
494 "inputs": [
487 { "internalType": "address", "name": "newOwner", "type": "address" }495 { "internalType": "address", "name": "newOwner", "type": "address" }
488 ],496 ],
489 "name": "setOwner",497 "name": "setOwner",
496 { "internalType": "uint256", "name": "newOwner", "type": "uint256" }504 { "internalType": "uint256", "name": "newOwner", "type": "uint256" }
497 ],505 ],
498 "name": "setOwnerSubstrate",506 "name": "setOwnerSubstrate",
499=======
500 { "internalType": "uint256", "name": "sponsor", "type": "uint256" }
501 ],
502 "name": "setCollectionSponsorSubstrate",
503>>>>>>> misk: Update stubs
504 "outputs": [],507 "outputs": [],
505 "stateMutability": "nonpayable",508 "stateMutability": "nonpayable",
506 "type": "function"509 "type": "function"
modifiedtests/src/eth/util/contractHelpersAbi.jsondiffbeforeafterboth
120 "internalType": "address",120 "internalType": "address",
121 "name": "contractAddress",121 "name": "contractAddress",
122 "type": "address"122 "type": "address"
123<<<<<<< HEAD
124 }123 }
125 ],124 ],
126 "name": "removeSponsor",125 "name": "removeSponsor",
147 "internalType": "address",146 "internalType": "address",
148 "name": "contractAddress",147 "name": "contractAddress",
149 "type": "address"148 "type": "address"
150=======
151>>>>>>> path: add stubs
152 },149 },
153 { "internalType": "address", "name": "sponsor", "type": "address" }150 { "internalType": "address", "name": "sponsor", "type": "address" }
154 ],151 ],