@artblocks/contracts 1.2.1 → 1.3.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.
Files changed (71) hide show
  1. package/artifacts/contracts/BytecodeStorageReaders/BytecodeStorageReaderContractV2_Web3Call.sol/BytecodeStorageReaderContractV2_Web3Call.json +201 -0
  2. package/artifacts/contracts/BytecodeStorageReaders/UniversalBytecodeStorageReader.sol/UniversalBytecodeStorageReader.json +2 -2
  3. package/artifacts/contracts/DependencyRegistryV0.sol/DependencyRegistryV0.json +42 -53
  4. package/artifacts/contracts/engine/V3/GenArt721CoreV3_Engine_Flex.sol/GenArt721CoreV3_Engine_Flex.json +2 -2
  5. package/artifacts/contracts/generator/GenArt721GeneratorV0.sol/GenArt721GeneratorV0.json +2 -2
  6. package/artifacts/contracts/interfaces/v0.8.x/IDelegateRegistry.sol/IDelegateRegistry.json +820 -0
  7. package/artifacts/contracts/interfaces/v0.8.x/IDependencyRegistryV0.sol/IDependencyRegistryV0.json +13 -0
  8. package/artifacts/contracts/interfaces/v0.8.x/IPMPAugmentHook.sol/IPMPAugmentHook.json +83 -0
  9. package/artifacts/contracts/interfaces/v0.8.x/IPMPConfigureHook.sol/IPMPConfigureHook.json +80 -0
  10. package/artifacts/contracts/interfaces/v0.8.x/IPMPV0.sol/IPMPV0.json +402 -0
  11. package/artifacts/contracts/interfaces/v0.8.x/IUniversalBytecodeStorageReader.sol/IUniversalBytecodeStorageReader.json +13 -0
  12. package/artifacts/contracts/interfaces/v0.8.x/IWeb3Call.sol/IWeb3Call.json +47 -0
  13. package/artifacts/contracts/libs/integration-refs/delegation-registry/DelegateRegistry.sol/DelegateRegistry.json +846 -0
  14. package/artifacts/contracts/libs/integration-refs/delegation-registry/libraries/RegistryHashes.sol/RegistryHashes.json +10 -0
  15. package/artifacts/contracts/libs/integration-refs/delegation-registry/libraries/RegistryOps.sol/RegistryOps.json +10 -0
  16. package/artifacts/contracts/libs/integration-refs/delegation-registry/libraries/RegistryStorage.sol/RegistryStorage.json +10 -0
  17. package/artifacts/contracts/libs/v0.8.x/DependencyRegistryStorageLib.sol/DependencyRegistryStorageLib.json +2 -2
  18. package/artifacts/contracts/libs/v0.8.x/ImmutableStringArray.sol/ImmutableStringArray.json +10 -0
  19. package/artifacts/contracts/libs/v0.8.x/V3FlexLib.sol/V3FlexLib.json +2 -2
  20. package/artifacts/contracts/mock/ImmutableStringArrayMock.sol/ImmutableStringArrayMock.json +69 -0
  21. package/artifacts/contracts/mock/MockPMPAugmentHook.sol/MockPMPAugmentHook.json +214 -0
  22. package/artifacts/contracts/mock/MockPMPConfigureHook.sol/MockPMPConfigureHook.json +236 -0
  23. package/artifacts/contracts/web3call/PMPV0.sol/PMPV0.json +629 -0
  24. package/artifacts/contracts/web3call/Web3Call.sol/Web3Call.json +66 -0
  25. package/artifacts/contracts/web3call/augment-hooks/AbstractPMPAugmentHook.sol/AbstractPMPAugmentHook.json +83 -0
  26. package/artifacts/contracts/web3call/augment-hooks/InjectBaseGasFee.sol/InjectBaseGasFee.json +83 -0
  27. package/artifacts/contracts/web3call/augment-hooks/InjectChromieSquiggleFloorPrice.sol/IUniswapV2Pair.json +60 -0
  28. package/artifacts/contracts/web3call/augment-hooks/InjectChromieSquiggleFloorPrice.sol/InjectChromieSquiggleFloorPrice.json +107 -0
  29. package/artifacts/contracts/web3call/augment-hooks/InjectIsNounsDaoMember.sol/InjectIsNounsDaoMember.json +96 -0
  30. package/artifacts/contracts/web3call/augment-hooks/InjectIsProjectFullyMinted.sol/InjectIsProjectFullyMinted.json +83 -0
  31. package/artifacts/contracts/web3call/augment-hooks/InjectPolyptychTokenHash.sol/InjectPolyptychTokenHash.json +141 -0
  32. package/artifacts/contracts/web3call/augment-hooks/InjectTokenHashSeed.sol/InjectTokenHashSeed.json +99 -0
  33. package/artifacts/contracts/web3call/augment-hooks/InjectTokenOwner.sol/InjectTokenOwner.json +99 -0
  34. package/artifacts/contracts/web3call/augment-hooks/InjectTokenOwnerEthBalance.sol/InjectTokenOwnerEthBalance.json +83 -0
  35. package/artifacts/contracts/web3call/augment-hooks/InjectUSDCTotalSupply.sol/InjectUSDCTotalSupply.json +107 -0
  36. package/artifacts/contracts/web3call/configure-hooks/abstractPMPConfigureHook.sol/AbstractPMPConfigureHook.json +80 -0
  37. package/contracts/BytecodeStorageReaders/BytecodeStorageReaderContractV2_Web3Call.sol +128 -0
  38. package/contracts/DependencyRegistryV0.sol +67 -28
  39. package/contracts/engine/V3/GenArt721CoreV3_Engine_Flex.sol +7 -1
  40. package/contracts/generator/GenArt721GeneratorV0.sol +77 -8
  41. package/contracts/interfaces/v0.8.x/IDelegateRegistry.sol +318 -0
  42. package/contracts/interfaces/v0.8.x/IDependencyRegistryV0.sol +2 -0
  43. package/contracts/interfaces/v0.8.x/IPMPAugmentHook.sol +31 -0
  44. package/contracts/interfaces/v0.8.x/IPMPConfigureHook.sol +25 -0
  45. package/contracts/interfaces/v0.8.x/IPMPV0.sol +224 -0
  46. package/contracts/interfaces/v0.8.x/IUniversalBytecodeStorageReader.sol +5 -0
  47. package/contracts/interfaces/v0.8.x/IWeb3Call.sol +28 -0
  48. package/contracts/libs/integration-refs/delegation-registry/DelegateRegistry.sol +753 -0
  49. package/contracts/libs/integration-refs/delegation-registry/libraries/RegistryHashes.sol +359 -0
  50. package/contracts/libs/integration-refs/delegation-registry/libraries/RegistryOps.sol +31 -0
  51. package/contracts/libs/integration-refs/delegation-registry/libraries/RegistryStorage.sol +87 -0
  52. package/contracts/libs/v0.8.x/DependencyRegistryStorageLib.sol +3 -0
  53. package/contracts/libs/v0.8.x/ImmutableStringArray.sol +301 -0
  54. package/contracts/libs/v0.8.x/V3FlexLib.sol +7 -1
  55. package/contracts/mock/ImmutableStringArrayMock.sol +47 -0
  56. package/contracts/mock/MockPMPAugmentHook.sol +170 -0
  57. package/contracts/mock/MockPMPConfigureHook.sol +78 -0
  58. package/contracts/web3call/PMPV0.sol +1126 -0
  59. package/contracts/web3call/Web3Call.sol +25 -0
  60. package/contracts/web3call/augment-hooks/AbstractPMPAugmentHook.sol +46 -0
  61. package/contracts/web3call/augment-hooks/InjectBaseGasFee.sol +57 -0
  62. package/contracts/web3call/augment-hooks/InjectChromieSquiggleFloorPrice.sol +103 -0
  63. package/contracts/web3call/augment-hooks/InjectIsNounsDaoMember.sol +66 -0
  64. package/contracts/web3call/augment-hooks/InjectIsProjectFullyMinted.sol +73 -0
  65. package/contracts/web3call/augment-hooks/InjectPolyptychTokenHash.sol +88 -0
  66. package/contracts/web3call/augment-hooks/InjectTokenHashSeed.sol +62 -0
  67. package/contracts/web3call/augment-hooks/InjectTokenOwner.sol +60 -0
  68. package/contracts/web3call/augment-hooks/InjectTokenOwnerEthBalance.sol +61 -0
  69. package/contracts/web3call/augment-hooks/InjectUSDCTotalSupply.sol +69 -0
  70. package/contracts/web3call/configure-hooks/abstractPMPConfigureHook.sol +41 -0
  71. package/package.json +5 -5
@@ -346,6 +346,19 @@
346
346
  "name": "SupportedCoreContractRemoved",
347
347
  "type": "event"
348
348
  },
349
+ {
350
+ "anonymous": false,
351
+ "inputs": [
352
+ {
353
+ "indexed": true,
354
+ "internalType": "address",
355
+ "name": "newReader",
356
+ "type": "address"
357
+ }
358
+ ],
359
+ "name": "UniversalBytecodeStorageReaderUpdated",
360
+ "type": "event"
361
+ },
349
362
  {
350
363
  "inputs": [
351
364
  {
@@ -0,0 +1,83 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IPMPAugmentHook",
4
+ "sourceName": "contracts/interfaces/v0.8.x/IPMPAugmentHook.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "coreContract",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "uint256",
15
+ "name": "tokenId",
16
+ "type": "uint256"
17
+ },
18
+ {
19
+ "components": [
20
+ {
21
+ "internalType": "string",
22
+ "name": "key",
23
+ "type": "string"
24
+ },
25
+ {
26
+ "internalType": "string",
27
+ "name": "value",
28
+ "type": "string"
29
+ }
30
+ ],
31
+ "internalType": "struct IWeb3Call.TokenParam[]",
32
+ "name": "tokenParams",
33
+ "type": "tuple[]"
34
+ }
35
+ ],
36
+ "name": "onTokenPMPReadAugmentation",
37
+ "outputs": [
38
+ {
39
+ "components": [
40
+ {
41
+ "internalType": "string",
42
+ "name": "key",
43
+ "type": "string"
44
+ },
45
+ {
46
+ "internalType": "string",
47
+ "name": "value",
48
+ "type": "string"
49
+ }
50
+ ],
51
+ "internalType": "struct IWeb3Call.TokenParam[]",
52
+ "name": "augmentedTokenParams",
53
+ "type": "tuple[]"
54
+ }
55
+ ],
56
+ "stateMutability": "view",
57
+ "type": "function"
58
+ },
59
+ {
60
+ "inputs": [
61
+ {
62
+ "internalType": "bytes4",
63
+ "name": "interfaceId",
64
+ "type": "bytes4"
65
+ }
66
+ ],
67
+ "name": "supportsInterface",
68
+ "outputs": [
69
+ {
70
+ "internalType": "bool",
71
+ "name": "",
72
+ "type": "bool"
73
+ }
74
+ ],
75
+ "stateMutability": "view",
76
+ "type": "function"
77
+ }
78
+ ],
79
+ "bytecode": "0x",
80
+ "deployedBytecode": "0x",
81
+ "linkReferences": {},
82
+ "deployedLinkReferences": {}
83
+ }
@@ -0,0 +1,80 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IPMPConfigureHook",
4
+ "sourceName": "contracts/interfaces/v0.8.x/IPMPConfigureHook.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "coreContract",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "uint256",
15
+ "name": "tokenId",
16
+ "type": "uint256"
17
+ },
18
+ {
19
+ "components": [
20
+ {
21
+ "internalType": "string",
22
+ "name": "key",
23
+ "type": "string"
24
+ },
25
+ {
26
+ "internalType": "enum IPMPV0.ParamType",
27
+ "name": "configuredParamType",
28
+ "type": "uint8"
29
+ },
30
+ {
31
+ "internalType": "bytes32",
32
+ "name": "configuredValue",
33
+ "type": "bytes32"
34
+ },
35
+ {
36
+ "internalType": "bool",
37
+ "name": "configuringArtistString",
38
+ "type": "bool"
39
+ },
40
+ {
41
+ "internalType": "string",
42
+ "name": "configuredValueString",
43
+ "type": "string"
44
+ }
45
+ ],
46
+ "internalType": "struct IPMPV0.PMPInput",
47
+ "name": "pmpInput",
48
+ "type": "tuple"
49
+ }
50
+ ],
51
+ "name": "onTokenPMPConfigure",
52
+ "outputs": [],
53
+ "stateMutability": "nonpayable",
54
+ "type": "function"
55
+ },
56
+ {
57
+ "inputs": [
58
+ {
59
+ "internalType": "bytes4",
60
+ "name": "interfaceId",
61
+ "type": "bytes4"
62
+ }
63
+ ],
64
+ "name": "supportsInterface",
65
+ "outputs": [
66
+ {
67
+ "internalType": "bool",
68
+ "name": "",
69
+ "type": "bool"
70
+ }
71
+ ],
72
+ "stateMutability": "view",
73
+ "type": "function"
74
+ }
75
+ ],
76
+ "bytecode": "0x",
77
+ "deployedBytecode": "0x",
78
+ "linkReferences": {},
79
+ "deployedLinkReferences": {}
80
+ }
@@ -0,0 +1,402 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IPMPV0",
4
+ "sourceName": "contracts/interfaces/v0.8.x/IPMPV0.sol",
5
+ "abi": [
6
+ {
7
+ "anonymous": false,
8
+ "inputs": [
9
+ {
10
+ "indexed": false,
11
+ "internalType": "address",
12
+ "name": "delegationRegistry",
13
+ "type": "address"
14
+ }
15
+ ],
16
+ "name": "DelegationRegistryUpdated",
17
+ "type": "event"
18
+ },
19
+ {
20
+ "anonymous": false,
21
+ "inputs": [
22
+ {
23
+ "indexed": false,
24
+ "internalType": "address",
25
+ "name": "coreContract",
26
+ "type": "address"
27
+ },
28
+ {
29
+ "indexed": false,
30
+ "internalType": "uint256",
31
+ "name": "projectId",
32
+ "type": "uint256"
33
+ },
34
+ {
35
+ "components": [
36
+ {
37
+ "internalType": "string",
38
+ "name": "key",
39
+ "type": "string"
40
+ },
41
+ {
42
+ "components": [
43
+ {
44
+ "internalType": "enum IPMPV0.AuthOption",
45
+ "name": "authOption",
46
+ "type": "uint8"
47
+ },
48
+ {
49
+ "internalType": "enum IPMPV0.ParamType",
50
+ "name": "paramType",
51
+ "type": "uint8"
52
+ },
53
+ {
54
+ "internalType": "uint48",
55
+ "name": "pmpLockedAfterTimestamp",
56
+ "type": "uint48"
57
+ },
58
+ {
59
+ "internalType": "address",
60
+ "name": "authAddress",
61
+ "type": "address"
62
+ },
63
+ {
64
+ "internalType": "string[]",
65
+ "name": "selectOptions",
66
+ "type": "string[]"
67
+ },
68
+ {
69
+ "internalType": "bytes32",
70
+ "name": "minRange",
71
+ "type": "bytes32"
72
+ },
73
+ {
74
+ "internalType": "bytes32",
75
+ "name": "maxRange",
76
+ "type": "bytes32"
77
+ }
78
+ ],
79
+ "internalType": "struct IPMPV0.PMPConfig",
80
+ "name": "pmpConfig",
81
+ "type": "tuple"
82
+ }
83
+ ],
84
+ "indexed": false,
85
+ "internalType": "struct IPMPV0.PMPInputConfig[]",
86
+ "name": "pmpInputConfigs",
87
+ "type": "tuple[]"
88
+ },
89
+ {
90
+ "indexed": false,
91
+ "internalType": "uint8",
92
+ "name": "projectConfigNonce",
93
+ "type": "uint8"
94
+ }
95
+ ],
96
+ "name": "ProjectConfigured",
97
+ "type": "event"
98
+ },
99
+ {
100
+ "anonymous": false,
101
+ "inputs": [
102
+ {
103
+ "indexed": false,
104
+ "internalType": "address",
105
+ "name": "coreContract",
106
+ "type": "address"
107
+ },
108
+ {
109
+ "indexed": false,
110
+ "internalType": "uint256",
111
+ "name": "projectId",
112
+ "type": "uint256"
113
+ },
114
+ {
115
+ "indexed": false,
116
+ "internalType": "contract IPMPConfigureHook",
117
+ "name": "tokenPMPPostConfigHook",
118
+ "type": "address"
119
+ },
120
+ {
121
+ "indexed": false,
122
+ "internalType": "contract IPMPAugmentHook",
123
+ "name": "tokenPMPReadAugmentationHook",
124
+ "type": "address"
125
+ }
126
+ ],
127
+ "name": "ProjectHooksConfigured",
128
+ "type": "event"
129
+ },
130
+ {
131
+ "anonymous": false,
132
+ "inputs": [
133
+ {
134
+ "indexed": false,
135
+ "internalType": "address",
136
+ "name": "coreContract",
137
+ "type": "address"
138
+ },
139
+ {
140
+ "indexed": false,
141
+ "internalType": "uint256",
142
+ "name": "tokenId",
143
+ "type": "uint256"
144
+ },
145
+ {
146
+ "components": [
147
+ {
148
+ "internalType": "string",
149
+ "name": "key",
150
+ "type": "string"
151
+ },
152
+ {
153
+ "internalType": "enum IPMPV0.ParamType",
154
+ "name": "configuredParamType",
155
+ "type": "uint8"
156
+ },
157
+ {
158
+ "internalType": "bytes32",
159
+ "name": "configuredValue",
160
+ "type": "bytes32"
161
+ },
162
+ {
163
+ "internalType": "bool",
164
+ "name": "configuringArtistString",
165
+ "type": "bool"
166
+ },
167
+ {
168
+ "internalType": "string",
169
+ "name": "configuredValueString",
170
+ "type": "string"
171
+ }
172
+ ],
173
+ "indexed": false,
174
+ "internalType": "struct IPMPV0.PMPInput[]",
175
+ "name": "pmpInputs",
176
+ "type": "tuple[]"
177
+ }
178
+ ],
179
+ "name": "TokenParamsConfigured",
180
+ "type": "event"
181
+ },
182
+ {
183
+ "inputs": [
184
+ {
185
+ "internalType": "address",
186
+ "name": "coreContract",
187
+ "type": "address"
188
+ },
189
+ {
190
+ "internalType": "uint256",
191
+ "name": "projectId",
192
+ "type": "uint256"
193
+ },
194
+ {
195
+ "components": [
196
+ {
197
+ "internalType": "string",
198
+ "name": "key",
199
+ "type": "string"
200
+ },
201
+ {
202
+ "components": [
203
+ {
204
+ "internalType": "enum IPMPV0.AuthOption",
205
+ "name": "authOption",
206
+ "type": "uint8"
207
+ },
208
+ {
209
+ "internalType": "enum IPMPV0.ParamType",
210
+ "name": "paramType",
211
+ "type": "uint8"
212
+ },
213
+ {
214
+ "internalType": "uint48",
215
+ "name": "pmpLockedAfterTimestamp",
216
+ "type": "uint48"
217
+ },
218
+ {
219
+ "internalType": "address",
220
+ "name": "authAddress",
221
+ "type": "address"
222
+ },
223
+ {
224
+ "internalType": "string[]",
225
+ "name": "selectOptions",
226
+ "type": "string[]"
227
+ },
228
+ {
229
+ "internalType": "bytes32",
230
+ "name": "minRange",
231
+ "type": "bytes32"
232
+ },
233
+ {
234
+ "internalType": "bytes32",
235
+ "name": "maxRange",
236
+ "type": "bytes32"
237
+ }
238
+ ],
239
+ "internalType": "struct IPMPV0.PMPConfig",
240
+ "name": "pmpConfig",
241
+ "type": "tuple"
242
+ }
243
+ ],
244
+ "internalType": "struct IPMPV0.PMPInputConfig[]",
245
+ "name": "pmpInputConfigs",
246
+ "type": "tuple[]"
247
+ }
248
+ ],
249
+ "name": "configureProject",
250
+ "outputs": [],
251
+ "stateMutability": "nonpayable",
252
+ "type": "function"
253
+ },
254
+ {
255
+ "inputs": [
256
+ {
257
+ "internalType": "address",
258
+ "name": "coreContract",
259
+ "type": "address"
260
+ },
261
+ {
262
+ "internalType": "uint256",
263
+ "name": "projectId",
264
+ "type": "uint256"
265
+ },
266
+ {
267
+ "internalType": "contract IPMPConfigureHook",
268
+ "name": "tokenPMPPostConfigHook",
269
+ "type": "address"
270
+ },
271
+ {
272
+ "internalType": "contract IPMPAugmentHook",
273
+ "name": "tokenPMPReadAugmentationHook",
274
+ "type": "address"
275
+ }
276
+ ],
277
+ "name": "configureProjectHooks",
278
+ "outputs": [],
279
+ "stateMutability": "nonpayable",
280
+ "type": "function"
281
+ },
282
+ {
283
+ "inputs": [
284
+ {
285
+ "internalType": "address",
286
+ "name": "coreContract",
287
+ "type": "address"
288
+ },
289
+ {
290
+ "internalType": "uint256",
291
+ "name": "tokenId",
292
+ "type": "uint256"
293
+ },
294
+ {
295
+ "components": [
296
+ {
297
+ "internalType": "string",
298
+ "name": "key",
299
+ "type": "string"
300
+ },
301
+ {
302
+ "internalType": "enum IPMPV0.ParamType",
303
+ "name": "configuredParamType",
304
+ "type": "uint8"
305
+ },
306
+ {
307
+ "internalType": "bytes32",
308
+ "name": "configuredValue",
309
+ "type": "bytes32"
310
+ },
311
+ {
312
+ "internalType": "bool",
313
+ "name": "configuringArtistString",
314
+ "type": "bool"
315
+ },
316
+ {
317
+ "internalType": "string",
318
+ "name": "configuredValueString",
319
+ "type": "string"
320
+ }
321
+ ],
322
+ "internalType": "struct IPMPV0.PMPInput[]",
323
+ "name": "pmpInputs",
324
+ "type": "tuple[]"
325
+ }
326
+ ],
327
+ "name": "configureTokenParams",
328
+ "outputs": [],
329
+ "stateMutability": "nonpayable",
330
+ "type": "function"
331
+ },
332
+ {
333
+ "inputs": [
334
+ {
335
+ "internalType": "address",
336
+ "name": "coreContract",
337
+ "type": "address"
338
+ },
339
+ {
340
+ "internalType": "uint256",
341
+ "name": "tokenId",
342
+ "type": "uint256"
343
+ }
344
+ ],
345
+ "name": "getTokenParams",
346
+ "outputs": [
347
+ {
348
+ "components": [
349
+ {
350
+ "internalType": "string",
351
+ "name": "key",
352
+ "type": "string"
353
+ },
354
+ {
355
+ "internalType": "string",
356
+ "name": "value",
357
+ "type": "string"
358
+ }
359
+ ],
360
+ "internalType": "struct IWeb3Call.TokenParam[]",
361
+ "name": "tokenParams",
362
+ "type": "tuple[]"
363
+ }
364
+ ],
365
+ "stateMutability": "view",
366
+ "type": "function"
367
+ },
368
+ {
369
+ "inputs": [
370
+ {
371
+ "internalType": "address",
372
+ "name": "wallet",
373
+ "type": "address"
374
+ },
375
+ {
376
+ "internalType": "address",
377
+ "name": "coreContract",
378
+ "type": "address"
379
+ },
380
+ {
381
+ "internalType": "uint256",
382
+ "name": "tokenId",
383
+ "type": "uint256"
384
+ }
385
+ ],
386
+ "name": "isTokenOwnerOrDelegate",
387
+ "outputs": [
388
+ {
389
+ "internalType": "bool",
390
+ "name": "",
391
+ "type": "bool"
392
+ }
393
+ ],
394
+ "stateMutability": "view",
395
+ "type": "function"
396
+ }
397
+ ],
398
+ "bytecode": "0x",
399
+ "deployedBytecode": "0x",
400
+ "linkReferences": {},
401
+ "deployedLinkReferences": {}
402
+ }
@@ -16,6 +16,19 @@
16
16
  "name": "ReaderUpdated",
17
17
  "type": "event"
18
18
  },
19
+ {
20
+ "inputs": [],
21
+ "name": "activeBytecodeStorageReaderContract",
22
+ "outputs": [
23
+ {
24
+ "internalType": "contract IBytecodeStorageReader_Base",
25
+ "name": "",
26
+ "type": "address"
27
+ }
28
+ ],
29
+ "stateMutability": "view",
30
+ "type": "function"
31
+ },
19
32
  {
20
33
  "inputs": [
21
34
  {
@@ -0,0 +1,47 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IWeb3Call",
4
+ "sourceName": "contracts/interfaces/v0.8.x/IWeb3Call.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "coreContract",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "uint256",
15
+ "name": "tokenId",
16
+ "type": "uint256"
17
+ }
18
+ ],
19
+ "name": "getTokenParams",
20
+ "outputs": [
21
+ {
22
+ "components": [
23
+ {
24
+ "internalType": "string",
25
+ "name": "key",
26
+ "type": "string"
27
+ },
28
+ {
29
+ "internalType": "string",
30
+ "name": "value",
31
+ "type": "string"
32
+ }
33
+ ],
34
+ "internalType": "struct IWeb3Call.TokenParam[]",
35
+ "name": "tokenParams",
36
+ "type": "tuple[]"
37
+ }
38
+ ],
39
+ "stateMutability": "view",
40
+ "type": "function"
41
+ }
42
+ ],
43
+ "bytecode": "0x",
44
+ "deployedBytecode": "0x",
45
+ "linkReferences": {},
46
+ "deployedLinkReferences": {}
47
+ }