@zoralabs/coins 2.4.0 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build$colon$js.log +116 -124
- package/CHANGELOG.md +6 -0
- package/abis/Address.json +0 -16
- package/abis/BuySupplyWithSwapRouterHook.json +0 -27
- package/abis/BuySupplyWithV4SwapHook.json +0 -32
- package/abis/Clones.json +1 -1
- package/abis/CoinDopplerMultiCurve.json +109 -0
- package/abis/Create2.json +0 -21
- package/abis/ERC1967Proxy.json +1 -1
- package/abis/ERC1967Utils.json +0 -45
- package/abis/{UpgradeCoinImpl.json → Errors.json} +14 -10
- package/abis/{MockERC20.json → IERC1363.json} +134 -104
- package/abis/IERC1967.json +47 -0
- package/abis/IERC20.json +0 -36
- package/abis/IProtocolRewards.json +0 -258
- package/abis/{Script.json → ISupportsLimitOrderFill.json} +2 -2
- package/abis/IZoraLimitOrderBookCoinsInterface.json +67 -0
- package/abis/IZoraV4CoinHook.json +10 -0
- package/abis/ProxyShim.json +15 -16
- package/abis/SafeCast.json +51 -0
- package/abis/{AddressConstants.json → SafeCast160.json} +1 -1
- package/abis/Strings.json +10 -0
- package/abis/UUPSUpgradeable.json +1 -1
- package/abis/V3ToV4SwapLib.json +28 -0
- package/abis/ZoraFactory.json +1 -1
- package/abis/ZoraFactoryImpl.json +22 -6
- package/abis/ZoraV4CoinHook.json +20 -48
- package/dist/index.cjs +950 -43
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +948 -41
- package/dist/index.js.map +1 -1
- package/dist/wagmiGenerated.d.ts +1459 -76
- package/dist/wagmiGenerated.d.ts.map +1 -1
- package/package/wagmiGenerated.ts +951 -44
- package/package.json +9 -9
- package/remappings.txt +2 -1
- package/src/ZoraFactoryImpl.sol +8 -0
- package/src/deployment/ForkedCoinsAddresses.sol +54 -0
- package/src/hooks/ZoraV4CoinHook.sol +74 -20
- package/src/hooks/deployment/BuySupplyWithV4SwapHook.sol +20 -142
- package/src/interfaces/ISupportsLimitOrderFill.sol +11 -0
- package/src/interfaces/IZoraLimitOrderBookCoinsInterface.sol +21 -0
- package/src/interfaces/IZoraV4CoinHook.sol +6 -0
- package/src/libs/CoinConstants.sol +6 -0
- package/src/libs/CoinDopplerMultiCurve.sol +1 -1
- package/src/libs/CoinRewardsV4.sol +0 -1
- package/src/libs/HooksDeployment.sol +20 -8
- package/src/libs/UniV4SwapHelper.sol +35 -0
- package/src/libs/V3ToV4SwapLib.sol +261 -0
- package/src/version/ContractVersionBase.sol +1 -1
- package/test/BuySupplyWithV4SwapHook.t.sol +4 -3
- package/test/Coin.t.sol +7 -1
- package/test/CoinUniV4.t.sol +2 -1
- package/test/ContentCoinRewards.t.sol +5 -1
- package/test/CreatorCoin.t.sol +3 -1
- package/test/CreatorCoinRewards.t.sol +3 -1
- package/test/Factory.t.sol +20 -7
- package/test/HooksDeployment.t.sol +16 -3
- package/test/LiquidityMigration.t.sol +52 -44
- package/test/MultiOwnable.t.sol +2 -1
- package/test/Upgrades.t.sol +110 -81
- package/test/V4Liquidity.t.sol +1 -1
- package/test/mocks/MockSwapRouter.sol +33 -0
- package/test/mocks/MockZoraLimitOrderBook.sol +14 -0
- package/test/utils/BaseTest.sol +14 -448
- package/test/utils/FeeEstimatorHook.sol +6 -2
- package/test/utils/V4TestSetup.sol +595 -0
- package/wagmi.config.ts +1 -1
- package/abis/BaseTest.json +0 -718
- package/abis/DeterministicDeployerAndCaller.json +0 -315
- package/abis/DeterministicUUPSProxyDeployer.json +0 -167
- package/abis/EIP712.json +0 -67
- package/abis/ERC20.json +0 -310
- package/abis/FeeEstimatorHook.json +0 -1938
- package/abis/IERC721.json +0 -287
- package/abis/IERC721Enumerable.json +0 -343
- package/abis/IERC721Metadata.json +0 -332
- package/abis/IERC721TokenReceiver.json +0 -36
- package/abis/IImmutableCreate2Factory.json +0 -93
- package/abis/IMulticall3.json +0 -440
- package/abis/ISafe.json +0 -15
- package/abis/ISymbol.json +0 -15
- package/abis/IUniswapV4Router04.json +0 -484
- package/abis/IUniversalRouter.json +0 -61
- package/abis/IV4Quoter.json +0 -310
- package/abis/ImmutableCreate2FactoryUtils.json +0 -15
- package/abis/LibString.json +0 -7
- package/abis/Math.json +0 -7
- package/abis/MockAirlock.json +0 -39
- package/abis/MockERC721.json +0 -350
- package/abis/ProtocolRewards.json +0 -494
- package/abis/ShortStrings.json +0 -18
- package/abis/SimpleERC20.json +0 -326
- package/abis/StdAssertions.json +0 -379
- package/abis/StdInvariant.json +0 -180
- package/abis/Test.json +0 -570
- package/abis/VmContractHelper235.json +0 -233
- package/abis/VmContractHelper242.json +0 -233
- package/abis/stdError.json +0 -119
- package/abis/stdStorageSafe.json +0 -52
- package/addresses/8453.json +0 -13
- package/addresses/84532.json +0 -10
- package/deterministicConfig/deployerAndCaller.json +0 -5
- package/deterministicConfig/zoraFactory.json +0 -8
- package/script/Deploy.s.sol +0 -23
- package/script/DeployAutoSwapper.s.sol +0 -30
- package/script/DeployDevFactory.s.sol +0 -21
- package/script/DeployPostDeploymentHooks.s.sol +0 -20
- package/script/DeployTrustedMsgSenderLookup.s.sol +0 -20
- package/script/DeployUpgradeGate.s.sol +0 -21
- package/script/GenerateDeterministicParams.s.sol +0 -43
- package/script/PrintRegisterUpgradePath.s.sol +0 -28
- package/script/PrintUpgradeCommand.s.sol +0 -13
- package/script/TestBackingCoinSwap.s.sol +0 -144
- package/script/TestV4Swap.s.sol +0 -133
- package/script/UpgradeCoinImpl.sol +0 -23
- package/script/UpgradeFactoryImpl.s.sol +0 -28
- package/script/UpgradeHooks.s.sol +0 -23
- package/src/deployment/CoinsDeployerBase.sol +0 -297
- /package/{test → src}/utils/ProxyShim.sol +0 -0
|
@@ -1,332 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"type": "function",
|
|
4
|
-
"name": "approve",
|
|
5
|
-
"inputs": [
|
|
6
|
-
{
|
|
7
|
-
"name": "_approved",
|
|
8
|
-
"type": "address",
|
|
9
|
-
"internalType": "address"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"name": "_tokenId",
|
|
13
|
-
"type": "uint256",
|
|
14
|
-
"internalType": "uint256"
|
|
15
|
-
}
|
|
16
|
-
],
|
|
17
|
-
"outputs": [],
|
|
18
|
-
"stateMutability": "payable"
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"type": "function",
|
|
22
|
-
"name": "balanceOf",
|
|
23
|
-
"inputs": [
|
|
24
|
-
{
|
|
25
|
-
"name": "_owner",
|
|
26
|
-
"type": "address",
|
|
27
|
-
"internalType": "address"
|
|
28
|
-
}
|
|
29
|
-
],
|
|
30
|
-
"outputs": [
|
|
31
|
-
{
|
|
32
|
-
"name": "",
|
|
33
|
-
"type": "uint256",
|
|
34
|
-
"internalType": "uint256"
|
|
35
|
-
}
|
|
36
|
-
],
|
|
37
|
-
"stateMutability": "view"
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"type": "function",
|
|
41
|
-
"name": "getApproved",
|
|
42
|
-
"inputs": [
|
|
43
|
-
{
|
|
44
|
-
"name": "_tokenId",
|
|
45
|
-
"type": "uint256",
|
|
46
|
-
"internalType": "uint256"
|
|
47
|
-
}
|
|
48
|
-
],
|
|
49
|
-
"outputs": [
|
|
50
|
-
{
|
|
51
|
-
"name": "",
|
|
52
|
-
"type": "address",
|
|
53
|
-
"internalType": "address"
|
|
54
|
-
}
|
|
55
|
-
],
|
|
56
|
-
"stateMutability": "view"
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
"type": "function",
|
|
60
|
-
"name": "isApprovedForAll",
|
|
61
|
-
"inputs": [
|
|
62
|
-
{
|
|
63
|
-
"name": "_owner",
|
|
64
|
-
"type": "address",
|
|
65
|
-
"internalType": "address"
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
"name": "_operator",
|
|
69
|
-
"type": "address",
|
|
70
|
-
"internalType": "address"
|
|
71
|
-
}
|
|
72
|
-
],
|
|
73
|
-
"outputs": [
|
|
74
|
-
{
|
|
75
|
-
"name": "",
|
|
76
|
-
"type": "bool",
|
|
77
|
-
"internalType": "bool"
|
|
78
|
-
}
|
|
79
|
-
],
|
|
80
|
-
"stateMutability": "view"
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"type": "function",
|
|
84
|
-
"name": "name",
|
|
85
|
-
"inputs": [],
|
|
86
|
-
"outputs": [
|
|
87
|
-
{
|
|
88
|
-
"name": "_name",
|
|
89
|
-
"type": "string",
|
|
90
|
-
"internalType": "string"
|
|
91
|
-
}
|
|
92
|
-
],
|
|
93
|
-
"stateMutability": "view"
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
"type": "function",
|
|
97
|
-
"name": "ownerOf",
|
|
98
|
-
"inputs": [
|
|
99
|
-
{
|
|
100
|
-
"name": "_tokenId",
|
|
101
|
-
"type": "uint256",
|
|
102
|
-
"internalType": "uint256"
|
|
103
|
-
}
|
|
104
|
-
],
|
|
105
|
-
"outputs": [
|
|
106
|
-
{
|
|
107
|
-
"name": "",
|
|
108
|
-
"type": "address",
|
|
109
|
-
"internalType": "address"
|
|
110
|
-
}
|
|
111
|
-
],
|
|
112
|
-
"stateMutability": "view"
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
"type": "function",
|
|
116
|
-
"name": "safeTransferFrom",
|
|
117
|
-
"inputs": [
|
|
118
|
-
{
|
|
119
|
-
"name": "_from",
|
|
120
|
-
"type": "address",
|
|
121
|
-
"internalType": "address"
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
"name": "_to",
|
|
125
|
-
"type": "address",
|
|
126
|
-
"internalType": "address"
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"name": "_tokenId",
|
|
130
|
-
"type": "uint256",
|
|
131
|
-
"internalType": "uint256"
|
|
132
|
-
}
|
|
133
|
-
],
|
|
134
|
-
"outputs": [],
|
|
135
|
-
"stateMutability": "payable"
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
"type": "function",
|
|
139
|
-
"name": "safeTransferFrom",
|
|
140
|
-
"inputs": [
|
|
141
|
-
{
|
|
142
|
-
"name": "_from",
|
|
143
|
-
"type": "address",
|
|
144
|
-
"internalType": "address"
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
"name": "_to",
|
|
148
|
-
"type": "address",
|
|
149
|
-
"internalType": "address"
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
"name": "_tokenId",
|
|
153
|
-
"type": "uint256",
|
|
154
|
-
"internalType": "uint256"
|
|
155
|
-
},
|
|
156
|
-
{
|
|
157
|
-
"name": "data",
|
|
158
|
-
"type": "bytes",
|
|
159
|
-
"internalType": "bytes"
|
|
160
|
-
}
|
|
161
|
-
],
|
|
162
|
-
"outputs": [],
|
|
163
|
-
"stateMutability": "payable"
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
"type": "function",
|
|
167
|
-
"name": "setApprovalForAll",
|
|
168
|
-
"inputs": [
|
|
169
|
-
{
|
|
170
|
-
"name": "_operator",
|
|
171
|
-
"type": "address",
|
|
172
|
-
"internalType": "address"
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
"name": "_approved",
|
|
176
|
-
"type": "bool",
|
|
177
|
-
"internalType": "bool"
|
|
178
|
-
}
|
|
179
|
-
],
|
|
180
|
-
"outputs": [],
|
|
181
|
-
"stateMutability": "nonpayable"
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"type": "function",
|
|
185
|
-
"name": "supportsInterface",
|
|
186
|
-
"inputs": [
|
|
187
|
-
{
|
|
188
|
-
"name": "interfaceID",
|
|
189
|
-
"type": "bytes4",
|
|
190
|
-
"internalType": "bytes4"
|
|
191
|
-
}
|
|
192
|
-
],
|
|
193
|
-
"outputs": [
|
|
194
|
-
{
|
|
195
|
-
"name": "",
|
|
196
|
-
"type": "bool",
|
|
197
|
-
"internalType": "bool"
|
|
198
|
-
}
|
|
199
|
-
],
|
|
200
|
-
"stateMutability": "view"
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
"type": "function",
|
|
204
|
-
"name": "symbol",
|
|
205
|
-
"inputs": [],
|
|
206
|
-
"outputs": [
|
|
207
|
-
{
|
|
208
|
-
"name": "_symbol",
|
|
209
|
-
"type": "string",
|
|
210
|
-
"internalType": "string"
|
|
211
|
-
}
|
|
212
|
-
],
|
|
213
|
-
"stateMutability": "view"
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
"type": "function",
|
|
217
|
-
"name": "tokenURI",
|
|
218
|
-
"inputs": [
|
|
219
|
-
{
|
|
220
|
-
"name": "_tokenId",
|
|
221
|
-
"type": "uint256",
|
|
222
|
-
"internalType": "uint256"
|
|
223
|
-
}
|
|
224
|
-
],
|
|
225
|
-
"outputs": [
|
|
226
|
-
{
|
|
227
|
-
"name": "",
|
|
228
|
-
"type": "string",
|
|
229
|
-
"internalType": "string"
|
|
230
|
-
}
|
|
231
|
-
],
|
|
232
|
-
"stateMutability": "view"
|
|
233
|
-
},
|
|
234
|
-
{
|
|
235
|
-
"type": "function",
|
|
236
|
-
"name": "transferFrom",
|
|
237
|
-
"inputs": [
|
|
238
|
-
{
|
|
239
|
-
"name": "_from",
|
|
240
|
-
"type": "address",
|
|
241
|
-
"internalType": "address"
|
|
242
|
-
},
|
|
243
|
-
{
|
|
244
|
-
"name": "_to",
|
|
245
|
-
"type": "address",
|
|
246
|
-
"internalType": "address"
|
|
247
|
-
},
|
|
248
|
-
{
|
|
249
|
-
"name": "_tokenId",
|
|
250
|
-
"type": "uint256",
|
|
251
|
-
"internalType": "uint256"
|
|
252
|
-
}
|
|
253
|
-
],
|
|
254
|
-
"outputs": [],
|
|
255
|
-
"stateMutability": "payable"
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
"type": "event",
|
|
259
|
-
"name": "Approval",
|
|
260
|
-
"inputs": [
|
|
261
|
-
{
|
|
262
|
-
"name": "_owner",
|
|
263
|
-
"type": "address",
|
|
264
|
-
"indexed": true,
|
|
265
|
-
"internalType": "address"
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
"name": "_approved",
|
|
269
|
-
"type": "address",
|
|
270
|
-
"indexed": true,
|
|
271
|
-
"internalType": "address"
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
"name": "_tokenId",
|
|
275
|
-
"type": "uint256",
|
|
276
|
-
"indexed": true,
|
|
277
|
-
"internalType": "uint256"
|
|
278
|
-
}
|
|
279
|
-
],
|
|
280
|
-
"anonymous": false
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
"type": "event",
|
|
284
|
-
"name": "ApprovalForAll",
|
|
285
|
-
"inputs": [
|
|
286
|
-
{
|
|
287
|
-
"name": "_owner",
|
|
288
|
-
"type": "address",
|
|
289
|
-
"indexed": true,
|
|
290
|
-
"internalType": "address"
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"name": "_operator",
|
|
294
|
-
"type": "address",
|
|
295
|
-
"indexed": true,
|
|
296
|
-
"internalType": "address"
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
"name": "_approved",
|
|
300
|
-
"type": "bool",
|
|
301
|
-
"indexed": false,
|
|
302
|
-
"internalType": "bool"
|
|
303
|
-
}
|
|
304
|
-
],
|
|
305
|
-
"anonymous": false
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
"type": "event",
|
|
309
|
-
"name": "Transfer",
|
|
310
|
-
"inputs": [
|
|
311
|
-
{
|
|
312
|
-
"name": "_from",
|
|
313
|
-
"type": "address",
|
|
314
|
-
"indexed": true,
|
|
315
|
-
"internalType": "address"
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
"name": "_to",
|
|
319
|
-
"type": "address",
|
|
320
|
-
"indexed": true,
|
|
321
|
-
"internalType": "address"
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
"name": "_tokenId",
|
|
325
|
-
"type": "uint256",
|
|
326
|
-
"indexed": true,
|
|
327
|
-
"internalType": "uint256"
|
|
328
|
-
}
|
|
329
|
-
],
|
|
330
|
-
"anonymous": false
|
|
331
|
-
}
|
|
332
|
-
]
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"type": "function",
|
|
4
|
-
"name": "onERC721Received",
|
|
5
|
-
"inputs": [
|
|
6
|
-
{
|
|
7
|
-
"name": "_operator",
|
|
8
|
-
"type": "address",
|
|
9
|
-
"internalType": "address"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"name": "_from",
|
|
13
|
-
"type": "address",
|
|
14
|
-
"internalType": "address"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"name": "_tokenId",
|
|
18
|
-
"type": "uint256",
|
|
19
|
-
"internalType": "uint256"
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"name": "_data",
|
|
23
|
-
"type": "bytes",
|
|
24
|
-
"internalType": "bytes"
|
|
25
|
-
}
|
|
26
|
-
],
|
|
27
|
-
"outputs": [
|
|
28
|
-
{
|
|
29
|
-
"name": "",
|
|
30
|
-
"type": "bytes4",
|
|
31
|
-
"internalType": "bytes4"
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
|
-
"stateMutability": "nonpayable"
|
|
35
|
-
}
|
|
36
|
-
]
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"type": "function",
|
|
4
|
-
"name": "findCreate2Address",
|
|
5
|
-
"inputs": [
|
|
6
|
-
{
|
|
7
|
-
"name": "salt",
|
|
8
|
-
"type": "bytes32",
|
|
9
|
-
"internalType": "bytes32"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"name": "initCode",
|
|
13
|
-
"type": "bytes",
|
|
14
|
-
"internalType": "bytes"
|
|
15
|
-
}
|
|
16
|
-
],
|
|
17
|
-
"outputs": [
|
|
18
|
-
{
|
|
19
|
-
"name": "deploymentAddress",
|
|
20
|
-
"type": "address",
|
|
21
|
-
"internalType": "address"
|
|
22
|
-
}
|
|
23
|
-
],
|
|
24
|
-
"stateMutability": "view"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"type": "function",
|
|
28
|
-
"name": "findCreate2AddressViaHash",
|
|
29
|
-
"inputs": [
|
|
30
|
-
{
|
|
31
|
-
"name": "salt",
|
|
32
|
-
"type": "bytes32",
|
|
33
|
-
"internalType": "bytes32"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"name": "initCodeHash",
|
|
37
|
-
"type": "bytes32",
|
|
38
|
-
"internalType": "bytes32"
|
|
39
|
-
}
|
|
40
|
-
],
|
|
41
|
-
"outputs": [
|
|
42
|
-
{
|
|
43
|
-
"name": "deploymentAddress",
|
|
44
|
-
"type": "address",
|
|
45
|
-
"internalType": "address"
|
|
46
|
-
}
|
|
47
|
-
],
|
|
48
|
-
"stateMutability": "view"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"type": "function",
|
|
52
|
-
"name": "hasBeenDeployed",
|
|
53
|
-
"inputs": [
|
|
54
|
-
{
|
|
55
|
-
"name": "deploymentAddress",
|
|
56
|
-
"type": "address",
|
|
57
|
-
"internalType": "address"
|
|
58
|
-
}
|
|
59
|
-
],
|
|
60
|
-
"outputs": [
|
|
61
|
-
{
|
|
62
|
-
"name": "",
|
|
63
|
-
"type": "bool",
|
|
64
|
-
"internalType": "bool"
|
|
65
|
-
}
|
|
66
|
-
],
|
|
67
|
-
"stateMutability": "view"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"type": "function",
|
|
71
|
-
"name": "safeCreate2",
|
|
72
|
-
"inputs": [
|
|
73
|
-
{
|
|
74
|
-
"name": "salt",
|
|
75
|
-
"type": "bytes32",
|
|
76
|
-
"internalType": "bytes32"
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"name": "initializationCode",
|
|
80
|
-
"type": "bytes",
|
|
81
|
-
"internalType": "bytes"
|
|
82
|
-
}
|
|
83
|
-
],
|
|
84
|
-
"outputs": [
|
|
85
|
-
{
|
|
86
|
-
"name": "deploymentAddress",
|
|
87
|
-
"type": "address",
|
|
88
|
-
"internalType": "address"
|
|
89
|
-
}
|
|
90
|
-
],
|
|
91
|
-
"stateMutability": "payable"
|
|
92
|
-
}
|
|
93
|
-
]
|