opensea-js 2.0.1-beta.2 → 2.0.2-beta.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 (58) hide show
  1. package/lib/__tests__/api/api.js +5 -3
  2. package/lib/__tests__/api/api.js.map +1 -1
  3. package/lib/__tests__/seaport/bundles.js +218 -18
  4. package/lib/__tests__/seaport/bundles.js.map +1 -1
  5. package/lib/__tests__/seaport/fees.js +0 -1
  6. package/lib/__tests__/seaport/fees.js.map +1 -1
  7. package/lib/__tests__/seaport/orders.js +218 -26
  8. package/lib/__tests__/seaport/orders.js.map +1 -1
  9. package/lib/__tests__/seaport/staticCall.js +0 -3
  10. package/lib/__tests__/seaport/staticCall.js.map +1 -1
  11. package/lib/__tests__/utils.d.ts +1 -0
  12. package/lib/__tests__/utils.js +9 -0
  13. package/lib/__tests__/utils.js.map +1 -0
  14. package/lib/abi/CheezeWizardsBasicTournamentAbi.json +523 -0
  15. package/lib/abi/DecentralandEstatesAbi.json +614 -0
  16. package/lib/abi/ERC1155Abi.json +2346 -0
  17. package/lib/abi/ERC721v3Abi.json +470 -0
  18. package/lib/abi/UniswapExchangeAbi.json +451 -0
  19. package/lib/abi/UniswapFactoryAbi.json +67 -0
  20. package/lib/abi/WrappedNFTAbi.json +331 -0
  21. package/lib/abi/WrappedNFTFactoryAbi.json +250 -0
  22. package/lib/constants.d.ts +2 -1
  23. package/lib/constants.js +4 -3
  24. package/lib/constants.js.map +1 -1
  25. package/lib/seaport.d.ts +10 -50
  26. package/lib/seaport.js +126 -233
  27. package/lib/seaport.js.map +1 -1
  28. package/lib/typechain/contracts/CheezeWizardsBasicTournamentAbi.d.ts +232 -0
  29. package/lib/typechain/contracts/CheezeWizardsBasicTournamentAbi.js +6 -0
  30. package/lib/typechain/contracts/CheezeWizardsBasicTournamentAbi.js.map +1 -0
  31. package/lib/typechain/contracts/DecentralandEstatesAbi.d.ts +189 -0
  32. package/lib/typechain/contracts/DecentralandEstatesAbi.js +6 -0
  33. package/lib/typechain/contracts/DecentralandEstatesAbi.js.map +1 -0
  34. package/lib/typechain/contracts/ERC1155Abi.d.ts +436 -0
  35. package/lib/typechain/contracts/ERC1155Abi.js +6 -0
  36. package/lib/typechain/contracts/ERC1155Abi.js.map +1 -0
  37. package/lib/typechain/contracts/ERC721v3Abi.d.ts +76 -0
  38. package/lib/typechain/contracts/ERC721v3Abi.js +6 -0
  39. package/lib/typechain/contracts/ERC721v3Abi.js.map +1 -0
  40. package/lib/typechain/contracts/UniswapExchangeAbi.d.ts +132 -0
  41. package/lib/typechain/contracts/UniswapExchangeAbi.js +6 -0
  42. package/lib/typechain/contracts/UniswapExchangeAbi.js.map +1 -0
  43. package/lib/typechain/contracts/UniswapFactoryAbi.d.ts +37 -0
  44. package/lib/typechain/contracts/UniswapFactoryAbi.js +6 -0
  45. package/lib/typechain/contracts/UniswapFactoryAbi.js.map +1 -0
  46. package/lib/typechain/contracts/WrappedNFTAbi.d.ts +80 -0
  47. package/lib/typechain/contracts/WrappedNFTAbi.js +6 -0
  48. package/lib/typechain/contracts/WrappedNFTAbi.js.map +1 -0
  49. package/lib/typechain/contracts/WrappedNFTFactoryAbi.d.ts +57 -0
  50. package/lib/typechain/contracts/WrappedNFTFactoryAbi.js +6 -0
  51. package/lib/typechain/contracts/WrappedNFTFactoryAbi.js.map +1 -0
  52. package/lib/typechain/contracts/types.d.ts +54 -0
  53. package/lib/typechain/contracts/types.js +3 -0
  54. package/lib/typechain/contracts/types.js.map +1 -0
  55. package/lib/utils/utils.d.ts +5 -0
  56. package/lib/utils/utils.js +11 -1
  57. package/lib/utils/utils.js.map +1 -1
  58. package/package.json +1 -1
@@ -0,0 +1,614 @@
1
+ [
2
+ {
3
+ "constant": true,
4
+ "inputs": [{ "name": "_interfaceId", "type": "bytes4" }],
5
+ "name": "supportsInterface",
6
+ "outputs": [{ "name": "", "type": "bool" }],
7
+ "payable": false,
8
+ "stateMutability": "view",
9
+ "type": "function"
10
+ },
11
+ {
12
+ "constant": true,
13
+ "inputs": [],
14
+ "name": "name",
15
+ "outputs": [{ "name": "", "type": "string" }],
16
+ "payable": false,
17
+ "stateMutability": "view",
18
+ "type": "function"
19
+ },
20
+ {
21
+ "constant": false,
22
+ "inputs": [
23
+ { "name": "_name", "type": "string" },
24
+ { "name": "_symbol", "type": "string" },
25
+ { "name": "_registry", "type": "address" }
26
+ ],
27
+ "name": "initialize",
28
+ "outputs": [],
29
+ "payable": false,
30
+ "stateMutability": "nonpayable",
31
+ "type": "function"
32
+ },
33
+ {
34
+ "constant": true,
35
+ "inputs": [{ "name": "_tokenId", "type": "uint256" }],
36
+ "name": "getApproved",
37
+ "outputs": [{ "name": "", "type": "address" }],
38
+ "payable": false,
39
+ "stateMutability": "view",
40
+ "type": "function"
41
+ },
42
+ {
43
+ "constant": false,
44
+ "inputs": [
45
+ { "name": "_to", "type": "address" },
46
+ { "name": "_tokenId", "type": "uint256" }
47
+ ],
48
+ "name": "approve",
49
+ "outputs": [],
50
+ "payable": false,
51
+ "stateMutability": "nonpayable",
52
+ "type": "function"
53
+ },
54
+ {
55
+ "constant": true,
56
+ "inputs": [{ "name": "", "type": "uint256" }],
57
+ "name": "landIdEstate",
58
+ "outputs": [{ "name": "", "type": "uint256" }],
59
+ "payable": false,
60
+ "stateMutability": "view",
61
+ "type": "function"
62
+ },
63
+ {
64
+ "constant": false,
65
+ "inputs": [
66
+ { "name": "_operator", "type": "address" },
67
+ { "name": "_from", "type": "address" },
68
+ { "name": "_tokenId", "type": "uint256" },
69
+ { "name": "_data", "type": "bytes" }
70
+ ],
71
+ "name": "onERC721Received",
72
+ "outputs": [{ "name": "", "type": "bytes4" }],
73
+ "payable": false,
74
+ "stateMutability": "nonpayable",
75
+ "type": "function"
76
+ },
77
+ {
78
+ "constant": true,
79
+ "inputs": [{ "name": "estateId", "type": "uint256" }],
80
+ "name": "getFingerprint",
81
+ "outputs": [{ "name": "result", "type": "bytes32" }],
82
+ "payable": false,
83
+ "stateMutability": "view",
84
+ "type": "function"
85
+ },
86
+ {
87
+ "constant": true,
88
+ "inputs": [],
89
+ "name": "totalSupply",
90
+ "outputs": [{ "name": "", "type": "uint256" }],
91
+ "payable": false,
92
+ "stateMutability": "view",
93
+ "type": "function"
94
+ },
95
+ {
96
+ "constant": false,
97
+ "inputs": [
98
+ { "name": "_from", "type": "address" },
99
+ { "name": "_to", "type": "address" },
100
+ { "name": "_tokenId", "type": "uint256" }
101
+ ],
102
+ "name": "transferFrom",
103
+ "outputs": [],
104
+ "payable": false,
105
+ "stateMutability": "nonpayable",
106
+ "type": "function"
107
+ },
108
+ {
109
+ "constant": false,
110
+ "inputs": [
111
+ { "name": "estateId", "type": "uint256" },
112
+ { "name": "landId", "type": "uint256" },
113
+ { "name": "data", "type": "string" }
114
+ ],
115
+ "name": "updateLandData",
116
+ "outputs": [],
117
+ "payable": false,
118
+ "stateMutability": "nonpayable",
119
+ "type": "function"
120
+ },
121
+ {
122
+ "constant": true,
123
+ "inputs": [
124
+ { "name": "_owner", "type": "address" },
125
+ { "name": "_index", "type": "uint256" }
126
+ ],
127
+ "name": "tokenOfOwnerByIndex",
128
+ "outputs": [{ "name": "", "type": "uint256" }],
129
+ "payable": false,
130
+ "stateMutability": "view",
131
+ "type": "function"
132
+ },
133
+ {
134
+ "constant": true,
135
+ "inputs": [
136
+ { "name": "", "type": "uint256" },
137
+ { "name": "", "type": "uint256" }
138
+ ],
139
+ "name": "estateLandIds",
140
+ "outputs": [{ "name": "", "type": "uint256" }],
141
+ "payable": false,
142
+ "stateMutability": "view",
143
+ "type": "function"
144
+ },
145
+ {
146
+ "constant": false,
147
+ "inputs": [
148
+ { "name": "estateId", "type": "uint256" },
149
+ { "name": "landIds", "type": "uint256[]" },
150
+ { "name": "destinatary", "type": "address" }
151
+ ],
152
+ "name": "transferManyLands",
153
+ "outputs": [],
154
+ "payable": false,
155
+ "stateMutability": "nonpayable",
156
+ "type": "function"
157
+ },
158
+ {
159
+ "constant": false,
160
+ "inputs": [
161
+ { "name": "estateId", "type": "uint256" },
162
+ { "name": "landIds", "type": "uint256[]" },
163
+ { "name": "data", "type": "string" }
164
+ ],
165
+ "name": "updateManyLandData",
166
+ "outputs": [],
167
+ "payable": false,
168
+ "stateMutability": "nonpayable",
169
+ "type": "function"
170
+ },
171
+ {
172
+ "constant": false,
173
+ "inputs": [
174
+ { "name": "_from", "type": "address" },
175
+ { "name": "_to", "type": "address" },
176
+ { "name": "_tokenId", "type": "uint256" }
177
+ ],
178
+ "name": "safeTransferFrom",
179
+ "outputs": [],
180
+ "payable": false,
181
+ "stateMutability": "nonpayable",
182
+ "type": "function"
183
+ },
184
+ {
185
+ "constant": false,
186
+ "inputs": [
187
+ { "name": "_name", "type": "string" },
188
+ { "name": "_symbol", "type": "string" }
189
+ ],
190
+ "name": "initialize",
191
+ "outputs": [],
192
+ "payable": false,
193
+ "stateMutability": "nonpayable",
194
+ "type": "function"
195
+ },
196
+ {
197
+ "constant": true,
198
+ "inputs": [{ "name": "_tokenId", "type": "uint256" }],
199
+ "name": "exists",
200
+ "outputs": [{ "name": "", "type": "bool" }],
201
+ "payable": false,
202
+ "stateMutability": "view",
203
+ "type": "function"
204
+ },
205
+ {
206
+ "constant": true,
207
+ "inputs": [{ "name": "_index", "type": "uint256" }],
208
+ "name": "tokenByIndex",
209
+ "outputs": [{ "name": "", "type": "uint256" }],
210
+ "payable": false,
211
+ "stateMutability": "view",
212
+ "type": "function"
213
+ },
214
+ {
215
+ "constant": false,
216
+ "inputs": [{ "name": "_registry", "type": "address" }],
217
+ "name": "setLANDRegistry",
218
+ "outputs": [],
219
+ "payable": false,
220
+ "stateMutability": "nonpayable",
221
+ "type": "function"
222
+ },
223
+ {
224
+ "constant": false,
225
+ "inputs": [
226
+ { "name": "estateId", "type": "uint256" },
227
+ { "name": "metadata", "type": "string" }
228
+ ],
229
+ "name": "updateMetadata",
230
+ "outputs": [],
231
+ "payable": false,
232
+ "stateMutability": "nonpayable",
233
+ "type": "function"
234
+ },
235
+ {
236
+ "constant": false,
237
+ "inputs": [],
238
+ "name": "ping",
239
+ "outputs": [],
240
+ "payable": false,
241
+ "stateMutability": "nonpayable",
242
+ "type": "function"
243
+ },
244
+ {
245
+ "constant": true,
246
+ "inputs": [{ "name": "_tokenId", "type": "uint256" }],
247
+ "name": "ownerOf",
248
+ "outputs": [{ "name": "", "type": "address" }],
249
+ "payable": false,
250
+ "stateMutability": "view",
251
+ "type": "function"
252
+ },
253
+ {
254
+ "constant": true,
255
+ "inputs": [
256
+ { "name": "operator", "type": "address" },
257
+ { "name": "estateId", "type": "uint256" }
258
+ ],
259
+ "name": "isUpdateAuthorized",
260
+ "outputs": [{ "name": "", "type": "bool" }],
261
+ "payable": false,
262
+ "stateMutability": "view",
263
+ "type": "function"
264
+ },
265
+ {
266
+ "constant": true,
267
+ "inputs": [{ "name": "_owner", "type": "address" }],
268
+ "name": "balanceOf",
269
+ "outputs": [{ "name": "", "type": "uint256" }],
270
+ "payable": false,
271
+ "stateMutability": "view",
272
+ "type": "function"
273
+ },
274
+ {
275
+ "constant": false,
276
+ "inputs": [
277
+ { "name": "from", "type": "address" },
278
+ { "name": "to", "type": "address" },
279
+ { "name": "estateIds", "type": "uint256[]" }
280
+ ],
281
+ "name": "safeTransferManyFrom",
282
+ "outputs": [],
283
+ "payable": false,
284
+ "stateMutability": "nonpayable",
285
+ "type": "function"
286
+ },
287
+ {
288
+ "constant": true,
289
+ "inputs": [],
290
+ "name": "registry",
291
+ "outputs": [{ "name": "", "type": "address" }],
292
+ "payable": false,
293
+ "stateMutability": "view",
294
+ "type": "function"
295
+ },
296
+ {
297
+ "constant": false,
298
+ "inputs": [],
299
+ "name": "initialize",
300
+ "outputs": [],
301
+ "payable": false,
302
+ "stateMutability": "nonpayable",
303
+ "type": "function"
304
+ },
305
+ {
306
+ "constant": true,
307
+ "inputs": [],
308
+ "name": "owner",
309
+ "outputs": [{ "name": "", "type": "address" }],
310
+ "payable": false,
311
+ "stateMutability": "view",
312
+ "type": "function"
313
+ },
314
+ {
315
+ "constant": true,
316
+ "inputs": [
317
+ { "name": "estateId", "type": "uint256" },
318
+ { "name": "fingerprint", "type": "bytes" }
319
+ ],
320
+ "name": "verifyFingerprint",
321
+ "outputs": [{ "name": "", "type": "bool" }],
322
+ "payable": false,
323
+ "stateMutability": "view",
324
+ "type": "function"
325
+ },
326
+ {
327
+ "constant": true,
328
+ "inputs": [],
329
+ "name": "symbol",
330
+ "outputs": [{ "name": "", "type": "string" }],
331
+ "payable": false,
332
+ "stateMutability": "view",
333
+ "type": "function"
334
+ },
335
+ {
336
+ "constant": true,
337
+ "inputs": [{ "name": "", "type": "uint256" }],
338
+ "name": "updateOperator",
339
+ "outputs": [{ "name": "", "type": "address" }],
340
+ "payable": false,
341
+ "stateMutability": "view",
342
+ "type": "function"
343
+ },
344
+ {
345
+ "constant": true,
346
+ "inputs": [
347
+ { "name": "", "type": "uint256" },
348
+ { "name": "", "type": "uint256" }
349
+ ],
350
+ "name": "estateLandIndex",
351
+ "outputs": [{ "name": "", "type": "uint256" }],
352
+ "payable": false,
353
+ "stateMutability": "view",
354
+ "type": "function"
355
+ },
356
+ {
357
+ "constant": false,
358
+ "inputs": [
359
+ { "name": "_to", "type": "address" },
360
+ { "name": "_approved", "type": "bool" }
361
+ ],
362
+ "name": "setApprovalForAll",
363
+ "outputs": [],
364
+ "payable": false,
365
+ "stateMutability": "nonpayable",
366
+ "type": "function"
367
+ },
368
+ {
369
+ "constant": false,
370
+ "inputs": [
371
+ { "name": "estateId", "type": "uint256" },
372
+ { "name": "landId", "type": "uint256" },
373
+ { "name": "destinatary", "type": "address" }
374
+ ],
375
+ "name": "transferLand",
376
+ "outputs": [],
377
+ "payable": false,
378
+ "stateMutability": "nonpayable",
379
+ "type": "function"
380
+ },
381
+ {
382
+ "constant": true,
383
+ "inputs": [{ "name": "estateId", "type": "uint256" }],
384
+ "name": "getMetadata",
385
+ "outputs": [{ "name": "", "type": "string" }],
386
+ "payable": false,
387
+ "stateMutability": "view",
388
+ "type": "function"
389
+ },
390
+ {
391
+ "constant": false,
392
+ "inputs": [
393
+ { "name": "estateId", "type": "uint256" },
394
+ { "name": "operator", "type": "address" }
395
+ ],
396
+ "name": "setUpdateOperator",
397
+ "outputs": [],
398
+ "payable": false,
399
+ "stateMutability": "nonpayable",
400
+ "type": "function"
401
+ },
402
+ {
403
+ "constant": false,
404
+ "inputs": [
405
+ { "name": "_from", "type": "address" },
406
+ { "name": "_to", "type": "address" },
407
+ { "name": "_tokenId", "type": "uint256" },
408
+ { "name": "_data", "type": "bytes" }
409
+ ],
410
+ "name": "safeTransferFrom",
411
+ "outputs": [],
412
+ "payable": false,
413
+ "stateMutability": "nonpayable",
414
+ "type": "function"
415
+ },
416
+ {
417
+ "constant": true,
418
+ "inputs": [{ "name": "landId", "type": "uint256" }],
419
+ "name": "getLandEstateId",
420
+ "outputs": [{ "name": "", "type": "uint256" }],
421
+ "payable": false,
422
+ "stateMutability": "view",
423
+ "type": "function"
424
+ },
425
+ {
426
+ "constant": true,
427
+ "inputs": [
428
+ { "name": "contractName", "type": "string" },
429
+ { "name": "migrationId", "type": "string" }
430
+ ],
431
+ "name": "isMigrated",
432
+ "outputs": [{ "name": "", "type": "bool" }],
433
+ "payable": false,
434
+ "stateMutability": "view",
435
+ "type": "function"
436
+ },
437
+ {
438
+ "constant": false,
439
+ "inputs": [{ "name": "_sender", "type": "address" }],
440
+ "name": "initialize",
441
+ "outputs": [],
442
+ "payable": false,
443
+ "stateMutability": "nonpayable",
444
+ "type": "function"
445
+ },
446
+ {
447
+ "constant": true,
448
+ "inputs": [{ "name": "_tokenId", "type": "uint256" }],
449
+ "name": "tokenURI",
450
+ "outputs": [{ "name": "", "type": "string" }],
451
+ "payable": false,
452
+ "stateMutability": "view",
453
+ "type": "function"
454
+ },
455
+ {
456
+ "constant": false,
457
+ "inputs": [
458
+ { "name": "to", "type": "address" },
459
+ { "name": "metadata", "type": "string" }
460
+ ],
461
+ "name": "mint",
462
+ "outputs": [{ "name": "", "type": "uint256" }],
463
+ "payable": false,
464
+ "stateMutability": "nonpayable",
465
+ "type": "function"
466
+ },
467
+ {
468
+ "constant": false,
469
+ "inputs": [
470
+ { "name": "from", "type": "address" },
471
+ { "name": "to", "type": "address" },
472
+ { "name": "estateIds", "type": "uint256[]" },
473
+ { "name": "data", "type": "bytes" }
474
+ ],
475
+ "name": "safeTransferManyFrom",
476
+ "outputs": [],
477
+ "payable": false,
478
+ "stateMutability": "nonpayable",
479
+ "type": "function"
480
+ },
481
+ {
482
+ "constant": true,
483
+ "inputs": [
484
+ { "name": "_owner", "type": "address" },
485
+ { "name": "_operator", "type": "address" }
486
+ ],
487
+ "name": "isApprovedForAll",
488
+ "outputs": [{ "name": "", "type": "bool" }],
489
+ "payable": false,
490
+ "stateMutability": "view",
491
+ "type": "function"
492
+ },
493
+ {
494
+ "constant": false,
495
+ "inputs": [{ "name": "newOwner", "type": "address" }],
496
+ "name": "transferOwnership",
497
+ "outputs": [],
498
+ "payable": false,
499
+ "stateMutability": "nonpayable",
500
+ "type": "function"
501
+ },
502
+ {
503
+ "constant": true,
504
+ "inputs": [{ "name": "estateId", "type": "uint256" }],
505
+ "name": "getEstateSize",
506
+ "outputs": [{ "name": "", "type": "uint256" }],
507
+ "payable": false,
508
+ "stateMutability": "view",
509
+ "type": "function"
510
+ },
511
+ {
512
+ "anonymous": false,
513
+ "inputs": [
514
+ { "indexed": true, "name": "previousOwner", "type": "address" },
515
+ { "indexed": true, "name": "newOwner", "type": "address" }
516
+ ],
517
+ "name": "OwnershipTransferred",
518
+ "type": "event"
519
+ },
520
+ {
521
+ "anonymous": false,
522
+ "inputs": [
523
+ { "indexed": true, "name": "_from", "type": "address" },
524
+ { "indexed": true, "name": "_to", "type": "address" },
525
+ { "indexed": true, "name": "_tokenId", "type": "uint256" }
526
+ ],
527
+ "name": "Transfer",
528
+ "type": "event"
529
+ },
530
+ {
531
+ "anonymous": false,
532
+ "inputs": [
533
+ { "indexed": true, "name": "_owner", "type": "address" },
534
+ { "indexed": true, "name": "_approved", "type": "address" },
535
+ { "indexed": true, "name": "_tokenId", "type": "uint256" }
536
+ ],
537
+ "name": "Approval",
538
+ "type": "event"
539
+ },
540
+ {
541
+ "anonymous": false,
542
+ "inputs": [
543
+ { "indexed": true, "name": "_owner", "type": "address" },
544
+ { "indexed": true, "name": "_operator", "type": "address" },
545
+ { "indexed": false, "name": "_approved", "type": "bool" }
546
+ ],
547
+ "name": "ApprovalForAll",
548
+ "type": "event"
549
+ },
550
+ {
551
+ "anonymous": false,
552
+ "inputs": [
553
+ { "indexed": true, "name": "_owner", "type": "address" },
554
+ { "indexed": true, "name": "_estateId", "type": "uint256" },
555
+ { "indexed": false, "name": "_data", "type": "string" }
556
+ ],
557
+ "name": "CreateEstate",
558
+ "type": "event"
559
+ },
560
+ {
561
+ "anonymous": false,
562
+ "inputs": [
563
+ { "indexed": true, "name": "_estateId", "type": "uint256" },
564
+ { "indexed": true, "name": "_landId", "type": "uint256" }
565
+ ],
566
+ "name": "AddLand",
567
+ "type": "event"
568
+ },
569
+ {
570
+ "anonymous": false,
571
+ "inputs": [
572
+ { "indexed": true, "name": "_estateId", "type": "uint256" },
573
+ { "indexed": true, "name": "_landId", "type": "uint256" },
574
+ { "indexed": true, "name": "_destinatary", "type": "address" }
575
+ ],
576
+ "name": "RemoveLand",
577
+ "type": "event"
578
+ },
579
+ {
580
+ "anonymous": false,
581
+ "inputs": [
582
+ { "indexed": true, "name": "_assetId", "type": "uint256" },
583
+ { "indexed": true, "name": "_holder", "type": "address" },
584
+ { "indexed": true, "name": "_operator", "type": "address" },
585
+ { "indexed": false, "name": "_data", "type": "string" }
586
+ ],
587
+ "name": "Update",
588
+ "type": "event"
589
+ },
590
+ {
591
+ "anonymous": false,
592
+ "inputs": [
593
+ { "indexed": true, "name": "_estateId", "type": "uint256" },
594
+ { "indexed": true, "name": "_operator", "type": "address" }
595
+ ],
596
+ "name": "UpdateOperator",
597
+ "type": "event"
598
+ },
599
+ {
600
+ "anonymous": false,
601
+ "inputs": [{ "indexed": true, "name": "_registry", "type": "address" }],
602
+ "name": "SetLANDRegistry",
603
+ "type": "event"
604
+ },
605
+ {
606
+ "anonymous": false,
607
+ "inputs": [
608
+ { "indexed": false, "name": "contractName", "type": "string" },
609
+ { "indexed": false, "name": "migrationId", "type": "string" }
610
+ ],
611
+ "name": "Migrated",
612
+ "type": "event"
613
+ }
614
+ ]