@rareprotocol/rare-cli 0.2.1 → 0.3.0

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,2144 @@
1
+ import { Chain, Address, Hash, TransactionReceipt, PublicClient, WalletClient } from 'viem';
2
+
3
+ declare const supportedChains: readonly ["mainnet", "sepolia", "base", "base-sepolia"];
4
+ type SupportedChain = (typeof supportedChains)[number];
5
+ declare const viemChains: Record<SupportedChain, Chain>;
6
+ declare const chainIds: Record<SupportedChain, number>;
7
+ type ContractSet = {
8
+ factory: `0x${string}`;
9
+ auction: `0x${string}`;
10
+ };
11
+ declare const contractAddresses: Partial<Record<SupportedChain, ContractSet>>;
12
+ declare function getContractAddresses(chain: SupportedChain): ContractSet;
13
+ declare function isSupportedChain(value: string): value is SupportedChain;
14
+
15
+ type SearchPageResponse = {
16
+ items: Record<string, unknown>[];
17
+ total: number;
18
+ hasNextPage: boolean;
19
+ nextCursor: number;
20
+ };
21
+ type NftSearchParams = {
22
+ query?: string;
23
+ take?: number;
24
+ cursor?: number;
25
+ sortBy?: string;
26
+ ownerAddresses?: string[];
27
+ creatorAddresses?: string[];
28
+ collectionIds?: string[];
29
+ contractAddresses?: string[];
30
+ auctionStates?: string[];
31
+ chainIds?: number[];
32
+ };
33
+ type CollectionSearchParams = {
34
+ query?: string;
35
+ take?: number;
36
+ cursor?: number;
37
+ sortBy?: string;
38
+ ownerAddresses?: string[];
39
+ };
40
+
41
+ type NftMediaEntry = {
42
+ url: string;
43
+ mimeType: string;
44
+ size: number;
45
+ dimensions?: {
46
+ width: number;
47
+ height: number;
48
+ };
49
+ };
50
+ type NftAttribute = {
51
+ trait_type?: string;
52
+ value: string | number;
53
+ display_type?: 'number' | 'boost_number' | 'boost_percentage' | 'date';
54
+ max_value?: number;
55
+ };
56
+ type PinMetadataParams = {
57
+ name: string;
58
+ description: string;
59
+ image: NftMediaEntry;
60
+ video?: NftMediaEntry;
61
+ tags?: string[];
62
+ attributes?: NftAttribute[];
63
+ };
64
+ type ImportErc721Params = {
65
+ contract: Address;
66
+ owner?: Address;
67
+ };
68
+
69
+ type IntegerInput = bigint | number | string;
70
+ type AmountInput = bigint | number | string;
71
+ interface RareClientConfig {
72
+ publicClient: PublicClient;
73
+ walletClient?: WalletClient;
74
+ account?: Address;
75
+ }
76
+ interface TransactionResult {
77
+ txHash: Hash;
78
+ receipt: TransactionReceipt;
79
+ }
80
+ interface DeployErc721Params {
81
+ name: string;
82
+ symbol: string;
83
+ maxTokens?: IntegerInput;
84
+ }
85
+ interface DeployErc721Result extends TransactionResult {
86
+ contract: Address | undefined;
87
+ }
88
+ interface MintToParams {
89
+ contract: Address;
90
+ tokenUri: string;
91
+ to?: Address;
92
+ royaltyReceiver?: Address;
93
+ }
94
+ interface MintToResult extends TransactionResult {
95
+ tokenId: bigint | undefined;
96
+ }
97
+ interface AuctionCreateParams {
98
+ contract: Address;
99
+ tokenId: IntegerInput;
100
+ startingPrice: AmountInput;
101
+ duration: IntegerInput;
102
+ currency?: Address;
103
+ splitAddresses?: Address[];
104
+ splitRatios?: number[];
105
+ autoApprove?: boolean;
106
+ }
107
+ interface AuctionBidParams {
108
+ contract: Address;
109
+ tokenId: IntegerInput;
110
+ amount: AmountInput;
111
+ currency?: Address;
112
+ }
113
+ interface AuctionSettleParams {
114
+ contract: Address;
115
+ tokenId: IntegerInput;
116
+ }
117
+ interface AuctionCancelParams {
118
+ contract: Address;
119
+ tokenId: IntegerInput;
120
+ }
121
+ interface AuctionStatusParams {
122
+ contract: Address;
123
+ tokenId: IntegerInput;
124
+ }
125
+ interface AuctionStatus {
126
+ seller: Address;
127
+ creationBlock: bigint;
128
+ startingTime: bigint;
129
+ lengthOfAuction: bigint;
130
+ currency: Address;
131
+ minimumBid: bigint;
132
+ auctionType: `0x${string}`;
133
+ splitAddresses: Address[];
134
+ splitRatios: number[];
135
+ isEth: boolean;
136
+ started: boolean;
137
+ endTime: bigint | null;
138
+ status: 'PENDING' | 'RUNNING' | 'ENDED';
139
+ }
140
+ interface TokenContractInfo {
141
+ contract: Address;
142
+ chain: SupportedChain;
143
+ name: string;
144
+ symbol: string;
145
+ totalSupply: bigint;
146
+ }
147
+ interface TokenInfo {
148
+ contract: Address;
149
+ tokenId: bigint;
150
+ owner: Address;
151
+ tokenUri: string;
152
+ }
153
+ interface RareClient {
154
+ chain: SupportedChain;
155
+ chainId: number;
156
+ contracts: {
157
+ factory: Address;
158
+ auction: Address;
159
+ };
160
+ deploy: {
161
+ erc721(params: DeployErc721Params): Promise<DeployErc721Result>;
162
+ };
163
+ mint: {
164
+ mintTo(params: MintToParams): Promise<MintToResult>;
165
+ };
166
+ auction: {
167
+ create(params: AuctionCreateParams): Promise<TransactionResult & {
168
+ approvalTxHash?: Hash;
169
+ }>;
170
+ bid(params: AuctionBidParams): Promise<TransactionResult>;
171
+ settle(params: AuctionSettleParams): Promise<TransactionResult>;
172
+ cancel(params: AuctionCancelParams): Promise<TransactionResult>;
173
+ getStatus(params: AuctionStatusParams): Promise<AuctionStatus>;
174
+ };
175
+ search: {
176
+ nfts(params?: NftSearchParams): Promise<SearchPageResponse>;
177
+ collections(params?: CollectionSearchParams): Promise<SearchPageResponse>;
178
+ };
179
+ media: {
180
+ upload(buffer: Uint8Array, filename: string): Promise<NftMediaEntry>;
181
+ pinMetadata(opts: PinMetadataParams): Promise<string>;
182
+ };
183
+ import: {
184
+ erc721(params: ImportErc721Params): Promise<void>;
185
+ };
186
+ token: {
187
+ getContractInfo(params: {
188
+ contract: Address;
189
+ }): Promise<TokenContractInfo>;
190
+ getTokenInfo(params: {
191
+ contract: Address;
192
+ tokenId: IntegerInput;
193
+ }): Promise<TokenInfo>;
194
+ };
195
+ }
196
+ declare function createRareClient(config: RareClientConfig): RareClient;
197
+
198
+ declare const factoryAbi: readonly [{
199
+ readonly type: "constructor";
200
+ readonly inputs: readonly [{
201
+ readonly name: "_sovereignBatchMintImplementation";
202
+ readonly type: "address";
203
+ readonly internalType: "address";
204
+ }];
205
+ readonly stateMutability: "nonpayable";
206
+ }, {
207
+ readonly type: "function";
208
+ readonly name: "createSovereignBatchMint";
209
+ readonly inputs: readonly [{
210
+ readonly name: "_name";
211
+ readonly type: "string";
212
+ readonly internalType: "string";
213
+ }, {
214
+ readonly name: "_symbol";
215
+ readonly type: "string";
216
+ readonly internalType: "string";
217
+ }];
218
+ readonly outputs: readonly [{
219
+ readonly name: "";
220
+ readonly type: "address";
221
+ readonly internalType: "address";
222
+ }];
223
+ readonly stateMutability: "nonpayable";
224
+ }, {
225
+ readonly type: "function";
226
+ readonly name: "createSovereignBatchMint";
227
+ readonly inputs: readonly [{
228
+ readonly name: "_name";
229
+ readonly type: "string";
230
+ readonly internalType: "string";
231
+ }, {
232
+ readonly name: "_symbol";
233
+ readonly type: "string";
234
+ readonly internalType: "string";
235
+ }, {
236
+ readonly name: "_maxTokens";
237
+ readonly type: "uint256";
238
+ readonly internalType: "uint256";
239
+ }];
240
+ readonly outputs: readonly [{
241
+ readonly name: "";
242
+ readonly type: "address";
243
+ readonly internalType: "address";
244
+ }];
245
+ readonly stateMutability: "nonpayable";
246
+ }, {
247
+ readonly type: "function";
248
+ readonly name: "owner";
249
+ readonly inputs: readonly [];
250
+ readonly outputs: readonly [{
251
+ readonly name: "";
252
+ readonly type: "address";
253
+ readonly internalType: "address";
254
+ }];
255
+ readonly stateMutability: "view";
256
+ }, {
257
+ readonly type: "function";
258
+ readonly name: "renounceOwnership";
259
+ readonly inputs: readonly [];
260
+ readonly outputs: readonly [];
261
+ readonly stateMutability: "nonpayable";
262
+ }, {
263
+ readonly type: "function";
264
+ readonly name: "setSovereignBatchMint";
265
+ readonly inputs: readonly [{
266
+ readonly name: "_sovereignNFT";
267
+ readonly type: "address";
268
+ readonly internalType: "address";
269
+ }];
270
+ readonly outputs: readonly [];
271
+ readonly stateMutability: "nonpayable";
272
+ }, {
273
+ readonly type: "function";
274
+ readonly name: "sovereignNFT";
275
+ readonly inputs: readonly [];
276
+ readonly outputs: readonly [{
277
+ readonly name: "";
278
+ readonly type: "address";
279
+ readonly internalType: "address";
280
+ }];
281
+ readonly stateMutability: "view";
282
+ }, {
283
+ readonly type: "function";
284
+ readonly name: "transferOwnership";
285
+ readonly inputs: readonly [{
286
+ readonly name: "newOwner";
287
+ readonly type: "address";
288
+ readonly internalType: "address";
289
+ }];
290
+ readonly outputs: readonly [];
291
+ readonly stateMutability: "nonpayable";
292
+ }, {
293
+ readonly type: "event";
294
+ readonly name: "OwnershipTransferred";
295
+ readonly inputs: readonly [{
296
+ readonly name: "previousOwner";
297
+ readonly type: "address";
298
+ readonly indexed: true;
299
+ readonly internalType: "address";
300
+ }, {
301
+ readonly name: "newOwner";
302
+ readonly type: "address";
303
+ readonly indexed: true;
304
+ readonly internalType: "address";
305
+ }];
306
+ readonly anonymous: false;
307
+ }, {
308
+ readonly type: "event";
309
+ readonly name: "SovereignBatchMintCreated";
310
+ readonly inputs: readonly [{
311
+ readonly name: "contractAddress";
312
+ readonly type: "address";
313
+ readonly indexed: true;
314
+ readonly internalType: "address";
315
+ }, {
316
+ readonly name: "owner";
317
+ readonly type: "address";
318
+ readonly indexed: true;
319
+ readonly internalType: "address";
320
+ }];
321
+ readonly anonymous: false;
322
+ }];
323
+
324
+ declare const auctionAbi: readonly [{
325
+ readonly type: "function";
326
+ readonly name: "COLDIE_AUCTION";
327
+ readonly inputs: readonly [];
328
+ readonly outputs: readonly [{
329
+ readonly name: "";
330
+ readonly type: "bytes32";
331
+ readonly internalType: "bytes32";
332
+ }];
333
+ readonly stateMutability: "view";
334
+ }, {
335
+ readonly type: "function";
336
+ readonly name: "NO_AUCTION";
337
+ readonly inputs: readonly [];
338
+ readonly outputs: readonly [{
339
+ readonly name: "";
340
+ readonly type: "bytes32";
341
+ readonly internalType: "bytes32";
342
+ }];
343
+ readonly stateMutability: "view";
344
+ }, {
345
+ readonly type: "function";
346
+ readonly name: "SCHEDULED_AUCTION";
347
+ readonly inputs: readonly [];
348
+ readonly outputs: readonly [{
349
+ readonly name: "";
350
+ readonly type: "bytes32";
351
+ readonly internalType: "bytes32";
352
+ }];
353
+ readonly stateMutability: "view";
354
+ }, {
355
+ readonly type: "function";
356
+ readonly name: "acceptOffer";
357
+ readonly inputs: readonly [{
358
+ readonly name: "_originContract";
359
+ readonly type: "address";
360
+ readonly internalType: "address";
361
+ }, {
362
+ readonly name: "_tokenId";
363
+ readonly type: "uint256";
364
+ readonly internalType: "uint256";
365
+ }, {
366
+ readonly name: "_currencyAddress";
367
+ readonly type: "address";
368
+ readonly internalType: "address";
369
+ }, {
370
+ readonly name: "_amount";
371
+ readonly type: "uint256";
372
+ readonly internalType: "uint256";
373
+ }, {
374
+ readonly name: "_splitAddresses";
375
+ readonly type: "address[]";
376
+ readonly internalType: "address payable[]";
377
+ }, {
378
+ readonly name: "_splitRatios";
379
+ readonly type: "uint8[]";
380
+ readonly internalType: "uint8[]";
381
+ }];
382
+ readonly outputs: readonly [];
383
+ readonly stateMutability: "nonpayable";
384
+ }, {
385
+ readonly type: "function";
386
+ readonly name: "approvedTokenRegistry";
387
+ readonly inputs: readonly [];
388
+ readonly outputs: readonly [{
389
+ readonly name: "";
390
+ readonly type: "address";
391
+ readonly internalType: "contract IApprovedTokenRegistry";
392
+ }];
393
+ readonly stateMutability: "view";
394
+ }, {
395
+ readonly type: "function";
396
+ readonly name: "auctionBids";
397
+ readonly inputs: readonly [{
398
+ readonly name: "";
399
+ readonly type: "address";
400
+ readonly internalType: "address";
401
+ }, {
402
+ readonly name: "";
403
+ readonly type: "uint256";
404
+ readonly internalType: "uint256";
405
+ }];
406
+ readonly outputs: readonly [{
407
+ readonly name: "bidder";
408
+ readonly type: "address";
409
+ readonly internalType: "address payable";
410
+ }, {
411
+ readonly name: "currencyAddress";
412
+ readonly type: "address";
413
+ readonly internalType: "address";
414
+ }, {
415
+ readonly name: "amount";
416
+ readonly type: "uint256";
417
+ readonly internalType: "uint256";
418
+ }, {
419
+ readonly name: "marketplaceFee";
420
+ readonly type: "uint8";
421
+ readonly internalType: "uint8";
422
+ }];
423
+ readonly stateMutability: "view";
424
+ }, {
425
+ readonly type: "function";
426
+ readonly name: "auctionLengthExtension";
427
+ readonly inputs: readonly [];
428
+ readonly outputs: readonly [{
429
+ readonly name: "";
430
+ readonly type: "uint256";
431
+ readonly internalType: "uint256";
432
+ }];
433
+ readonly stateMutability: "view";
434
+ }, {
435
+ readonly type: "function";
436
+ readonly name: "bid";
437
+ readonly inputs: readonly [{
438
+ readonly name: "_originContract";
439
+ readonly type: "address";
440
+ readonly internalType: "address";
441
+ }, {
442
+ readonly name: "_tokenId";
443
+ readonly type: "uint256";
444
+ readonly internalType: "uint256";
445
+ }, {
446
+ readonly name: "_currencyAddress";
447
+ readonly type: "address";
448
+ readonly internalType: "address";
449
+ }, {
450
+ readonly name: "_amount";
451
+ readonly type: "uint256";
452
+ readonly internalType: "uint256";
453
+ }];
454
+ readonly outputs: readonly [];
455
+ readonly stateMutability: "payable";
456
+ }, {
457
+ readonly type: "function";
458
+ readonly name: "buy";
459
+ readonly inputs: readonly [{
460
+ readonly name: "_originContract";
461
+ readonly type: "address";
462
+ readonly internalType: "address";
463
+ }, {
464
+ readonly name: "_tokenId";
465
+ readonly type: "uint256";
466
+ readonly internalType: "uint256";
467
+ }, {
468
+ readonly name: "_currencyAddress";
469
+ readonly type: "address";
470
+ readonly internalType: "address";
471
+ }, {
472
+ readonly name: "_amount";
473
+ readonly type: "uint256";
474
+ readonly internalType: "uint256";
475
+ }];
476
+ readonly outputs: readonly [];
477
+ readonly stateMutability: "payable";
478
+ }, {
479
+ readonly type: "function";
480
+ readonly name: "cancelAuction";
481
+ readonly inputs: readonly [{
482
+ readonly name: "_originContract";
483
+ readonly type: "address";
484
+ readonly internalType: "address";
485
+ }, {
486
+ readonly name: "_tokenId";
487
+ readonly type: "uint256";
488
+ readonly internalType: "uint256";
489
+ }];
490
+ readonly outputs: readonly [];
491
+ readonly stateMutability: "nonpayable";
492
+ }, {
493
+ readonly type: "function";
494
+ readonly name: "cancelOffer";
495
+ readonly inputs: readonly [{
496
+ readonly name: "_originContract";
497
+ readonly type: "address";
498
+ readonly internalType: "address";
499
+ }, {
500
+ readonly name: "_tokenId";
501
+ readonly type: "uint256";
502
+ readonly internalType: "uint256";
503
+ }, {
504
+ readonly name: "_currencyAddress";
505
+ readonly type: "address";
506
+ readonly internalType: "address";
507
+ }];
508
+ readonly outputs: readonly [];
509
+ readonly stateMutability: "nonpayable";
510
+ }, {
511
+ readonly type: "function";
512
+ readonly name: "configureAuction";
513
+ readonly inputs: readonly [{
514
+ readonly name: "_auctionType";
515
+ readonly type: "bytes32";
516
+ readonly internalType: "bytes32";
517
+ }, {
518
+ readonly name: "_originContract";
519
+ readonly type: "address";
520
+ readonly internalType: "address";
521
+ }, {
522
+ readonly name: "_tokenId";
523
+ readonly type: "uint256";
524
+ readonly internalType: "uint256";
525
+ }, {
526
+ readonly name: "_startingAmount";
527
+ readonly type: "uint256";
528
+ readonly internalType: "uint256";
529
+ }, {
530
+ readonly name: "_currencyAddress";
531
+ readonly type: "address";
532
+ readonly internalType: "address";
533
+ }, {
534
+ readonly name: "_lengthOfAuction";
535
+ readonly type: "uint256";
536
+ readonly internalType: "uint256";
537
+ }, {
538
+ readonly name: "_startTime";
539
+ readonly type: "uint256";
540
+ readonly internalType: "uint256";
541
+ }, {
542
+ readonly name: "_splitAddresses";
543
+ readonly type: "address[]";
544
+ readonly internalType: "address payable[]";
545
+ }, {
546
+ readonly name: "_splitRatios";
547
+ readonly type: "uint8[]";
548
+ readonly internalType: "uint8[]";
549
+ }];
550
+ readonly outputs: readonly [];
551
+ readonly stateMutability: "nonpayable";
552
+ }, {
553
+ readonly type: "function";
554
+ readonly name: "convertOfferToAuction";
555
+ readonly inputs: readonly [{
556
+ readonly name: "_originContract";
557
+ readonly type: "address";
558
+ readonly internalType: "address";
559
+ }, {
560
+ readonly name: "_tokenId";
561
+ readonly type: "uint256";
562
+ readonly internalType: "uint256";
563
+ }, {
564
+ readonly name: "_currencyAddress";
565
+ readonly type: "address";
566
+ readonly internalType: "address";
567
+ }, {
568
+ readonly name: "_amount";
569
+ readonly type: "uint256";
570
+ readonly internalType: "uint256";
571
+ }, {
572
+ readonly name: "_lengthOfAuction";
573
+ readonly type: "uint256";
574
+ readonly internalType: "uint256";
575
+ }, {
576
+ readonly name: "_splitAddresses";
577
+ readonly type: "address[]";
578
+ readonly internalType: "address payable[]";
579
+ }, {
580
+ readonly name: "_splitRatios";
581
+ readonly type: "uint8[]";
582
+ readonly internalType: "uint8[]";
583
+ }];
584
+ readonly outputs: readonly [];
585
+ readonly stateMutability: "nonpayable";
586
+ }, {
587
+ readonly type: "function";
588
+ readonly name: "getAuctionDetails";
589
+ readonly inputs: readonly [{
590
+ readonly name: "_originContract";
591
+ readonly type: "address";
592
+ readonly internalType: "address";
593
+ }, {
594
+ readonly name: "_tokenId";
595
+ readonly type: "uint256";
596
+ readonly internalType: "uint256";
597
+ }];
598
+ readonly outputs: readonly [{
599
+ readonly name: "";
600
+ readonly type: "address";
601
+ readonly internalType: "address";
602
+ }, {
603
+ readonly name: "";
604
+ readonly type: "uint256";
605
+ readonly internalType: "uint256";
606
+ }, {
607
+ readonly name: "";
608
+ readonly type: "uint256";
609
+ readonly internalType: "uint256";
610
+ }, {
611
+ readonly name: "";
612
+ readonly type: "uint256";
613
+ readonly internalType: "uint256";
614
+ }, {
615
+ readonly name: "";
616
+ readonly type: "address";
617
+ readonly internalType: "address";
618
+ }, {
619
+ readonly name: "";
620
+ readonly type: "uint256";
621
+ readonly internalType: "uint256";
622
+ }, {
623
+ readonly name: "";
624
+ readonly type: "bytes32";
625
+ readonly internalType: "bytes32";
626
+ }, {
627
+ readonly name: "";
628
+ readonly type: "address[]";
629
+ readonly internalType: "address payable[]";
630
+ }, {
631
+ readonly name: "";
632
+ readonly type: "uint8[]";
633
+ readonly internalType: "uint8[]";
634
+ }];
635
+ readonly stateMutability: "view";
636
+ }, {
637
+ readonly type: "function";
638
+ readonly name: "getSalePrice";
639
+ readonly inputs: readonly [{
640
+ readonly name: "_originContract";
641
+ readonly type: "address";
642
+ readonly internalType: "address";
643
+ }, {
644
+ readonly name: "_tokenId";
645
+ readonly type: "uint256";
646
+ readonly internalType: "uint256";
647
+ }, {
648
+ readonly name: "_target";
649
+ readonly type: "address";
650
+ readonly internalType: "address";
651
+ }];
652
+ readonly outputs: readonly [{
653
+ readonly name: "";
654
+ readonly type: "address";
655
+ readonly internalType: "address";
656
+ }, {
657
+ readonly name: "";
658
+ readonly type: "address";
659
+ readonly internalType: "address";
660
+ }, {
661
+ readonly name: "";
662
+ readonly type: "uint256";
663
+ readonly internalType: "uint256";
664
+ }, {
665
+ readonly name: "";
666
+ readonly type: "address[]";
667
+ readonly internalType: "address payable[]";
668
+ }, {
669
+ readonly name: "";
670
+ readonly type: "uint8[]";
671
+ readonly internalType: "uint8[]";
672
+ }];
673
+ readonly stateMutability: "view";
674
+ }, {
675
+ readonly type: "function";
676
+ readonly name: "initialize";
677
+ readonly inputs: readonly [{
678
+ readonly name: "_marketplaceSettings";
679
+ readonly type: "address";
680
+ readonly internalType: "address";
681
+ }, {
682
+ readonly name: "_royaltyRegistry";
683
+ readonly type: "address";
684
+ readonly internalType: "address";
685
+ }, {
686
+ readonly name: "_royaltyEngine";
687
+ readonly type: "address";
688
+ readonly internalType: "address";
689
+ }, {
690
+ readonly name: "_superRareMarketplace";
691
+ readonly type: "address";
692
+ readonly internalType: "address";
693
+ }, {
694
+ readonly name: "_superRareAuctionHouse";
695
+ readonly type: "address";
696
+ readonly internalType: "address";
697
+ }, {
698
+ readonly name: "_spaceOperatorRegistry";
699
+ readonly type: "address";
700
+ readonly internalType: "address";
701
+ }, {
702
+ readonly name: "_approvedTokenRegistry";
703
+ readonly type: "address";
704
+ readonly internalType: "address";
705
+ }, {
706
+ readonly name: "_payments";
707
+ readonly type: "address";
708
+ readonly internalType: "address";
709
+ }, {
710
+ readonly name: "_stakingRegistry";
711
+ readonly type: "address";
712
+ readonly internalType: "address";
713
+ }, {
714
+ readonly name: "_networkBeneficiary";
715
+ readonly type: "address";
716
+ readonly internalType: "address";
717
+ }];
718
+ readonly outputs: readonly [];
719
+ readonly stateMutability: "nonpayable";
720
+ }, {
721
+ readonly type: "function";
722
+ readonly name: "marketplaceSettings";
723
+ readonly inputs: readonly [];
724
+ readonly outputs: readonly [{
725
+ readonly name: "";
726
+ readonly type: "address";
727
+ readonly internalType: "contract IMarketplaceSettings";
728
+ }];
729
+ readonly stateMutability: "view";
730
+ }, {
731
+ readonly type: "function";
732
+ readonly name: "maxAuctionLength";
733
+ readonly inputs: readonly [];
734
+ readonly outputs: readonly [{
735
+ readonly name: "";
736
+ readonly type: "uint256";
737
+ readonly internalType: "uint256";
738
+ }];
739
+ readonly stateMutability: "view";
740
+ }, {
741
+ readonly type: "function";
742
+ readonly name: "minimumBidIncreasePercentage";
743
+ readonly inputs: readonly [];
744
+ readonly outputs: readonly [{
745
+ readonly name: "";
746
+ readonly type: "uint8";
747
+ readonly internalType: "uint8";
748
+ }];
749
+ readonly stateMutability: "view";
750
+ }, {
751
+ readonly type: "function";
752
+ readonly name: "networkBeneficiary";
753
+ readonly inputs: readonly [];
754
+ readonly outputs: readonly [{
755
+ readonly name: "";
756
+ readonly type: "address";
757
+ readonly internalType: "address";
758
+ }];
759
+ readonly stateMutability: "view";
760
+ }, {
761
+ readonly type: "function";
762
+ readonly name: "offer";
763
+ readonly inputs: readonly [{
764
+ readonly name: "_originContract";
765
+ readonly type: "address";
766
+ readonly internalType: "address";
767
+ }, {
768
+ readonly name: "_tokenId";
769
+ readonly type: "uint256";
770
+ readonly internalType: "uint256";
771
+ }, {
772
+ readonly name: "_currencyAddress";
773
+ readonly type: "address";
774
+ readonly internalType: "address";
775
+ }, {
776
+ readonly name: "_amount";
777
+ readonly type: "uint256";
778
+ readonly internalType: "uint256";
779
+ }, {
780
+ readonly name: "_convertible";
781
+ readonly type: "bool";
782
+ readonly internalType: "bool";
783
+ }];
784
+ readonly outputs: readonly [];
785
+ readonly stateMutability: "payable";
786
+ }, {
787
+ readonly type: "function";
788
+ readonly name: "offerCancelationDelay";
789
+ readonly inputs: readonly [];
790
+ readonly outputs: readonly [{
791
+ readonly name: "";
792
+ readonly type: "uint256";
793
+ readonly internalType: "uint256";
794
+ }];
795
+ readonly stateMutability: "view";
796
+ }, {
797
+ readonly type: "function";
798
+ readonly name: "owner";
799
+ readonly inputs: readonly [];
800
+ readonly outputs: readonly [{
801
+ readonly name: "";
802
+ readonly type: "address";
803
+ readonly internalType: "address";
804
+ }];
805
+ readonly stateMutability: "view";
806
+ }, {
807
+ readonly type: "function";
808
+ readonly name: "payments";
809
+ readonly inputs: readonly [];
810
+ readonly outputs: readonly [{
811
+ readonly name: "";
812
+ readonly type: "address";
813
+ readonly internalType: "contract IPayments";
814
+ }];
815
+ readonly stateMutability: "view";
816
+ }, {
817
+ readonly type: "function";
818
+ readonly name: "removeSalePrice";
819
+ readonly inputs: readonly [{
820
+ readonly name: "_originContract";
821
+ readonly type: "address";
822
+ readonly internalType: "address";
823
+ }, {
824
+ readonly name: "_tokenId";
825
+ readonly type: "uint256";
826
+ readonly internalType: "uint256";
827
+ }, {
828
+ readonly name: "_target";
829
+ readonly type: "address";
830
+ readonly internalType: "address";
831
+ }];
832
+ readonly outputs: readonly [];
833
+ readonly stateMutability: "nonpayable";
834
+ }, {
835
+ readonly type: "function";
836
+ readonly name: "renounceOwnership";
837
+ readonly inputs: readonly [];
838
+ readonly outputs: readonly [];
839
+ readonly stateMutability: "nonpayable";
840
+ }, {
841
+ readonly type: "function";
842
+ readonly name: "royaltyEngine";
843
+ readonly inputs: readonly [];
844
+ readonly outputs: readonly [{
845
+ readonly name: "";
846
+ readonly type: "address";
847
+ readonly internalType: "contract IRoyaltyEngineV1";
848
+ }];
849
+ readonly stateMutability: "view";
850
+ }, {
851
+ readonly type: "function";
852
+ readonly name: "royaltyRegistry";
853
+ readonly inputs: readonly [];
854
+ readonly outputs: readonly [{
855
+ readonly name: "";
856
+ readonly type: "address";
857
+ readonly internalType: "contract IRoyaltyRegistry";
858
+ }];
859
+ readonly stateMutability: "view";
860
+ }, {
861
+ readonly type: "function";
862
+ readonly name: "setApprovedTokenRegistry";
863
+ readonly inputs: readonly [{
864
+ readonly name: "_approvedTokenRegistry";
865
+ readonly type: "address";
866
+ readonly internalType: "address";
867
+ }];
868
+ readonly outputs: readonly [];
869
+ readonly stateMutability: "nonpayable";
870
+ }, {
871
+ readonly type: "function";
872
+ readonly name: "setAuctionLengthExtension";
873
+ readonly inputs: readonly [{
874
+ readonly name: "_auctionLengthExtension";
875
+ readonly type: "uint256";
876
+ readonly internalType: "uint256";
877
+ }];
878
+ readonly outputs: readonly [];
879
+ readonly stateMutability: "nonpayable";
880
+ }, {
881
+ readonly type: "function";
882
+ readonly name: "setMarketplaceSettings";
883
+ readonly inputs: readonly [{
884
+ readonly name: "_marketplaceSettings";
885
+ readonly type: "address";
886
+ readonly internalType: "address";
887
+ }];
888
+ readonly outputs: readonly [];
889
+ readonly stateMutability: "nonpayable";
890
+ }, {
891
+ readonly type: "function";
892
+ readonly name: "setMaxAuctionLength";
893
+ readonly inputs: readonly [{
894
+ readonly name: "_maxAuctionLength";
895
+ readonly type: "uint8";
896
+ readonly internalType: "uint8";
897
+ }];
898
+ readonly outputs: readonly [];
899
+ readonly stateMutability: "nonpayable";
900
+ }, {
901
+ readonly type: "function";
902
+ readonly name: "setMinimumBidIncreasePercentage";
903
+ readonly inputs: readonly [{
904
+ readonly name: "_minimumBidIncreasePercentage";
905
+ readonly type: "uint8";
906
+ readonly internalType: "uint8";
907
+ }];
908
+ readonly outputs: readonly [];
909
+ readonly stateMutability: "nonpayable";
910
+ }, {
911
+ readonly type: "function";
912
+ readonly name: "setNetworkBeneficiary";
913
+ readonly inputs: readonly [{
914
+ readonly name: "_networkBeneficiary";
915
+ readonly type: "address";
916
+ readonly internalType: "address";
917
+ }];
918
+ readonly outputs: readonly [];
919
+ readonly stateMutability: "nonpayable";
920
+ }, {
921
+ readonly type: "function";
922
+ readonly name: "setOfferCancelationDelay";
923
+ readonly inputs: readonly [{
924
+ readonly name: "_offerCancelationDelay";
925
+ readonly type: "uint256";
926
+ readonly internalType: "uint256";
927
+ }];
928
+ readonly outputs: readonly [];
929
+ readonly stateMutability: "nonpayable";
930
+ }, {
931
+ readonly type: "function";
932
+ readonly name: "setPayments";
933
+ readonly inputs: readonly [{
934
+ readonly name: "_payments";
935
+ readonly type: "address";
936
+ readonly internalType: "address";
937
+ }];
938
+ readonly outputs: readonly [];
939
+ readonly stateMutability: "nonpayable";
940
+ }, {
941
+ readonly type: "function";
942
+ readonly name: "setRoyaltyEngine";
943
+ readonly inputs: readonly [{
944
+ readonly name: "_royaltyEngine";
945
+ readonly type: "address";
946
+ readonly internalType: "address";
947
+ }];
948
+ readonly outputs: readonly [];
949
+ readonly stateMutability: "nonpayable";
950
+ }, {
951
+ readonly type: "function";
952
+ readonly name: "setRoyaltyRegistry";
953
+ readonly inputs: readonly [{
954
+ readonly name: "_royaltyRegistry";
955
+ readonly type: "address";
956
+ readonly internalType: "address";
957
+ }];
958
+ readonly outputs: readonly [];
959
+ readonly stateMutability: "nonpayable";
960
+ }, {
961
+ readonly type: "function";
962
+ readonly name: "setSalePrice";
963
+ readonly inputs: readonly [{
964
+ readonly name: "_originContract";
965
+ readonly type: "address";
966
+ readonly internalType: "address";
967
+ }, {
968
+ readonly name: "_tokenId";
969
+ readonly type: "uint256";
970
+ readonly internalType: "uint256";
971
+ }, {
972
+ readonly name: "_currencyAddress";
973
+ readonly type: "address";
974
+ readonly internalType: "address";
975
+ }, {
976
+ readonly name: "_listPrice";
977
+ readonly type: "uint256";
978
+ readonly internalType: "uint256";
979
+ }, {
980
+ readonly name: "_target";
981
+ readonly type: "address";
982
+ readonly internalType: "address";
983
+ }, {
984
+ readonly name: "_splitAddresses";
985
+ readonly type: "address[]";
986
+ readonly internalType: "address payable[]";
987
+ }, {
988
+ readonly name: "_splitRatios";
989
+ readonly type: "uint8[]";
990
+ readonly internalType: "uint8[]";
991
+ }];
992
+ readonly outputs: readonly [];
993
+ readonly stateMutability: "nonpayable";
994
+ }, {
995
+ readonly type: "function";
996
+ readonly name: "setSpaceOperatorRegistry";
997
+ readonly inputs: readonly [{
998
+ readonly name: "_spaceOperatorRegistry";
999
+ readonly type: "address";
1000
+ readonly internalType: "address";
1001
+ }];
1002
+ readonly outputs: readonly [];
1003
+ readonly stateMutability: "nonpayable";
1004
+ }, {
1005
+ readonly type: "function";
1006
+ readonly name: "setStakingRegistry";
1007
+ readonly inputs: readonly [{
1008
+ readonly name: "_stakingRegistry";
1009
+ readonly type: "address";
1010
+ readonly internalType: "address";
1011
+ }];
1012
+ readonly outputs: readonly [];
1013
+ readonly stateMutability: "nonpayable";
1014
+ }, {
1015
+ readonly type: "function";
1016
+ readonly name: "setSuperRareAuctionHouse";
1017
+ readonly inputs: readonly [{
1018
+ readonly name: "_superRareAuctionHouse";
1019
+ readonly type: "address";
1020
+ readonly internalType: "address";
1021
+ }];
1022
+ readonly outputs: readonly [];
1023
+ readonly stateMutability: "nonpayable";
1024
+ }, {
1025
+ readonly type: "function";
1026
+ readonly name: "setSuperRareMarketplace";
1027
+ readonly inputs: readonly [{
1028
+ readonly name: "_superRareMarketplace";
1029
+ readonly type: "address";
1030
+ readonly internalType: "address";
1031
+ }];
1032
+ readonly outputs: readonly [];
1033
+ readonly stateMutability: "nonpayable";
1034
+ }, {
1035
+ readonly type: "function";
1036
+ readonly name: "settleAuction";
1037
+ readonly inputs: readonly [{
1038
+ readonly name: "_originContract";
1039
+ readonly type: "address";
1040
+ readonly internalType: "address";
1041
+ }, {
1042
+ readonly name: "_tokenId";
1043
+ readonly type: "uint256";
1044
+ readonly internalType: "uint256";
1045
+ }];
1046
+ readonly outputs: readonly [];
1047
+ readonly stateMutability: "nonpayable";
1048
+ }, {
1049
+ readonly type: "function";
1050
+ readonly name: "spaceOperatorRegistry";
1051
+ readonly inputs: readonly [];
1052
+ readonly outputs: readonly [{
1053
+ readonly name: "";
1054
+ readonly type: "address";
1055
+ readonly internalType: "contract ISpaceOperatorRegistry";
1056
+ }];
1057
+ readonly stateMutability: "view";
1058
+ }, {
1059
+ readonly type: "function";
1060
+ readonly name: "stakingRegistry";
1061
+ readonly inputs: readonly [];
1062
+ readonly outputs: readonly [{
1063
+ readonly name: "";
1064
+ readonly type: "address";
1065
+ readonly internalType: "address";
1066
+ }];
1067
+ readonly stateMutability: "view";
1068
+ }, {
1069
+ readonly type: "function";
1070
+ readonly name: "superRareAuctionHouse";
1071
+ readonly inputs: readonly [];
1072
+ readonly outputs: readonly [{
1073
+ readonly name: "";
1074
+ readonly type: "address";
1075
+ readonly internalType: "address";
1076
+ }];
1077
+ readonly stateMutability: "view";
1078
+ }, {
1079
+ readonly type: "function";
1080
+ readonly name: "superRareMarketplace";
1081
+ readonly inputs: readonly [];
1082
+ readonly outputs: readonly [{
1083
+ readonly name: "";
1084
+ readonly type: "address";
1085
+ readonly internalType: "address";
1086
+ }];
1087
+ readonly stateMutability: "view";
1088
+ }, {
1089
+ readonly type: "function";
1090
+ readonly name: "tokenAuctions";
1091
+ readonly inputs: readonly [{
1092
+ readonly name: "";
1093
+ readonly type: "address";
1094
+ readonly internalType: "address";
1095
+ }, {
1096
+ readonly name: "";
1097
+ readonly type: "uint256";
1098
+ readonly internalType: "uint256";
1099
+ }];
1100
+ readonly outputs: readonly [{
1101
+ readonly name: "auctionCreator";
1102
+ readonly type: "address";
1103
+ readonly internalType: "address payable";
1104
+ }, {
1105
+ readonly name: "creationBlock";
1106
+ readonly type: "uint256";
1107
+ readonly internalType: "uint256";
1108
+ }, {
1109
+ readonly name: "startingTime";
1110
+ readonly type: "uint256";
1111
+ readonly internalType: "uint256";
1112
+ }, {
1113
+ readonly name: "lengthOfAuction";
1114
+ readonly type: "uint256";
1115
+ readonly internalType: "uint256";
1116
+ }, {
1117
+ readonly name: "currencyAddress";
1118
+ readonly type: "address";
1119
+ readonly internalType: "address";
1120
+ }, {
1121
+ readonly name: "minimumBid";
1122
+ readonly type: "uint256";
1123
+ readonly internalType: "uint256";
1124
+ }, {
1125
+ readonly name: "auctionType";
1126
+ readonly type: "bytes32";
1127
+ readonly internalType: "bytes32";
1128
+ }];
1129
+ readonly stateMutability: "view";
1130
+ }, {
1131
+ readonly type: "function";
1132
+ readonly name: "tokenCurrentOffers";
1133
+ readonly inputs: readonly [{
1134
+ readonly name: "";
1135
+ readonly type: "address";
1136
+ readonly internalType: "address";
1137
+ }, {
1138
+ readonly name: "";
1139
+ readonly type: "uint256";
1140
+ readonly internalType: "uint256";
1141
+ }, {
1142
+ readonly name: "";
1143
+ readonly type: "address";
1144
+ readonly internalType: "address";
1145
+ }];
1146
+ readonly outputs: readonly [{
1147
+ readonly name: "buyer";
1148
+ readonly type: "address";
1149
+ readonly internalType: "address payable";
1150
+ }, {
1151
+ readonly name: "amount";
1152
+ readonly type: "uint256";
1153
+ readonly internalType: "uint256";
1154
+ }, {
1155
+ readonly name: "timestamp";
1156
+ readonly type: "uint256";
1157
+ readonly internalType: "uint256";
1158
+ }, {
1159
+ readonly name: "marketplaceFee";
1160
+ readonly type: "uint8";
1161
+ readonly internalType: "uint8";
1162
+ }, {
1163
+ readonly name: "convertible";
1164
+ readonly type: "bool";
1165
+ readonly internalType: "bool";
1166
+ }];
1167
+ readonly stateMutability: "view";
1168
+ }, {
1169
+ readonly type: "function";
1170
+ readonly name: "tokenSalePrices";
1171
+ readonly inputs: readonly [{
1172
+ readonly name: "";
1173
+ readonly type: "address";
1174
+ readonly internalType: "address";
1175
+ }, {
1176
+ readonly name: "";
1177
+ readonly type: "uint256";
1178
+ readonly internalType: "uint256";
1179
+ }, {
1180
+ readonly name: "";
1181
+ readonly type: "address";
1182
+ readonly internalType: "address";
1183
+ }];
1184
+ readonly outputs: readonly [{
1185
+ readonly name: "seller";
1186
+ readonly type: "address";
1187
+ readonly internalType: "address payable";
1188
+ }, {
1189
+ readonly name: "currencyAddress";
1190
+ readonly type: "address";
1191
+ readonly internalType: "address";
1192
+ }, {
1193
+ readonly name: "amount";
1194
+ readonly type: "uint256";
1195
+ readonly internalType: "uint256";
1196
+ }];
1197
+ readonly stateMutability: "view";
1198
+ }, {
1199
+ readonly type: "function";
1200
+ readonly name: "transferOwnership";
1201
+ readonly inputs: readonly [{
1202
+ readonly name: "newOwner";
1203
+ readonly type: "address";
1204
+ readonly internalType: "address";
1205
+ }];
1206
+ readonly outputs: readonly [];
1207
+ readonly stateMutability: "nonpayable";
1208
+ }, {
1209
+ readonly type: "event";
1210
+ readonly name: "AcceptOffer";
1211
+ readonly inputs: readonly [{
1212
+ readonly name: "_originContract";
1213
+ readonly type: "address";
1214
+ readonly indexed: true;
1215
+ readonly internalType: "address";
1216
+ }, {
1217
+ readonly name: "_bidder";
1218
+ readonly type: "address";
1219
+ readonly indexed: true;
1220
+ readonly internalType: "address";
1221
+ }, {
1222
+ readonly name: "_seller";
1223
+ readonly type: "address";
1224
+ readonly indexed: true;
1225
+ readonly internalType: "address";
1226
+ }, {
1227
+ readonly name: "_currencyAddress";
1228
+ readonly type: "address";
1229
+ readonly indexed: false;
1230
+ readonly internalType: "address";
1231
+ }, {
1232
+ readonly name: "_amount";
1233
+ readonly type: "uint256";
1234
+ readonly indexed: false;
1235
+ readonly internalType: "uint256";
1236
+ }, {
1237
+ readonly name: "_tokenId";
1238
+ readonly type: "uint256";
1239
+ readonly indexed: false;
1240
+ readonly internalType: "uint256";
1241
+ }, {
1242
+ readonly name: "_splitAddresses";
1243
+ readonly type: "address[]";
1244
+ readonly indexed: false;
1245
+ readonly internalType: "address payable[]";
1246
+ }, {
1247
+ readonly name: "_splitRatios";
1248
+ readonly type: "uint8[]";
1249
+ readonly indexed: false;
1250
+ readonly internalType: "uint8[]";
1251
+ }];
1252
+ readonly anonymous: false;
1253
+ }, {
1254
+ readonly type: "event";
1255
+ readonly name: "AuctionBid";
1256
+ readonly inputs: readonly [{
1257
+ readonly name: "_contractAddress";
1258
+ readonly type: "address";
1259
+ readonly indexed: true;
1260
+ readonly internalType: "address";
1261
+ }, {
1262
+ readonly name: "_bidder";
1263
+ readonly type: "address";
1264
+ readonly indexed: true;
1265
+ readonly internalType: "address";
1266
+ }, {
1267
+ readonly name: "_tokenId";
1268
+ readonly type: "uint256";
1269
+ readonly indexed: true;
1270
+ readonly internalType: "uint256";
1271
+ }, {
1272
+ readonly name: "_currencyAddress";
1273
+ readonly type: "address";
1274
+ readonly indexed: false;
1275
+ readonly internalType: "address";
1276
+ }, {
1277
+ readonly name: "_amount";
1278
+ readonly type: "uint256";
1279
+ readonly indexed: false;
1280
+ readonly internalType: "uint256";
1281
+ }, {
1282
+ readonly name: "_startedAuction";
1283
+ readonly type: "bool";
1284
+ readonly indexed: false;
1285
+ readonly internalType: "bool";
1286
+ }, {
1287
+ readonly name: "_newAuctionLength";
1288
+ readonly type: "uint256";
1289
+ readonly indexed: false;
1290
+ readonly internalType: "uint256";
1291
+ }, {
1292
+ readonly name: "_previousBidder";
1293
+ readonly type: "address";
1294
+ readonly indexed: false;
1295
+ readonly internalType: "address";
1296
+ }];
1297
+ readonly anonymous: false;
1298
+ }, {
1299
+ readonly type: "event";
1300
+ readonly name: "AuctionSettled";
1301
+ readonly inputs: readonly [{
1302
+ readonly name: "_contractAddress";
1303
+ readonly type: "address";
1304
+ readonly indexed: true;
1305
+ readonly internalType: "address";
1306
+ }, {
1307
+ readonly name: "_bidder";
1308
+ readonly type: "address";
1309
+ readonly indexed: true;
1310
+ readonly internalType: "address";
1311
+ }, {
1312
+ readonly name: "_seller";
1313
+ readonly type: "address";
1314
+ readonly indexed: false;
1315
+ readonly internalType: "address";
1316
+ }, {
1317
+ readonly name: "_tokenId";
1318
+ readonly type: "uint256";
1319
+ readonly indexed: true;
1320
+ readonly internalType: "uint256";
1321
+ }, {
1322
+ readonly name: "_currencyAddress";
1323
+ readonly type: "address";
1324
+ readonly indexed: false;
1325
+ readonly internalType: "address";
1326
+ }, {
1327
+ readonly name: "_amount";
1328
+ readonly type: "uint256";
1329
+ readonly indexed: false;
1330
+ readonly internalType: "uint256";
1331
+ }];
1332
+ readonly anonymous: false;
1333
+ }, {
1334
+ readonly type: "event";
1335
+ readonly name: "CancelAuction";
1336
+ readonly inputs: readonly [{
1337
+ readonly name: "_contractAddress";
1338
+ readonly type: "address";
1339
+ readonly indexed: true;
1340
+ readonly internalType: "address";
1341
+ }, {
1342
+ readonly name: "_tokenId";
1343
+ readonly type: "uint256";
1344
+ readonly indexed: true;
1345
+ readonly internalType: "uint256";
1346
+ }, {
1347
+ readonly name: "_auctionCreator";
1348
+ readonly type: "address";
1349
+ readonly indexed: true;
1350
+ readonly internalType: "address";
1351
+ }];
1352
+ readonly anonymous: false;
1353
+ }, {
1354
+ readonly type: "event";
1355
+ readonly name: "CancelOffer";
1356
+ readonly inputs: readonly [{
1357
+ readonly name: "_originContract";
1358
+ readonly type: "address";
1359
+ readonly indexed: true;
1360
+ readonly internalType: "address";
1361
+ }, {
1362
+ readonly name: "_bidder";
1363
+ readonly type: "address";
1364
+ readonly indexed: true;
1365
+ readonly internalType: "address";
1366
+ }, {
1367
+ readonly name: "_currencyAddress";
1368
+ readonly type: "address";
1369
+ readonly indexed: true;
1370
+ readonly internalType: "address";
1371
+ }, {
1372
+ readonly name: "_amount";
1373
+ readonly type: "uint256";
1374
+ readonly indexed: false;
1375
+ readonly internalType: "uint256";
1376
+ }, {
1377
+ readonly name: "_tokenId";
1378
+ readonly type: "uint256";
1379
+ readonly indexed: false;
1380
+ readonly internalType: "uint256";
1381
+ }];
1382
+ readonly anonymous: false;
1383
+ }, {
1384
+ readonly type: "event";
1385
+ readonly name: "Initialized";
1386
+ readonly inputs: readonly [{
1387
+ readonly name: "version";
1388
+ readonly type: "uint8";
1389
+ readonly indexed: false;
1390
+ readonly internalType: "uint8";
1391
+ }];
1392
+ readonly anonymous: false;
1393
+ }, {
1394
+ readonly type: "event";
1395
+ readonly name: "NewAuction";
1396
+ readonly inputs: readonly [{
1397
+ readonly name: "_contractAddress";
1398
+ readonly type: "address";
1399
+ readonly indexed: true;
1400
+ readonly internalType: "address";
1401
+ }, {
1402
+ readonly name: "_tokenId";
1403
+ readonly type: "uint256";
1404
+ readonly indexed: true;
1405
+ readonly internalType: "uint256";
1406
+ }, {
1407
+ readonly name: "_auctionCreator";
1408
+ readonly type: "address";
1409
+ readonly indexed: true;
1410
+ readonly internalType: "address";
1411
+ }, {
1412
+ readonly name: "_currencyAddress";
1413
+ readonly type: "address";
1414
+ readonly indexed: false;
1415
+ readonly internalType: "address";
1416
+ }, {
1417
+ readonly name: "_startingTime";
1418
+ readonly type: "uint256";
1419
+ readonly indexed: false;
1420
+ readonly internalType: "uint256";
1421
+ }, {
1422
+ readonly name: "_minimumBid";
1423
+ readonly type: "uint256";
1424
+ readonly indexed: false;
1425
+ readonly internalType: "uint256";
1426
+ }, {
1427
+ readonly name: "_lengthOfAuction";
1428
+ readonly type: "uint256";
1429
+ readonly indexed: false;
1430
+ readonly internalType: "uint256";
1431
+ }];
1432
+ readonly anonymous: false;
1433
+ }, {
1434
+ readonly type: "event";
1435
+ readonly name: "OfferPlaced";
1436
+ readonly inputs: readonly [{
1437
+ readonly name: "_originContract";
1438
+ readonly type: "address";
1439
+ readonly indexed: true;
1440
+ readonly internalType: "address";
1441
+ }, {
1442
+ readonly name: "_bidder";
1443
+ readonly type: "address";
1444
+ readonly indexed: true;
1445
+ readonly internalType: "address";
1446
+ }, {
1447
+ readonly name: "_currencyAddress";
1448
+ readonly type: "address";
1449
+ readonly indexed: true;
1450
+ readonly internalType: "address";
1451
+ }, {
1452
+ readonly name: "_amount";
1453
+ readonly type: "uint256";
1454
+ readonly indexed: false;
1455
+ readonly internalType: "uint256";
1456
+ }, {
1457
+ readonly name: "_tokenId";
1458
+ readonly type: "uint256";
1459
+ readonly indexed: false;
1460
+ readonly internalType: "uint256";
1461
+ }, {
1462
+ readonly name: "_convertible";
1463
+ readonly type: "bool";
1464
+ readonly indexed: false;
1465
+ readonly internalType: "bool";
1466
+ }];
1467
+ readonly anonymous: false;
1468
+ }, {
1469
+ readonly type: "event";
1470
+ readonly name: "OwnershipTransferred";
1471
+ readonly inputs: readonly [{
1472
+ readonly name: "previousOwner";
1473
+ readonly type: "address";
1474
+ readonly indexed: true;
1475
+ readonly internalType: "address";
1476
+ }, {
1477
+ readonly name: "newOwner";
1478
+ readonly type: "address";
1479
+ readonly indexed: true;
1480
+ readonly internalType: "address";
1481
+ }];
1482
+ readonly anonymous: false;
1483
+ }, {
1484
+ readonly type: "event";
1485
+ readonly name: "SetSalePrice";
1486
+ readonly inputs: readonly [{
1487
+ readonly name: "_originContract";
1488
+ readonly type: "address";
1489
+ readonly indexed: true;
1490
+ readonly internalType: "address";
1491
+ }, {
1492
+ readonly name: "_currencyAddress";
1493
+ readonly type: "address";
1494
+ readonly indexed: true;
1495
+ readonly internalType: "address";
1496
+ }, {
1497
+ readonly name: "_target";
1498
+ readonly type: "address";
1499
+ readonly indexed: false;
1500
+ readonly internalType: "address";
1501
+ }, {
1502
+ readonly name: "_amount";
1503
+ readonly type: "uint256";
1504
+ readonly indexed: false;
1505
+ readonly internalType: "uint256";
1506
+ }, {
1507
+ readonly name: "_tokenId";
1508
+ readonly type: "uint256";
1509
+ readonly indexed: false;
1510
+ readonly internalType: "uint256";
1511
+ }, {
1512
+ readonly name: "_splitRecipients";
1513
+ readonly type: "address[]";
1514
+ readonly indexed: false;
1515
+ readonly internalType: "address payable[]";
1516
+ }, {
1517
+ readonly name: "_splitRatios";
1518
+ readonly type: "uint8[]";
1519
+ readonly indexed: false;
1520
+ readonly internalType: "uint8[]";
1521
+ }];
1522
+ readonly anonymous: false;
1523
+ }, {
1524
+ readonly type: "event";
1525
+ readonly name: "Sold";
1526
+ readonly inputs: readonly [{
1527
+ readonly name: "_originContract";
1528
+ readonly type: "address";
1529
+ readonly indexed: true;
1530
+ readonly internalType: "address";
1531
+ }, {
1532
+ readonly name: "_buyer";
1533
+ readonly type: "address";
1534
+ readonly indexed: true;
1535
+ readonly internalType: "address";
1536
+ }, {
1537
+ readonly name: "_seller";
1538
+ readonly type: "address";
1539
+ readonly indexed: true;
1540
+ readonly internalType: "address";
1541
+ }, {
1542
+ readonly name: "_currencyAddress";
1543
+ readonly type: "address";
1544
+ readonly indexed: false;
1545
+ readonly internalType: "address";
1546
+ }, {
1547
+ readonly name: "_amount";
1548
+ readonly type: "uint256";
1549
+ readonly indexed: false;
1550
+ readonly internalType: "uint256";
1551
+ }, {
1552
+ readonly name: "_tokenId";
1553
+ readonly type: "uint256";
1554
+ readonly indexed: false;
1555
+ readonly internalType: "uint256";
1556
+ }];
1557
+ readonly anonymous: false;
1558
+ }];
1559
+
1560
+ declare const tokenAbi: readonly [{
1561
+ readonly anonymous: false;
1562
+ readonly inputs: readonly [{
1563
+ readonly indexed: true;
1564
+ readonly internalType: "address";
1565
+ readonly name: "owner";
1566
+ readonly type: "address";
1567
+ }, {
1568
+ readonly indexed: true;
1569
+ readonly internalType: "address";
1570
+ readonly name: "approved";
1571
+ readonly type: "address";
1572
+ }, {
1573
+ readonly indexed: true;
1574
+ readonly internalType: "uint256";
1575
+ readonly name: "tokenId";
1576
+ readonly type: "uint256";
1577
+ }];
1578
+ readonly name: "Approval";
1579
+ readonly type: "event";
1580
+ }, {
1581
+ readonly anonymous: false;
1582
+ readonly inputs: readonly [{
1583
+ readonly indexed: true;
1584
+ readonly internalType: "address";
1585
+ readonly name: "owner";
1586
+ readonly type: "address";
1587
+ }, {
1588
+ readonly indexed: true;
1589
+ readonly internalType: "address";
1590
+ readonly name: "operator";
1591
+ readonly type: "address";
1592
+ }, {
1593
+ readonly indexed: false;
1594
+ readonly internalType: "bool";
1595
+ readonly name: "approved";
1596
+ readonly type: "bool";
1597
+ }];
1598
+ readonly name: "ApprovalForAll";
1599
+ readonly type: "event";
1600
+ }, {
1601
+ readonly anonymous: false;
1602
+ readonly inputs: readonly [{
1603
+ readonly indexed: true;
1604
+ readonly internalType: "uint256";
1605
+ readonly name: "fromTokenId";
1606
+ readonly type: "uint256";
1607
+ }, {
1608
+ readonly indexed: false;
1609
+ readonly internalType: "uint256";
1610
+ readonly name: "toTokenId";
1611
+ readonly type: "uint256";
1612
+ }, {
1613
+ readonly indexed: true;
1614
+ readonly internalType: "address";
1615
+ readonly name: "fromAddress";
1616
+ readonly type: "address";
1617
+ }, {
1618
+ readonly indexed: true;
1619
+ readonly internalType: "address";
1620
+ readonly name: "toAddress";
1621
+ readonly type: "address";
1622
+ }];
1623
+ readonly name: "ConsecutiveTransfer";
1624
+ readonly type: "event";
1625
+ }, {
1626
+ readonly anonymous: false;
1627
+ readonly inputs: readonly [{
1628
+ readonly indexed: true;
1629
+ readonly internalType: "address";
1630
+ readonly name: "user";
1631
+ readonly type: "address";
1632
+ }];
1633
+ readonly name: "ContractDisabled";
1634
+ readonly type: "event";
1635
+ }, {
1636
+ readonly anonymous: false;
1637
+ readonly inputs: readonly [{
1638
+ readonly indexed: true;
1639
+ readonly internalType: "address";
1640
+ readonly name: "previousOwner";
1641
+ readonly type: "address";
1642
+ }, {
1643
+ readonly indexed: true;
1644
+ readonly internalType: "address";
1645
+ readonly name: "newOwner";
1646
+ readonly type: "address";
1647
+ }];
1648
+ readonly name: "OwnershipTransferred";
1649
+ readonly type: "event";
1650
+ }, {
1651
+ readonly anonymous: false;
1652
+ readonly inputs: readonly [{
1653
+ readonly indexed: true;
1654
+ readonly internalType: "address";
1655
+ readonly name: "from";
1656
+ readonly type: "address";
1657
+ }, {
1658
+ readonly indexed: true;
1659
+ readonly internalType: "address";
1660
+ readonly name: "to";
1661
+ readonly type: "address";
1662
+ }, {
1663
+ readonly indexed: true;
1664
+ readonly internalType: "uint256";
1665
+ readonly name: "tokenId";
1666
+ readonly type: "uint256";
1667
+ }];
1668
+ readonly name: "Transfer";
1669
+ readonly type: "event";
1670
+ }, {
1671
+ readonly inputs: readonly [{
1672
+ readonly internalType: "string";
1673
+ readonly name: "_uri";
1674
+ readonly type: "string";
1675
+ }];
1676
+ readonly name: "addNewToken";
1677
+ readonly outputs: readonly [];
1678
+ readonly stateMutability: "nonpayable";
1679
+ readonly type: "function";
1680
+ }, {
1681
+ readonly inputs: readonly [{
1682
+ readonly internalType: "address";
1683
+ readonly name: "to";
1684
+ readonly type: "address";
1685
+ }, {
1686
+ readonly internalType: "uint256";
1687
+ readonly name: "tokenId";
1688
+ readonly type: "uint256";
1689
+ }];
1690
+ readonly name: "approve";
1691
+ readonly outputs: readonly [];
1692
+ readonly stateMutability: "nonpayable";
1693
+ readonly type: "function";
1694
+ }, {
1695
+ readonly inputs: readonly [{
1696
+ readonly internalType: "address";
1697
+ readonly name: "owner";
1698
+ readonly type: "address";
1699
+ }];
1700
+ readonly name: "balanceOf";
1701
+ readonly outputs: readonly [{
1702
+ readonly internalType: "uint256";
1703
+ readonly name: "";
1704
+ readonly type: "uint256";
1705
+ }];
1706
+ readonly stateMutability: "view";
1707
+ readonly type: "function";
1708
+ }, {
1709
+ readonly inputs: readonly [];
1710
+ readonly name: "baseURI";
1711
+ readonly outputs: readonly [{
1712
+ readonly internalType: "string";
1713
+ readonly name: "";
1714
+ readonly type: "string";
1715
+ }];
1716
+ readonly stateMutability: "view";
1717
+ readonly type: "function";
1718
+ }, {
1719
+ readonly inputs: readonly [{
1720
+ readonly internalType: "string";
1721
+ readonly name: "_baseURI";
1722
+ readonly type: "string";
1723
+ }, {
1724
+ readonly internalType: "uint256";
1725
+ readonly name: "_numberOfTokens";
1726
+ readonly type: "uint256";
1727
+ }];
1728
+ readonly name: "batchMint";
1729
+ readonly outputs: readonly [];
1730
+ readonly stateMutability: "nonpayable";
1731
+ readonly type: "function";
1732
+ }, {
1733
+ readonly inputs: readonly [{
1734
+ readonly internalType: "uint256";
1735
+ readonly name: "_tokenId";
1736
+ readonly type: "uint256";
1737
+ }];
1738
+ readonly name: "burn";
1739
+ readonly outputs: readonly [];
1740
+ readonly stateMutability: "nonpayable";
1741
+ readonly type: "function";
1742
+ }, {
1743
+ readonly inputs: readonly [];
1744
+ readonly name: "calcIERC721CreatorInterfaceId";
1745
+ readonly outputs: readonly [{
1746
+ readonly internalType: "bytes4";
1747
+ readonly name: "";
1748
+ readonly type: "bytes4";
1749
+ }];
1750
+ readonly stateMutability: "pure";
1751
+ readonly type: "function";
1752
+ }, {
1753
+ readonly inputs: readonly [];
1754
+ readonly name: "defaultRoyaltyPercentage";
1755
+ readonly outputs: readonly [{
1756
+ readonly internalType: "uint256";
1757
+ readonly name: "";
1758
+ readonly type: "uint256";
1759
+ }];
1760
+ readonly stateMutability: "view";
1761
+ readonly type: "function";
1762
+ }, {
1763
+ readonly inputs: readonly [];
1764
+ readonly name: "defaultRoyaltyReceiver";
1765
+ readonly outputs: readonly [{
1766
+ readonly internalType: "address";
1767
+ readonly name: "";
1768
+ readonly type: "address";
1769
+ }];
1770
+ readonly stateMutability: "view";
1771
+ readonly type: "function";
1772
+ }, {
1773
+ readonly inputs: readonly [{
1774
+ readonly internalType: "uint256";
1775
+ readonly name: "_tokenId";
1776
+ readonly type: "uint256";
1777
+ }];
1778
+ readonly name: "deleteToken";
1779
+ readonly outputs: readonly [];
1780
+ readonly stateMutability: "nonpayable";
1781
+ readonly type: "function";
1782
+ }, {
1783
+ readonly inputs: readonly [];
1784
+ readonly name: "disableContract";
1785
+ readonly outputs: readonly [];
1786
+ readonly stateMutability: "nonpayable";
1787
+ readonly type: "function";
1788
+ }, {
1789
+ readonly inputs: readonly [];
1790
+ readonly name: "disabled";
1791
+ readonly outputs: readonly [{
1792
+ readonly internalType: "bool";
1793
+ readonly name: "";
1794
+ readonly type: "bool";
1795
+ }];
1796
+ readonly stateMutability: "view";
1797
+ readonly type: "function";
1798
+ }, {
1799
+ readonly inputs: readonly [{
1800
+ readonly internalType: "uint256";
1801
+ readonly name: "_tokenId";
1802
+ readonly type: "uint256";
1803
+ }];
1804
+ readonly name: "getApproved";
1805
+ readonly outputs: readonly [{
1806
+ readonly internalType: "address";
1807
+ readonly name: "";
1808
+ readonly type: "address";
1809
+ }];
1810
+ readonly stateMutability: "view";
1811
+ readonly type: "function";
1812
+ }, {
1813
+ readonly inputs: readonly [{
1814
+ readonly internalType: "string";
1815
+ readonly name: "_name";
1816
+ readonly type: "string";
1817
+ }, {
1818
+ readonly internalType: "string";
1819
+ readonly name: "_symbol";
1820
+ readonly type: "string";
1821
+ }, {
1822
+ readonly internalType: "address";
1823
+ readonly name: "_creator";
1824
+ readonly type: "address";
1825
+ }, {
1826
+ readonly internalType: "uint256";
1827
+ readonly name: "_maxTokens";
1828
+ readonly type: "uint256";
1829
+ }];
1830
+ readonly name: "init";
1831
+ readonly outputs: readonly [];
1832
+ readonly stateMutability: "nonpayable";
1833
+ readonly type: "function";
1834
+ }, {
1835
+ readonly inputs: readonly [{
1836
+ readonly internalType: "address";
1837
+ readonly name: "owner";
1838
+ readonly type: "address";
1839
+ }, {
1840
+ readonly internalType: "address";
1841
+ readonly name: "operator";
1842
+ readonly type: "address";
1843
+ }];
1844
+ readonly name: "isApprovedForAll";
1845
+ readonly outputs: readonly [{
1846
+ readonly internalType: "bool";
1847
+ readonly name: "";
1848
+ readonly type: "bool";
1849
+ }];
1850
+ readonly stateMutability: "view";
1851
+ readonly type: "function";
1852
+ }, {
1853
+ readonly inputs: readonly [];
1854
+ readonly name: "maxTokens";
1855
+ readonly outputs: readonly [{
1856
+ readonly internalType: "uint256";
1857
+ readonly name: "";
1858
+ readonly type: "uint256";
1859
+ }];
1860
+ readonly stateMutability: "view";
1861
+ readonly type: "function";
1862
+ }, {
1863
+ readonly inputs: readonly [{
1864
+ readonly internalType: "string";
1865
+ readonly name: "_uri";
1866
+ readonly type: "string";
1867
+ }, {
1868
+ readonly internalType: "address";
1869
+ readonly name: "_receiver";
1870
+ readonly type: "address";
1871
+ }, {
1872
+ readonly internalType: "address";
1873
+ readonly name: "_royaltyReceiver";
1874
+ readonly type: "address";
1875
+ }];
1876
+ readonly name: "mintTo";
1877
+ readonly outputs: readonly [];
1878
+ readonly stateMutability: "nonpayable";
1879
+ readonly type: "function";
1880
+ }, {
1881
+ readonly inputs: readonly [];
1882
+ readonly name: "name";
1883
+ readonly outputs: readonly [{
1884
+ readonly internalType: "string";
1885
+ readonly name: "";
1886
+ readonly type: "string";
1887
+ }];
1888
+ readonly stateMutability: "view";
1889
+ readonly type: "function";
1890
+ }, {
1891
+ readonly inputs: readonly [];
1892
+ readonly name: "owner";
1893
+ readonly outputs: readonly [{
1894
+ readonly internalType: "address";
1895
+ readonly name: "";
1896
+ readonly type: "address";
1897
+ }];
1898
+ readonly stateMutability: "view";
1899
+ readonly type: "function";
1900
+ }, {
1901
+ readonly inputs: readonly [{
1902
+ readonly internalType: "uint256";
1903
+ readonly name: "_tokenId";
1904
+ readonly type: "uint256";
1905
+ }];
1906
+ readonly name: "ownerOf";
1907
+ readonly outputs: readonly [{
1908
+ readonly internalType: "address";
1909
+ readonly name: "";
1910
+ readonly type: "address";
1911
+ }];
1912
+ readonly stateMutability: "view";
1913
+ readonly type: "function";
1914
+ }, {
1915
+ readonly inputs: readonly [];
1916
+ readonly name: "renounceOwnership";
1917
+ readonly outputs: readonly [];
1918
+ readonly stateMutability: "view";
1919
+ readonly type: "function";
1920
+ }, {
1921
+ readonly inputs: readonly [{
1922
+ readonly internalType: "uint256";
1923
+ readonly name: "_tokenId";
1924
+ readonly type: "uint256";
1925
+ }, {
1926
+ readonly internalType: "uint256";
1927
+ readonly name: "_salePrice";
1928
+ readonly type: "uint256";
1929
+ }];
1930
+ readonly name: "royaltyInfo";
1931
+ readonly outputs: readonly [{
1932
+ readonly internalType: "address";
1933
+ readonly name: "receiver";
1934
+ readonly type: "address";
1935
+ }, {
1936
+ readonly internalType: "uint256";
1937
+ readonly name: "royaltyAmount";
1938
+ readonly type: "uint256";
1939
+ }];
1940
+ readonly stateMutability: "view";
1941
+ readonly type: "function";
1942
+ }, {
1943
+ readonly inputs: readonly [{
1944
+ readonly internalType: "address";
1945
+ readonly name: "from";
1946
+ readonly type: "address";
1947
+ }, {
1948
+ readonly internalType: "address";
1949
+ readonly name: "to";
1950
+ readonly type: "address";
1951
+ }, {
1952
+ readonly internalType: "uint256";
1953
+ readonly name: "tokenId";
1954
+ readonly type: "uint256";
1955
+ }];
1956
+ readonly name: "safeTransferFrom";
1957
+ readonly outputs: readonly [];
1958
+ readonly stateMutability: "nonpayable";
1959
+ readonly type: "function";
1960
+ }, {
1961
+ readonly inputs: readonly [{
1962
+ readonly internalType: "address";
1963
+ readonly name: "from";
1964
+ readonly type: "address";
1965
+ }, {
1966
+ readonly internalType: "address";
1967
+ readonly name: "to";
1968
+ readonly type: "address";
1969
+ }, {
1970
+ readonly internalType: "uint256";
1971
+ readonly name: "tokenId";
1972
+ readonly type: "uint256";
1973
+ }, {
1974
+ readonly internalType: "bytes";
1975
+ readonly name: "_data";
1976
+ readonly type: "bytes";
1977
+ }];
1978
+ readonly name: "safeTransferFrom";
1979
+ readonly outputs: readonly [];
1980
+ readonly stateMutability: "nonpayable";
1981
+ readonly type: "function";
1982
+ }, {
1983
+ readonly inputs: readonly [{
1984
+ readonly internalType: "address";
1985
+ readonly name: "operator";
1986
+ readonly type: "address";
1987
+ }, {
1988
+ readonly internalType: "bool";
1989
+ readonly name: "approved";
1990
+ readonly type: "bool";
1991
+ }];
1992
+ readonly name: "setApprovalForAll";
1993
+ readonly outputs: readonly [];
1994
+ readonly stateMutability: "nonpayable";
1995
+ readonly type: "function";
1996
+ }, {
1997
+ readonly inputs: readonly [{
1998
+ readonly internalType: "address";
1999
+ readonly name: "_receiver";
2000
+ readonly type: "address";
2001
+ }];
2002
+ readonly name: "setDefaultRoyaltyReceiver";
2003
+ readonly outputs: readonly [];
2004
+ readonly stateMutability: "nonpayable";
2005
+ readonly type: "function";
2006
+ }, {
2007
+ readonly inputs: readonly [{
2008
+ readonly internalType: "address";
2009
+ readonly name: "_receiver";
2010
+ readonly type: "address";
2011
+ }, {
2012
+ readonly internalType: "uint256";
2013
+ readonly name: "_tokenId";
2014
+ readonly type: "uint256";
2015
+ }];
2016
+ readonly name: "setRoyaltyReceiverForToken";
2017
+ readonly outputs: readonly [];
2018
+ readonly stateMutability: "nonpayable";
2019
+ readonly type: "function";
2020
+ }, {
2021
+ readonly inputs: readonly [{
2022
+ readonly internalType: "bytes4";
2023
+ readonly name: "interfaceId";
2024
+ readonly type: "bytes4";
2025
+ }];
2026
+ readonly name: "supportsInterface";
2027
+ readonly outputs: readonly [{
2028
+ readonly internalType: "bool";
2029
+ readonly name: "";
2030
+ readonly type: "bool";
2031
+ }];
2032
+ readonly stateMutability: "view";
2033
+ readonly type: "function";
2034
+ }, {
2035
+ readonly inputs: readonly [];
2036
+ readonly name: "symbol";
2037
+ readonly outputs: readonly [{
2038
+ readonly internalType: "string";
2039
+ readonly name: "";
2040
+ readonly type: "string";
2041
+ }];
2042
+ readonly stateMutability: "view";
2043
+ readonly type: "function";
2044
+ }, {
2045
+ readonly inputs: readonly [{
2046
+ readonly internalType: "uint256";
2047
+ readonly name: "index";
2048
+ readonly type: "uint256";
2049
+ }];
2050
+ readonly name: "tokenByIndex";
2051
+ readonly outputs: readonly [{
2052
+ readonly internalType: "uint256";
2053
+ readonly name: "";
2054
+ readonly type: "uint256";
2055
+ }];
2056
+ readonly stateMutability: "view";
2057
+ readonly type: "function";
2058
+ }, {
2059
+ readonly inputs: readonly [{
2060
+ readonly internalType: "uint256";
2061
+ readonly name: "";
2062
+ readonly type: "uint256";
2063
+ }];
2064
+ readonly name: "tokenCreator";
2065
+ readonly outputs: readonly [{
2066
+ readonly internalType: "address payable";
2067
+ readonly name: "";
2068
+ readonly type: "address";
2069
+ }];
2070
+ readonly stateMutability: "view";
2071
+ readonly type: "function";
2072
+ }, {
2073
+ readonly inputs: readonly [{
2074
+ readonly internalType: "address";
2075
+ readonly name: "owner";
2076
+ readonly type: "address";
2077
+ }, {
2078
+ readonly internalType: "uint256";
2079
+ readonly name: "index";
2080
+ readonly type: "uint256";
2081
+ }];
2082
+ readonly name: "tokenOfOwnerByIndex";
2083
+ readonly outputs: readonly [{
2084
+ readonly internalType: "uint256";
2085
+ readonly name: "";
2086
+ readonly type: "uint256";
2087
+ }];
2088
+ readonly stateMutability: "view";
2089
+ readonly type: "function";
2090
+ }, {
2091
+ readonly inputs: readonly [{
2092
+ readonly internalType: "uint256";
2093
+ readonly name: "_tokenId";
2094
+ readonly type: "uint256";
2095
+ }];
2096
+ readonly name: "tokenURI";
2097
+ readonly outputs: readonly [{
2098
+ readonly internalType: "string";
2099
+ readonly name: "";
2100
+ readonly type: "string";
2101
+ }];
2102
+ readonly stateMutability: "view";
2103
+ readonly type: "function";
2104
+ }, {
2105
+ readonly inputs: readonly [];
2106
+ readonly name: "totalSupply";
2107
+ readonly outputs: readonly [{
2108
+ readonly internalType: "uint256";
2109
+ readonly name: "";
2110
+ readonly type: "uint256";
2111
+ }];
2112
+ readonly stateMutability: "view";
2113
+ readonly type: "function";
2114
+ }, {
2115
+ readonly inputs: readonly [{
2116
+ readonly internalType: "address";
2117
+ readonly name: "from";
2118
+ readonly type: "address";
2119
+ }, {
2120
+ readonly internalType: "address";
2121
+ readonly name: "to";
2122
+ readonly type: "address";
2123
+ }, {
2124
+ readonly internalType: "uint256";
2125
+ readonly name: "tokenId";
2126
+ readonly type: "uint256";
2127
+ }];
2128
+ readonly name: "transferFrom";
2129
+ readonly outputs: readonly [];
2130
+ readonly stateMutability: "nonpayable";
2131
+ readonly type: "function";
2132
+ }, {
2133
+ readonly inputs: readonly [{
2134
+ readonly internalType: "address";
2135
+ readonly name: "";
2136
+ readonly type: "address";
2137
+ }];
2138
+ readonly name: "transferOwnership";
2139
+ readonly outputs: readonly [];
2140
+ readonly stateMutability: "view";
2141
+ readonly type: "function";
2142
+ }];
2143
+
2144
+ export { type CollectionSearchParams, type ImportErc721Params, type NftAttribute, type NftMediaEntry, type NftSearchParams, type PinMetadataParams, type RareClient, type RareClientConfig, type SearchPageResponse, type SupportedChain, auctionAbi, chainIds, contractAddresses, createRareClient, factoryAbi, getContractAddresses, isSupportedChain, tokenAbi, viemChains };