@flarenetwork/flare-periphery-contract-artifacts 0.1.46 → 0.1.47

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.
@@ -0,0 +1,586 @@
1
+ [
2
+ {
3
+ "anonymous": false,
4
+ "inputs": [
5
+ {
6
+ "indexed": false,
7
+ "internalType": "uint256",
8
+ "name": "tag",
9
+ "type": "uint256"
10
+ },
11
+ {
12
+ "indexed": false,
13
+ "internalType": "address",
14
+ "name": "executor",
15
+ "type": "address"
16
+ },
17
+ {
18
+ "indexed": false,
19
+ "internalType": "uint256",
20
+ "name": "activeAfterTs",
21
+ "type": "uint256"
22
+ }
23
+ ],
24
+ "name": "AllowedExecutorChangePending",
25
+ "type": "event"
26
+ },
27
+ {
28
+ "anonymous": false,
29
+ "inputs": [
30
+ {
31
+ "indexed": true,
32
+ "internalType": "address",
33
+ "name": "owner",
34
+ "type": "address"
35
+ },
36
+ {
37
+ "indexed": true,
38
+ "internalType": "address",
39
+ "name": "approved",
40
+ "type": "address"
41
+ },
42
+ {
43
+ "indexed": true,
44
+ "internalType": "uint256",
45
+ "name": "tokenId",
46
+ "type": "uint256"
47
+ }
48
+ ],
49
+ "name": "Approval",
50
+ "type": "event"
51
+ },
52
+ {
53
+ "anonymous": false,
54
+ "inputs": [
55
+ {
56
+ "indexed": true,
57
+ "internalType": "address",
58
+ "name": "owner",
59
+ "type": "address"
60
+ },
61
+ {
62
+ "indexed": true,
63
+ "internalType": "address",
64
+ "name": "operator",
65
+ "type": "address"
66
+ },
67
+ {
68
+ "indexed": false,
69
+ "internalType": "bool",
70
+ "name": "approved",
71
+ "type": "bool"
72
+ }
73
+ ],
74
+ "name": "ApprovalForAll",
75
+ "type": "event"
76
+ },
77
+ {
78
+ "anonymous": false,
79
+ "inputs": [
80
+ {
81
+ "indexed": false,
82
+ "internalType": "uint256",
83
+ "name": "tag",
84
+ "type": "uint256"
85
+ },
86
+ {
87
+ "indexed": false,
88
+ "internalType": "address",
89
+ "name": "owner",
90
+ "type": "address"
91
+ }
92
+ ],
93
+ "name": "MintingTagReserved",
94
+ "type": "event"
95
+ },
96
+ {
97
+ "anonymous": false,
98
+ "inputs": [
99
+ {
100
+ "indexed": false,
101
+ "internalType": "uint256",
102
+ "name": "tag",
103
+ "type": "uint256"
104
+ },
105
+ {
106
+ "indexed": false,
107
+ "internalType": "address",
108
+ "name": "recipient",
109
+ "type": "address"
110
+ }
111
+ ],
112
+ "name": "RecipientChanged",
113
+ "type": "event"
114
+ },
115
+ {
116
+ "anonymous": false,
117
+ "inputs": [
118
+ {
119
+ "indexed": false,
120
+ "internalType": "uint256",
121
+ "name": "reservationFee",
122
+ "type": "uint256"
123
+ },
124
+ {
125
+ "indexed": false,
126
+ "internalType": "address",
127
+ "name": "recipient",
128
+ "type": "address"
129
+ }
130
+ ],
131
+ "name": "ReservationFeeChanged",
132
+ "type": "event"
133
+ },
134
+ {
135
+ "anonymous": false,
136
+ "inputs": [
137
+ {
138
+ "indexed": true,
139
+ "internalType": "address",
140
+ "name": "from",
141
+ "type": "address"
142
+ },
143
+ {
144
+ "indexed": true,
145
+ "internalType": "address",
146
+ "name": "to",
147
+ "type": "address"
148
+ },
149
+ {
150
+ "indexed": true,
151
+ "internalType": "uint256",
152
+ "name": "tokenId",
153
+ "type": "uint256"
154
+ }
155
+ ],
156
+ "name": "Transfer",
157
+ "type": "event"
158
+ },
159
+ {
160
+ "inputs": [
161
+ {
162
+ "internalType": "uint256",
163
+ "name": "_mintingTag",
164
+ "type": "uint256"
165
+ }
166
+ ],
167
+ "name": "allowedExecutor",
168
+ "outputs": [
169
+ {
170
+ "internalType": "address",
171
+ "name": "",
172
+ "type": "address"
173
+ }
174
+ ],
175
+ "stateMutability": "view",
176
+ "type": "function"
177
+ },
178
+ {
179
+ "inputs": [
180
+ {
181
+ "internalType": "address",
182
+ "name": "to",
183
+ "type": "address"
184
+ },
185
+ {
186
+ "internalType": "uint256",
187
+ "name": "tokenId",
188
+ "type": "uint256"
189
+ }
190
+ ],
191
+ "name": "approve",
192
+ "outputs": [],
193
+ "stateMutability": "nonpayable",
194
+ "type": "function"
195
+ },
196
+ {
197
+ "inputs": [
198
+ {
199
+ "internalType": "address",
200
+ "name": "owner",
201
+ "type": "address"
202
+ }
203
+ ],
204
+ "name": "balanceOf",
205
+ "outputs": [
206
+ {
207
+ "internalType": "uint256",
208
+ "name": "balance",
209
+ "type": "uint256"
210
+ }
211
+ ],
212
+ "stateMutability": "view",
213
+ "type": "function"
214
+ },
215
+ {
216
+ "inputs": [
217
+ {
218
+ "internalType": "uint256",
219
+ "name": "tokenId",
220
+ "type": "uint256"
221
+ }
222
+ ],
223
+ "name": "getApproved",
224
+ "outputs": [
225
+ {
226
+ "internalType": "address",
227
+ "name": "operator",
228
+ "type": "address"
229
+ }
230
+ ],
231
+ "stateMutability": "view",
232
+ "type": "function"
233
+ },
234
+ {
235
+ "inputs": [
236
+ {
237
+ "internalType": "address",
238
+ "name": "owner",
239
+ "type": "address"
240
+ },
241
+ {
242
+ "internalType": "address",
243
+ "name": "operator",
244
+ "type": "address"
245
+ }
246
+ ],
247
+ "name": "isApprovedForAll",
248
+ "outputs": [
249
+ {
250
+ "internalType": "bool",
251
+ "name": "",
252
+ "type": "bool"
253
+ }
254
+ ],
255
+ "stateMutability": "view",
256
+ "type": "function"
257
+ },
258
+ {
259
+ "inputs": [
260
+ {
261
+ "internalType": "uint256",
262
+ "name": "_mintingTag",
263
+ "type": "uint256"
264
+ }
265
+ ],
266
+ "name": "mintingRecipient",
267
+ "outputs": [
268
+ {
269
+ "internalType": "address",
270
+ "name": "",
271
+ "type": "address"
272
+ }
273
+ ],
274
+ "stateMutability": "view",
275
+ "type": "function"
276
+ },
277
+ {
278
+ "inputs": [],
279
+ "name": "nextAvailableTag",
280
+ "outputs": [
281
+ {
282
+ "internalType": "uint256",
283
+ "name": "",
284
+ "type": "uint256"
285
+ }
286
+ ],
287
+ "stateMutability": "view",
288
+ "type": "function"
289
+ },
290
+ {
291
+ "inputs": [
292
+ {
293
+ "internalType": "uint256",
294
+ "name": "tokenId",
295
+ "type": "uint256"
296
+ }
297
+ ],
298
+ "name": "ownerOf",
299
+ "outputs": [
300
+ {
301
+ "internalType": "address",
302
+ "name": "owner",
303
+ "type": "address"
304
+ }
305
+ ],
306
+ "stateMutability": "view",
307
+ "type": "function"
308
+ },
309
+ {
310
+ "inputs": [
311
+ {
312
+ "internalType": "uint256",
313
+ "name": "_mintingTag",
314
+ "type": "uint256"
315
+ }
316
+ ],
317
+ "name": "pendingAllowedExecutorChange",
318
+ "outputs": [
319
+ {
320
+ "internalType": "bool",
321
+ "name": "_pending",
322
+ "type": "bool"
323
+ },
324
+ {
325
+ "internalType": "address",
326
+ "name": "_newExecutor",
327
+ "type": "address"
328
+ },
329
+ {
330
+ "internalType": "uint256",
331
+ "name": "_activeAfterTs",
332
+ "type": "uint256"
333
+ }
334
+ ],
335
+ "stateMutability": "view",
336
+ "type": "function"
337
+ },
338
+ {
339
+ "inputs": [],
340
+ "name": "reservationFee",
341
+ "outputs": [
342
+ {
343
+ "internalType": "uint256",
344
+ "name": "",
345
+ "type": "uint256"
346
+ }
347
+ ],
348
+ "stateMutability": "view",
349
+ "type": "function"
350
+ },
351
+ {
352
+ "inputs": [],
353
+ "name": "reserve",
354
+ "outputs": [
355
+ {
356
+ "internalType": "uint256",
357
+ "name": "",
358
+ "type": "uint256"
359
+ }
360
+ ],
361
+ "stateMutability": "payable",
362
+ "type": "function"
363
+ },
364
+ {
365
+ "inputs": [
366
+ {
367
+ "internalType": "address",
368
+ "name": "_owner",
369
+ "type": "address"
370
+ }
371
+ ],
372
+ "name": "reservedTagsForOwner",
373
+ "outputs": [
374
+ {
375
+ "internalType": "uint256[]",
376
+ "name": "",
377
+ "type": "uint256[]"
378
+ }
379
+ ],
380
+ "stateMutability": "view",
381
+ "type": "function"
382
+ },
383
+ {
384
+ "inputs": [
385
+ {
386
+ "internalType": "address",
387
+ "name": "from",
388
+ "type": "address"
389
+ },
390
+ {
391
+ "internalType": "address",
392
+ "name": "to",
393
+ "type": "address"
394
+ },
395
+ {
396
+ "internalType": "uint256",
397
+ "name": "tokenId",
398
+ "type": "uint256"
399
+ }
400
+ ],
401
+ "name": "safeTransferFrom",
402
+ "outputs": [],
403
+ "stateMutability": "nonpayable",
404
+ "type": "function"
405
+ },
406
+ {
407
+ "inputs": [
408
+ {
409
+ "internalType": "address",
410
+ "name": "from",
411
+ "type": "address"
412
+ },
413
+ {
414
+ "internalType": "address",
415
+ "name": "to",
416
+ "type": "address"
417
+ },
418
+ {
419
+ "internalType": "uint256",
420
+ "name": "tokenId",
421
+ "type": "uint256"
422
+ },
423
+ {
424
+ "internalType": "bytes",
425
+ "name": "data",
426
+ "type": "bytes"
427
+ }
428
+ ],
429
+ "name": "safeTransferFrom",
430
+ "outputs": [],
431
+ "stateMutability": "nonpayable",
432
+ "type": "function"
433
+ },
434
+ {
435
+ "inputs": [
436
+ {
437
+ "internalType": "address",
438
+ "name": "operator",
439
+ "type": "address"
440
+ },
441
+ {
442
+ "internalType": "bool",
443
+ "name": "approved",
444
+ "type": "bool"
445
+ }
446
+ ],
447
+ "name": "setApprovalForAll",
448
+ "outputs": [],
449
+ "stateMutability": "nonpayable",
450
+ "type": "function"
451
+ },
452
+ {
453
+ "inputs": [
454
+ {
455
+ "internalType": "uint256",
456
+ "name": "_mintingTag",
457
+ "type": "uint256"
458
+ },
459
+ {
460
+ "internalType": "address",
461
+ "name": "_recipient",
462
+ "type": "address"
463
+ }
464
+ ],
465
+ "name": "setMintingRecipient",
466
+ "outputs": [],
467
+ "stateMutability": "nonpayable",
468
+ "type": "function"
469
+ },
470
+ {
471
+ "inputs": [
472
+ {
473
+ "internalType": "bytes4",
474
+ "name": "interfaceId",
475
+ "type": "bytes4"
476
+ }
477
+ ],
478
+ "name": "supportsInterface",
479
+ "outputs": [
480
+ {
481
+ "internalType": "bool",
482
+ "name": "",
483
+ "type": "bool"
484
+ }
485
+ ],
486
+ "stateMutability": "view",
487
+ "type": "function"
488
+ },
489
+ {
490
+ "inputs": [
491
+ {
492
+ "internalType": "uint256",
493
+ "name": "index",
494
+ "type": "uint256"
495
+ }
496
+ ],
497
+ "name": "tokenByIndex",
498
+ "outputs": [
499
+ {
500
+ "internalType": "uint256",
501
+ "name": "",
502
+ "type": "uint256"
503
+ }
504
+ ],
505
+ "stateMutability": "view",
506
+ "type": "function"
507
+ },
508
+ {
509
+ "inputs": [
510
+ {
511
+ "internalType": "address",
512
+ "name": "owner",
513
+ "type": "address"
514
+ },
515
+ {
516
+ "internalType": "uint256",
517
+ "name": "index",
518
+ "type": "uint256"
519
+ }
520
+ ],
521
+ "name": "tokenOfOwnerByIndex",
522
+ "outputs": [
523
+ {
524
+ "internalType": "uint256",
525
+ "name": "",
526
+ "type": "uint256"
527
+ }
528
+ ],
529
+ "stateMutability": "view",
530
+ "type": "function"
531
+ },
532
+ {
533
+ "inputs": [],
534
+ "name": "totalSupply",
535
+ "outputs": [
536
+ {
537
+ "internalType": "uint256",
538
+ "name": "",
539
+ "type": "uint256"
540
+ }
541
+ ],
542
+ "stateMutability": "view",
543
+ "type": "function"
544
+ },
545
+ {
546
+ "inputs": [
547
+ {
548
+ "internalType": "address",
549
+ "name": "_to",
550
+ "type": "address"
551
+ },
552
+ {
553
+ "internalType": "uint256",
554
+ "name": "_mintingTag",
555
+ "type": "uint256"
556
+ }
557
+ ],
558
+ "name": "transfer",
559
+ "outputs": [],
560
+ "stateMutability": "nonpayable",
561
+ "type": "function"
562
+ },
563
+ {
564
+ "inputs": [
565
+ {
566
+ "internalType": "address",
567
+ "name": "from",
568
+ "type": "address"
569
+ },
570
+ {
571
+ "internalType": "address",
572
+ "name": "to",
573
+ "type": "address"
574
+ },
575
+ {
576
+ "internalType": "uint256",
577
+ "name": "tokenId",
578
+ "type": "uint256"
579
+ }
580
+ ],
581
+ "name": "transferFrom",
582
+ "outputs": [],
583
+ "stateMutability": "nonpayable",
584
+ "type": "function"
585
+ }
586
+ ]
package/dist/index.js CHANGED
@@ -126,6 +126,7 @@ var IInstructionFeesFacet = require('./coston/artifacts/contracts/IInstructionFe
126
126
  var IInstructionsFacet = require('./coston/artifacts/contracts/IInstructionsFacet.sol/IInstructionsFacet.json');
127
127
  var IMasterAccountController = require('./coston/artifacts/contracts/IMasterAccountController.sol/IMasterAccountController.json');
128
128
  var IMemoInstructionsFacet = require('./coston/artifacts/contracts/IMemoInstructionsFacet.sol/IMemoInstructionsFacet.json');
129
+ var IMintingTagManager = require('./coston/artifacts/contracts/IMintingTagManager.sol/IMintingTagManager.json');
129
130
  var IOwnableWithTimelock = require('./coston/artifacts/contracts/IOwnableWithTimelock.sol/IOwnableWithTimelock.json');
130
131
  var IPauseFacet = require('./coston/artifacts/contracts/IPauseFacet.sol/IPauseFacet.json');
131
132
  var IPayment = require('./coston/artifacts/contracts/IPayment.sol/IPayment.json');
@@ -308,6 +309,7 @@ var IInstructionFeesFacet$1 = require('./coston2/artifacts/contracts/IInstructio
308
309
  var IInstructionsFacet$1 = require('./coston2/artifacts/contracts/IInstructionsFacet.sol/IInstructionsFacet.json');
309
310
  var IMasterAccountController$1 = require('./coston2/artifacts/contracts/IMasterAccountController.sol/IMasterAccountController.json');
310
311
  var IMemoInstructionsFacet$1 = require('./coston2/artifacts/contracts/IMemoInstructionsFacet.sol/IMemoInstructionsFacet.json');
312
+ var IMintingTagManager$1 = require('./coston2/artifacts/contracts/IMintingTagManager.sol/IMintingTagManager.json');
311
313
  var IOwnableWithTimelock$1 = require('./coston2/artifacts/contracts/IOwnableWithTimelock.sol/IOwnableWithTimelock.json');
312
314
  var IPChainStakeMirror = require('./coston2/artifacts/contracts/IPChainStakeMirror.sol/IPChainStakeMirror.json');
313
315
  var IPChainStakeMirrorMultiSigVoting = require('./coston2/artifacts/contracts/IPChainStakeMirrorMultiSigVoting.sol/IPChainStakeMirrorMultiSigVoting.json');
@@ -495,6 +497,7 @@ var IInstructionFeesFacet$2 = require('./flare/artifacts/contracts/IInstructionF
495
497
  var IInstructionsFacet$2 = require('./flare/artifacts/contracts/IInstructionsFacet.sol/IInstructionsFacet.json');
496
498
  var IMasterAccountController$2 = require('./flare/artifacts/contracts/IMasterAccountController.sol/IMasterAccountController.json');
497
499
  var IMemoInstructionsFacet$2 = require('./flare/artifacts/contracts/IMemoInstructionsFacet.sol/IMemoInstructionsFacet.json');
500
+ var IMintingTagManager$2 = require('./flare/artifacts/contracts/IMintingTagManager.sol/IMintingTagManager.json');
498
501
  var IOwnableWithTimelock$2 = require('./flare/artifacts/contracts/IOwnableWithTimelock.sol/IOwnableWithTimelock.json');
499
502
  var IPChainStakeMirror$1 = require('./flare/artifacts/contracts/IPChainStakeMirror.sol/IPChainStakeMirror.json');
500
503
  var IPChainStakeMirrorMultiSigVoting$1 = require('./flare/artifacts/contracts/IPChainStakeMirrorMultiSigVoting.sol/IPChainStakeMirrorMultiSigVoting.json');
@@ -674,6 +677,7 @@ var IInstructionFeesFacet$3 = require('./songbird/artifacts/contracts/IInstructi
674
677
  var IInstructionsFacet$3 = require('./songbird/artifacts/contracts/IInstructionsFacet.sol/IInstructionsFacet.json');
675
678
  var IMasterAccountController$3 = require('./songbird/artifacts/contracts/IMasterAccountController.sol/IMasterAccountController.json');
676
679
  var IMemoInstructionsFacet$3 = require('./songbird/artifacts/contracts/IMemoInstructionsFacet.sol/IMemoInstructionsFacet.json');
680
+ var IMintingTagManager$3 = require('./songbird/artifacts/contracts/IMintingTagManager.sol/IMintingTagManager.json');
677
681
  var IOwnableWithTimelock$3 = require('./songbird/artifacts/contracts/IOwnableWithTimelock.sol/IOwnableWithTimelock.json');
678
682
  var IPauseFacet$3 = require('./songbird/artifacts/contracts/IPauseFacet.sol/IPauseFacet.json');
679
683
  var IPayment$3 = require('./songbird/artifacts/contracts/IPayment.sol/IPayment.json');
@@ -8445,6 +8449,7 @@ const interfaceAbis$3 = {
8445
8449
  IInstructionsFacet: IInstructionsFacet,
8446
8450
  IMasterAccountController: IMasterAccountController,
8447
8451
  IMemoInstructionsFacet: IMemoInstructionsFacet,
8452
+ IMintingTagManager: IMintingTagManager,
8448
8453
  IOwnableWithTimelock: IOwnableWithTimelock,
8449
8454
  IPauseFacet: IPauseFacet,
8450
8455
  IPayment: IPayment,
@@ -8940,6 +8945,7 @@ const interfaceAbis$2 = {
8940
8945
  IInstructionsFacet: IInstructionsFacet$1,
8941
8946
  IMasterAccountController: IMasterAccountController$1,
8942
8947
  IMemoInstructionsFacet: IMemoInstructionsFacet$1,
8948
+ IMintingTagManager: IMintingTagManager$1,
8943
8949
  IOwnableWithTimelock: IOwnableWithTimelock$1,
8944
8950
  IPChainStakeMirror: IPChainStakeMirror,
8945
8951
  IPChainStakeMirrorMultiSigVoting: IPChainStakeMirrorMultiSigVoting,
@@ -9454,6 +9460,7 @@ const interfaceAbis$1 = {
9454
9460
  IInstructionsFacet: IInstructionsFacet$2,
9455
9461
  IMasterAccountController: IMasterAccountController$2,
9456
9462
  IMemoInstructionsFacet: IMemoInstructionsFacet$2,
9463
+ IMintingTagManager: IMintingTagManager$2,
9457
9464
  IOwnableWithTimelock: IOwnableWithTimelock$2,
9458
9465
  IPChainStakeMirror: IPChainStakeMirror$1,
9459
9466
  IPChainStakeMirrorMultiSigVoting: IPChainStakeMirrorMultiSigVoting$1,
@@ -9960,6 +9967,7 @@ const interfaceAbis = {
9960
9967
  IInstructionsFacet: IInstructionsFacet$3,
9961
9968
  IMasterAccountController: IMasterAccountController$3,
9962
9969
  IMemoInstructionsFacet: IMemoInstructionsFacet$3,
9970
+ IMintingTagManager: IMintingTagManager$3,
9963
9971
  IOwnableWithTimelock: IOwnableWithTimelock$3,
9964
9972
  IPauseFacet: IPauseFacet$3,
9965
9973
  IPayment: IPayment$3,