@bosonprotocol/core-sdk 1.18.0-alpha.6 → 1.18.0-alpha.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/subgraph.ts CHANGED
@@ -6509,12 +6509,15 @@ export type Seller = Account & {
6509
6509
  authTokenId: Scalars["BigInt"];
6510
6510
  authTokenType: Scalars["Int"];
6511
6511
  clerk: Scalars["Bytes"];
6512
+ contractURI: Scalars["String"];
6512
6513
  exchanges: Array<Exchange>;
6513
6514
  funds: Array<FundsEntity>;
6514
6515
  id: Scalars["ID"];
6515
6516
  logs: Array<EventLog>;
6516
6517
  offers: Array<Offer>;
6517
6518
  operator: Scalars["Bytes"];
6519
+ /** Percentage as integer, to get decimals divide by 10000. E.g. 1 = 0.01%, 10000 = 100% */
6520
+ royaltyPercentage: Scalars["BigInt"];
6518
6521
  sellerId: Scalars["BigInt"];
6519
6522
  treasury: Scalars["Bytes"];
6520
6523
  voucherCloneAddress: Scalars["Bytes"];
@@ -6587,6 +6590,26 @@ export type Seller_Filter = {
6587
6590
  clerk_not?: InputMaybe<Scalars["Bytes"]>;
6588
6591
  clerk_not_contains?: InputMaybe<Scalars["Bytes"]>;
6589
6592
  clerk_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
6593
+ contractURI?: InputMaybe<Scalars["String"]>;
6594
+ contractURI_contains?: InputMaybe<Scalars["String"]>;
6595
+ contractURI_contains_nocase?: InputMaybe<Scalars["String"]>;
6596
+ contractURI_ends_with?: InputMaybe<Scalars["String"]>;
6597
+ contractURI_ends_with_nocase?: InputMaybe<Scalars["String"]>;
6598
+ contractURI_gt?: InputMaybe<Scalars["String"]>;
6599
+ contractURI_gte?: InputMaybe<Scalars["String"]>;
6600
+ contractURI_in?: InputMaybe<Array<Scalars["String"]>>;
6601
+ contractURI_lt?: InputMaybe<Scalars["String"]>;
6602
+ contractURI_lte?: InputMaybe<Scalars["String"]>;
6603
+ contractURI_not?: InputMaybe<Scalars["String"]>;
6604
+ contractURI_not_contains?: InputMaybe<Scalars["String"]>;
6605
+ contractURI_not_contains_nocase?: InputMaybe<Scalars["String"]>;
6606
+ contractURI_not_ends_with?: InputMaybe<Scalars["String"]>;
6607
+ contractURI_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
6608
+ contractURI_not_in?: InputMaybe<Array<Scalars["String"]>>;
6609
+ contractURI_not_starts_with?: InputMaybe<Scalars["String"]>;
6610
+ contractURI_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
6611
+ contractURI_starts_with?: InputMaybe<Scalars["String"]>;
6612
+ contractURI_starts_with_nocase?: InputMaybe<Scalars["String"]>;
6590
6613
  exchanges_?: InputMaybe<Exchange_Filter>;
6591
6614
  funds_?: InputMaybe<FundsEntity_Filter>;
6592
6615
  id?: InputMaybe<Scalars["ID"]>;
@@ -6604,6 +6627,14 @@ export type Seller_Filter = {
6604
6627
  operator_not?: InputMaybe<Scalars["Bytes"]>;
6605
6628
  operator_not_contains?: InputMaybe<Scalars["Bytes"]>;
6606
6629
  operator_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
6630
+ royaltyPercentage?: InputMaybe<Scalars["BigInt"]>;
6631
+ royaltyPercentage_gt?: InputMaybe<Scalars["BigInt"]>;
6632
+ royaltyPercentage_gte?: InputMaybe<Scalars["BigInt"]>;
6633
+ royaltyPercentage_in?: InputMaybe<Array<Scalars["BigInt"]>>;
6634
+ royaltyPercentage_lt?: InputMaybe<Scalars["BigInt"]>;
6635
+ royaltyPercentage_lte?: InputMaybe<Scalars["BigInt"]>;
6636
+ royaltyPercentage_not?: InputMaybe<Scalars["BigInt"]>;
6637
+ royaltyPercentage_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
6607
6638
  sellerId?: InputMaybe<Scalars["BigInt"]>;
6608
6639
  sellerId_gt?: InputMaybe<Scalars["BigInt"]>;
6609
6640
  sellerId_gte?: InputMaybe<Scalars["BigInt"]>;
@@ -6632,12 +6663,14 @@ export enum Seller_OrderBy {
6632
6663
  AuthTokenId = "authTokenId",
6633
6664
  AuthTokenType = "authTokenType",
6634
6665
  Clerk = "clerk",
6666
+ ContractUri = "contractURI",
6635
6667
  Exchanges = "exchanges",
6636
6668
  Funds = "funds",
6637
6669
  Id = "id",
6638
6670
  Logs = "logs",
6639
6671
  Offers = "offers",
6640
6672
  Operator = "operator",
6673
+ RoyaltyPercentage = "royaltyPercentage",
6641
6674
  SellerId = "sellerId",
6642
6675
  Treasury = "treasury",
6643
6676
  VoucherCloneAddress = "voucherCloneAddress"
@@ -7349,6 +7382,8 @@ export type GetSellerByIdQueryQuery = {
7349
7382
  authTokenType: number;
7350
7383
  voucherCloneAddress: string;
7351
7384
  active: boolean;
7385
+ contractURI: string;
7386
+ royaltyPercentage: string;
7352
7387
  funds?: Array<{
7353
7388
  __typename?: "FundsEntity";
7354
7389
  id: string;
@@ -7400,6 +7435,8 @@ export type GetSellerByIdQueryQuery = {
7400
7435
  authTokenType: number;
7401
7436
  voucherCloneAddress: string;
7402
7437
  active: boolean;
7438
+ contractURI: string;
7439
+ royaltyPercentage: string;
7403
7440
  };
7404
7441
  exchangeToken: {
7405
7442
  __typename?: "ExchangeToken";
@@ -7591,6 +7628,8 @@ export type GetSellerByIdQueryQuery = {
7591
7628
  authTokenType: number;
7592
7629
  voucherCloneAddress: string;
7593
7630
  active: boolean;
7631
+ contractURI: string;
7632
+ royaltyPercentage: string;
7594
7633
  };
7595
7634
  };
7596
7635
  exchangePolicy: {
@@ -7666,6 +7705,8 @@ export type GetSellerByIdQueryQuery = {
7666
7705
  authTokenType: number;
7667
7706
  voucherCloneAddress: string;
7668
7707
  active: boolean;
7708
+ contractURI: string;
7709
+ royaltyPercentage: string;
7669
7710
  };
7670
7711
  }>;
7671
7712
  logs?: Array<
@@ -7782,6 +7823,8 @@ export type GetSellersQueryQuery = {
7782
7823
  authTokenType: number;
7783
7824
  voucherCloneAddress: string;
7784
7825
  active: boolean;
7826
+ contractURI: string;
7827
+ royaltyPercentage: string;
7785
7828
  funds?: Array<{
7786
7829
  __typename?: "FundsEntity";
7787
7830
  id: string;
@@ -7833,6 +7876,8 @@ export type GetSellersQueryQuery = {
7833
7876
  authTokenType: number;
7834
7877
  voucherCloneAddress: string;
7835
7878
  active: boolean;
7879
+ contractURI: string;
7880
+ royaltyPercentage: string;
7836
7881
  };
7837
7882
  exchangeToken: {
7838
7883
  __typename?: "ExchangeToken";
@@ -8024,6 +8069,8 @@ export type GetSellersQueryQuery = {
8024
8069
  authTokenType: number;
8025
8070
  voucherCloneAddress: string;
8026
8071
  active: boolean;
8072
+ contractURI: string;
8073
+ royaltyPercentage: string;
8027
8074
  };
8028
8075
  };
8029
8076
  exchangePolicy: {
@@ -8099,6 +8146,8 @@ export type GetSellersQueryQuery = {
8099
8146
  authTokenType: number;
8100
8147
  voucherCloneAddress: string;
8101
8148
  active: boolean;
8149
+ contractURI: string;
8150
+ royaltyPercentage: string;
8102
8151
  };
8103
8152
  }>;
8104
8153
  logs?: Array<
@@ -8259,6 +8308,8 @@ export type GetBuyerByIdQueryQuery = {
8259
8308
  authTokenType: number;
8260
8309
  voucherCloneAddress: string;
8261
8310
  active: boolean;
8311
+ contractURI: string;
8312
+ royaltyPercentage: string;
8262
8313
  };
8263
8314
  }>;
8264
8315
  logs?: Array<
@@ -8429,6 +8480,8 @@ export type GetBuyersQueryQuery = {
8429
8480
  authTokenType: number;
8430
8481
  voucherCloneAddress: string;
8431
8482
  active: boolean;
8483
+ contractURI: string;
8484
+ royaltyPercentage: string;
8432
8485
  };
8433
8486
  }>;
8434
8487
  logs?: Array<
@@ -8566,6 +8619,8 @@ export type GetDisputeResolverByIdQueryQuery = {
8566
8619
  authTokenType: number;
8567
8620
  voucherCloneAddress: string;
8568
8621
  active: boolean;
8622
+ contractURI: string;
8623
+ royaltyPercentage: string;
8569
8624
  };
8570
8625
  exchangeToken: {
8571
8626
  __typename?: "ExchangeToken";
@@ -8757,6 +8812,8 @@ export type GetDisputeResolverByIdQueryQuery = {
8757
8812
  authTokenType: number;
8758
8813
  voucherCloneAddress: string;
8759
8814
  active: boolean;
8815
+ contractURI: string;
8816
+ royaltyPercentage: string;
8760
8817
  };
8761
8818
  };
8762
8819
  exchangePolicy: {
@@ -8940,6 +8997,8 @@ export type GetDisputeResolversQueryQuery = {
8940
8997
  authTokenType: number;
8941
8998
  voucherCloneAddress: string;
8942
8999
  active: boolean;
9000
+ contractURI: string;
9001
+ royaltyPercentage: string;
8943
9002
  };
8944
9003
  exchangeToken: {
8945
9004
  __typename?: "ExchangeToken";
@@ -9131,6 +9190,8 @@ export type GetDisputeResolversQueryQuery = {
9131
9190
  authTokenType: number;
9132
9191
  voucherCloneAddress: string;
9133
9192
  active: boolean;
9193
+ contractURI: string;
9194
+ royaltyPercentage: string;
9134
9195
  };
9135
9196
  };
9136
9197
  exchangePolicy: {
@@ -9255,6 +9316,8 @@ export type SellerFieldsFragment = {
9255
9316
  authTokenType: number;
9256
9317
  voucherCloneAddress: string;
9257
9318
  active: boolean;
9319
+ contractURI: string;
9320
+ royaltyPercentage: string;
9258
9321
  funds?: Array<{
9259
9322
  __typename?: "FundsEntity";
9260
9323
  id: string;
@@ -9306,6 +9369,8 @@ export type SellerFieldsFragment = {
9306
9369
  authTokenType: number;
9307
9370
  voucherCloneAddress: string;
9308
9371
  active: boolean;
9372
+ contractURI: string;
9373
+ royaltyPercentage: string;
9309
9374
  };
9310
9375
  exchangeToken: {
9311
9376
  __typename?: "ExchangeToken";
@@ -9493,6 +9558,8 @@ export type SellerFieldsFragment = {
9493
9558
  authTokenType: number;
9494
9559
  voucherCloneAddress: string;
9495
9560
  active: boolean;
9561
+ contractURI: string;
9562
+ royaltyPercentage: string;
9496
9563
  };
9497
9564
  };
9498
9565
  exchangePolicy: {
@@ -9568,6 +9635,8 @@ export type SellerFieldsFragment = {
9568
9635
  authTokenType: number;
9569
9636
  voucherCloneAddress: string;
9570
9637
  active: boolean;
9638
+ contractURI: string;
9639
+ royaltyPercentage: string;
9571
9640
  };
9572
9641
  }>;
9573
9642
  logs?: Array<
@@ -9649,6 +9718,8 @@ export type BaseSellerFieldsFragment = {
9649
9718
  authTokenType: number;
9650
9719
  voucherCloneAddress: string;
9651
9720
  active: boolean;
9721
+ contractURI: string;
9722
+ royaltyPercentage: string;
9652
9723
  };
9653
9724
 
9654
9725
  export type BuyerFieldsFragment = {
@@ -9716,6 +9787,8 @@ export type BuyerFieldsFragment = {
9716
9787
  authTokenType: number;
9717
9788
  voucherCloneAddress: string;
9718
9789
  active: boolean;
9790
+ contractURI: string;
9791
+ royaltyPercentage: string;
9719
9792
  };
9720
9793
  }>;
9721
9794
  logs?: Array<
@@ -9841,6 +9914,8 @@ export type DisputeResolverFieldsFragment = {
9841
9914
  authTokenType: number;
9842
9915
  voucherCloneAddress: string;
9843
9916
  active: boolean;
9917
+ contractURI: string;
9918
+ royaltyPercentage: string;
9844
9919
  };
9845
9920
  exchangeToken: {
9846
9921
  __typename?: "ExchangeToken";
@@ -10028,6 +10103,8 @@ export type DisputeResolverFieldsFragment = {
10028
10103
  authTokenType: number;
10029
10104
  voucherCloneAddress: string;
10030
10105
  active: boolean;
10106
+ contractURI: string;
10107
+ royaltyPercentage: string;
10031
10108
  };
10032
10109
  };
10033
10110
  exchangePolicy: {
@@ -10265,6 +10342,8 @@ export type GetDisputeByIdQueryQuery = {
10265
10342
  authTokenType: number;
10266
10343
  voucherCloneAddress: string;
10267
10344
  active: boolean;
10345
+ contractURI: string;
10346
+ royaltyPercentage: string;
10268
10347
  };
10269
10348
  };
10270
10349
  seller: {
@@ -10278,6 +10357,8 @@ export type GetDisputeByIdQueryQuery = {
10278
10357
  authTokenType: number;
10279
10358
  voucherCloneAddress: string;
10280
10359
  active: boolean;
10360
+ contractURI: string;
10361
+ royaltyPercentage: string;
10281
10362
  };
10282
10363
  buyer: {
10283
10364
  __typename?: "Buyer";
@@ -10358,6 +10439,8 @@ export type GetDisputesQueryQuery = {
10358
10439
  authTokenType: number;
10359
10440
  voucherCloneAddress: string;
10360
10441
  active: boolean;
10442
+ contractURI: string;
10443
+ royaltyPercentage: string;
10361
10444
  };
10362
10445
  };
10363
10446
  seller: {
@@ -10371,6 +10454,8 @@ export type GetDisputesQueryQuery = {
10371
10454
  authTokenType: number;
10372
10455
  voucherCloneAddress: string;
10373
10456
  active: boolean;
10457
+ contractURI: string;
10458
+ royaltyPercentage: string;
10374
10459
  };
10375
10460
  buyer: {
10376
10461
  __typename?: "Buyer";
@@ -10441,6 +10526,8 @@ export type DisputeFieldsFragment = {
10441
10526
  authTokenType: number;
10442
10527
  voucherCloneAddress: string;
10443
10528
  active: boolean;
10529
+ contractURI: string;
10530
+ royaltyPercentage: string;
10444
10531
  };
10445
10532
  };
10446
10533
  seller: {
@@ -10454,6 +10541,8 @@ export type DisputeFieldsFragment = {
10454
10541
  authTokenType: number;
10455
10542
  voucherCloneAddress: string;
10456
10543
  active: boolean;
10544
+ contractURI: string;
10545
+ royaltyPercentage: string;
10457
10546
  };
10458
10547
  buyer: { __typename?: "Buyer"; id: string; wallet: string; active: boolean };
10459
10548
  };
@@ -10541,6 +10630,8 @@ export type GetExchangeTokenByIdQueryQuery = {
10541
10630
  authTokenType: number;
10542
10631
  voucherCloneAddress: string;
10543
10632
  active: boolean;
10633
+ contractURI: string;
10634
+ royaltyPercentage: string;
10544
10635
  };
10545
10636
  exchangeToken: {
10546
10637
  __typename?: "ExchangeToken";
@@ -10732,6 +10823,8 @@ export type GetExchangeTokenByIdQueryQuery = {
10732
10823
  authTokenType: number;
10733
10824
  voucherCloneAddress: string;
10734
10825
  active: boolean;
10826
+ contractURI: string;
10827
+ royaltyPercentage: string;
10735
10828
  };
10736
10829
  };
10737
10830
  exchangePolicy: {
@@ -10836,6 +10929,8 @@ export type GetExchangeTokensQueryQuery = {
10836
10929
  authTokenType: number;
10837
10930
  voucherCloneAddress: string;
10838
10931
  active: boolean;
10932
+ contractURI: string;
10933
+ royaltyPercentage: string;
10839
10934
  };
10840
10935
  exchangeToken: {
10841
10936
  __typename?: "ExchangeToken";
@@ -11027,6 +11122,8 @@ export type GetExchangeTokensQueryQuery = {
11027
11122
  authTokenType: number;
11028
11123
  voucherCloneAddress: string;
11029
11124
  active: boolean;
11125
+ contractURI: string;
11126
+ royaltyPercentage: string;
11030
11127
  };
11031
11128
  };
11032
11129
  exchangePolicy: {
@@ -11109,6 +11206,8 @@ export type ExchangeTokenFieldsFragment = {
11109
11206
  authTokenType: number;
11110
11207
  voucherCloneAddress: string;
11111
11208
  active: boolean;
11209
+ contractURI: string;
11210
+ royaltyPercentage: string;
11112
11211
  };
11113
11212
  exchangeToken: {
11114
11213
  __typename?: "ExchangeToken";
@@ -11296,6 +11395,8 @@ export type ExchangeTokenFieldsFragment = {
11296
11395
  authTokenType: number;
11297
11396
  voucherCloneAddress: string;
11298
11397
  active: boolean;
11398
+ contractURI: string;
11399
+ royaltyPercentage: string;
11299
11400
  };
11300
11401
  };
11301
11402
  exchangePolicy: {
@@ -11553,6 +11654,8 @@ export type GetExchangeByIdQueryQuery = {
11553
11654
  authTokenType: number;
11554
11655
  voucherCloneAddress: string;
11555
11656
  active: boolean;
11657
+ contractURI: string;
11658
+ royaltyPercentage: string;
11556
11659
  };
11557
11660
  exchangeToken: {
11558
11661
  __typename?: "ExchangeToken";
@@ -11744,6 +11847,8 @@ export type GetExchangeByIdQueryQuery = {
11744
11847
  authTokenType: number;
11745
11848
  voucherCloneAddress: string;
11746
11849
  active: boolean;
11850
+ contractURI: string;
11851
+ royaltyPercentage: string;
11747
11852
  };
11748
11853
  };
11749
11854
  exchangePolicy: {
@@ -11805,6 +11910,8 @@ export type GetExchangeByIdQueryQuery = {
11805
11910
  authTokenType: number;
11806
11911
  voucherCloneAddress: string;
11807
11912
  active: boolean;
11913
+ contractURI: string;
11914
+ royaltyPercentage: string;
11808
11915
  };
11809
11916
  } | null;
11810
11917
  };
@@ -11870,6 +11977,8 @@ export type GetExchangesQueryQuery = {
11870
11977
  authTokenType: number;
11871
11978
  voucherCloneAddress: string;
11872
11979
  active: boolean;
11980
+ contractURI: string;
11981
+ royaltyPercentage: string;
11873
11982
  };
11874
11983
  exchangeToken: {
11875
11984
  __typename?: "ExchangeToken";
@@ -12061,6 +12170,8 @@ export type GetExchangesQueryQuery = {
12061
12170
  authTokenType: number;
12062
12171
  voucherCloneAddress: string;
12063
12172
  active: boolean;
12173
+ contractURI: string;
12174
+ royaltyPercentage: string;
12064
12175
  };
12065
12176
  };
12066
12177
  exchangePolicy: {
@@ -12122,6 +12233,8 @@ export type GetExchangesQueryQuery = {
12122
12233
  authTokenType: number;
12123
12234
  voucherCloneAddress: string;
12124
12235
  active: boolean;
12236
+ contractURI: string;
12237
+ royaltyPercentage: string;
12125
12238
  };
12126
12239
  }>;
12127
12240
  };
@@ -12177,6 +12290,8 @@ export type ExchangeFieldsFragment = {
12177
12290
  authTokenType: number;
12178
12291
  voucherCloneAddress: string;
12179
12292
  active: boolean;
12293
+ contractURI: string;
12294
+ royaltyPercentage: string;
12180
12295
  };
12181
12296
  exchangeToken: {
12182
12297
  __typename?: "ExchangeToken";
@@ -12364,6 +12479,8 @@ export type ExchangeFieldsFragment = {
12364
12479
  authTokenType: number;
12365
12480
  voucherCloneAddress: string;
12366
12481
  active: boolean;
12482
+ contractURI: string;
12483
+ royaltyPercentage: string;
12367
12484
  };
12368
12485
  };
12369
12486
  exchangePolicy: {
@@ -12420,6 +12537,8 @@ export type ExchangeFieldsFragment = {
12420
12537
  authTokenType: number;
12421
12538
  voucherCloneAddress: string;
12422
12539
  active: boolean;
12540
+ contractURI: string;
12541
+ royaltyPercentage: string;
12423
12542
  };
12424
12543
  };
12425
12544
 
@@ -12464,6 +12583,8 @@ export type BaseExchangeFieldsFragment = {
12464
12583
  authTokenType: number;
12465
12584
  voucherCloneAddress: string;
12466
12585
  active: boolean;
12586
+ contractURI: string;
12587
+ royaltyPercentage: string;
12467
12588
  };
12468
12589
  };
12469
12590
 
@@ -12607,6 +12728,8 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
12607
12728
  authTokenType: number;
12608
12729
  voucherCloneAddress: string;
12609
12730
  active: boolean;
12731
+ contractURI: string;
12732
+ royaltyPercentage: string;
12610
12733
  };
12611
12734
  exchangeToken: {
12612
12735
  __typename?: "ExchangeToken";
@@ -12798,6 +12921,8 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
12798
12921
  authTokenType: number;
12799
12922
  voucherCloneAddress: string;
12800
12923
  active: boolean;
12924
+ contractURI: string;
12925
+ royaltyPercentage: string;
12801
12926
  };
12802
12927
  };
12803
12928
  exchangePolicy: {
@@ -12838,6 +12963,8 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
12838
12963
  authTokenType: number;
12839
12964
  voucherCloneAddress: string;
12840
12965
  active: boolean;
12966
+ contractURI: string;
12967
+ royaltyPercentage: string;
12841
12968
  };
12842
12969
  exchangeToken: {
12843
12970
  __typename?: "ExchangeToken";
@@ -12919,6 +13046,8 @@ export type GetBaseMetadataEntitiesQueryQuery = {
12919
13046
  authTokenType: number;
12920
13047
  voucherCloneAddress: string;
12921
13048
  active: boolean;
13049
+ contractURI: string;
13050
+ royaltyPercentage: string;
12922
13051
  };
12923
13052
  exchangeToken: {
12924
13053
  __typename?: "ExchangeToken";
@@ -13110,6 +13239,8 @@ export type GetBaseMetadataEntitiesQueryQuery = {
13110
13239
  authTokenType: number;
13111
13240
  voucherCloneAddress: string;
13112
13241
  active: boolean;
13242
+ contractURI: string;
13243
+ royaltyPercentage: string;
13113
13244
  };
13114
13245
  };
13115
13246
  exchangePolicy: {
@@ -13150,6 +13281,8 @@ export type GetBaseMetadataEntitiesQueryQuery = {
13150
13281
  authTokenType: number;
13151
13282
  voucherCloneAddress: string;
13152
13283
  active: boolean;
13284
+ contractURI: string;
13285
+ royaltyPercentage: string;
13153
13286
  };
13154
13287
  exchangeToken: {
13155
13288
  __typename?: "ExchangeToken";
@@ -13221,6 +13354,8 @@ export type BaseMetadataEntityFieldsFragment = {
13221
13354
  authTokenType: number;
13222
13355
  voucherCloneAddress: string;
13223
13356
  active: boolean;
13357
+ contractURI: string;
13358
+ royaltyPercentage: string;
13224
13359
  };
13225
13360
  exchangeToken: {
13226
13361
  __typename?: "ExchangeToken";
@@ -13408,6 +13543,8 @@ export type BaseMetadataEntityFieldsFragment = {
13408
13543
  authTokenType: number;
13409
13544
  voucherCloneAddress: string;
13410
13545
  active: boolean;
13546
+ contractURI: string;
13547
+ royaltyPercentage: string;
13411
13548
  };
13412
13549
  };
13413
13550
  exchangePolicy: {
@@ -13448,6 +13585,8 @@ export type BaseMetadataEntityFieldsFragment = {
13448
13585
  authTokenType: number;
13449
13586
  voucherCloneAddress: string;
13450
13587
  active: boolean;
13588
+ contractURI: string;
13589
+ royaltyPercentage: string;
13451
13590
  };
13452
13591
  exchangeToken: {
13453
13592
  __typename?: "ExchangeToken";
@@ -13518,6 +13657,8 @@ export type BaseBaseMetadataEntityFieldsFragment = {
13518
13657
  authTokenType: number;
13519
13658
  voucherCloneAddress: string;
13520
13659
  active: boolean;
13660
+ contractURI: string;
13661
+ royaltyPercentage: string;
13521
13662
  };
13522
13663
  exchangeToken: {
13523
13664
  __typename?: "ExchangeToken";
@@ -13705,6 +13846,8 @@ export type BaseBaseMetadataEntityFieldsFragment = {
13705
13846
  authTokenType: number;
13706
13847
  voucherCloneAddress: string;
13707
13848
  active: boolean;
13849
+ contractURI: string;
13850
+ royaltyPercentage: string;
13708
13851
  };
13709
13852
  };
13710
13853
  exchangePolicy: {
@@ -13745,6 +13888,8 @@ export type BaseBaseMetadataEntityFieldsFragment = {
13745
13888
  authTokenType: number;
13746
13889
  voucherCloneAddress: string;
13747
13890
  active: boolean;
13891
+ contractURI: string;
13892
+ royaltyPercentage: string;
13748
13893
  };
13749
13894
  exchangeToken: {
13750
13895
  __typename?: "ExchangeToken";
@@ -13861,6 +14006,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
13861
14006
  authTokenType: number;
13862
14007
  voucherCloneAddress: string;
13863
14008
  active: boolean;
14009
+ contractURI: string;
14010
+ royaltyPercentage: string;
13864
14011
  };
13865
14012
  exchangeToken: {
13866
14013
  __typename?: "ExchangeToken";
@@ -14052,6 +14199,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
14052
14199
  authTokenType: number;
14053
14200
  voucherCloneAddress: string;
14054
14201
  active: boolean;
14202
+ contractURI: string;
14203
+ royaltyPercentage: string;
14055
14204
  };
14056
14205
  };
14057
14206
  exchangePolicy: {
@@ -14092,6 +14241,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
14092
14241
  authTokenType: number;
14093
14242
  voucherCloneAddress: string;
14094
14243
  active: boolean;
14244
+ contractURI: string;
14245
+ royaltyPercentage: string;
14095
14246
  };
14096
14247
  exchangeToken: {
14097
14248
  __typename?: "ExchangeToken";
@@ -14215,6 +14366,8 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
14215
14366
  authTokenType: number;
14216
14367
  voucherCloneAddress: string;
14217
14368
  active: boolean;
14369
+ contractURI: string;
14370
+ royaltyPercentage: string;
14218
14371
  };
14219
14372
  };
14220
14373
  exchangePolicy: {
@@ -14300,6 +14453,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
14300
14453
  authTokenType: number;
14301
14454
  voucherCloneAddress: string;
14302
14455
  active: boolean;
14456
+ contractURI: string;
14457
+ royaltyPercentage: string;
14303
14458
  };
14304
14459
  exchangeToken: {
14305
14460
  __typename?: "ExchangeToken";
@@ -14491,6 +14646,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
14491
14646
  authTokenType: number;
14492
14647
  voucherCloneAddress: string;
14493
14648
  active: boolean;
14649
+ contractURI: string;
14650
+ royaltyPercentage: string;
14494
14651
  };
14495
14652
  };
14496
14653
  exchangePolicy: {
@@ -14531,6 +14688,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
14531
14688
  authTokenType: number;
14532
14689
  voucherCloneAddress: string;
14533
14690
  active: boolean;
14691
+ contractURI: string;
14692
+ royaltyPercentage: string;
14534
14693
  };
14535
14694
  exchangeToken: {
14536
14695
  __typename?: "ExchangeToken";
@@ -14654,6 +14813,8 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
14654
14813
  authTokenType: number;
14655
14814
  voucherCloneAddress: string;
14656
14815
  active: boolean;
14816
+ contractURI: string;
14817
+ royaltyPercentage: string;
14657
14818
  };
14658
14819
  };
14659
14820
  exchangePolicy: {
@@ -14729,6 +14890,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
14729
14890
  authTokenType: number;
14730
14891
  voucherCloneAddress: string;
14731
14892
  active: boolean;
14893
+ contractURI: string;
14894
+ royaltyPercentage: string;
14732
14895
  };
14733
14896
  exchangeToken: {
14734
14897
  __typename?: "ExchangeToken";
@@ -14916,6 +15079,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
14916
15079
  authTokenType: number;
14917
15080
  voucherCloneAddress: string;
14918
15081
  active: boolean;
15082
+ contractURI: string;
15083
+ royaltyPercentage: string;
14919
15084
  };
14920
15085
  };
14921
15086
  exchangePolicy: {
@@ -14956,6 +15121,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
14956
15121
  authTokenType: number;
14957
15122
  voucherCloneAddress: string;
14958
15123
  active: boolean;
15124
+ contractURI: string;
15125
+ royaltyPercentage: string;
14959
15126
  };
14960
15127
  exchangeToken: {
14961
15128
  __typename?: "ExchangeToken";
@@ -15079,6 +15246,8 @@ export type ProductV1MetadataEntityFieldsFragment = {
15079
15246
  authTokenType: number;
15080
15247
  voucherCloneAddress: string;
15081
15248
  active: boolean;
15249
+ contractURI: string;
15250
+ royaltyPercentage: string;
15082
15251
  };
15083
15252
  };
15084
15253
  exchangePolicy: {
@@ -15153,6 +15322,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
15153
15322
  authTokenType: number;
15154
15323
  voucherCloneAddress: string;
15155
15324
  active: boolean;
15325
+ contractURI: string;
15326
+ royaltyPercentage: string;
15156
15327
  };
15157
15328
  exchangeToken: {
15158
15329
  __typename?: "ExchangeToken";
@@ -15340,6 +15511,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
15340
15511
  authTokenType: number;
15341
15512
  voucherCloneAddress: string;
15342
15513
  active: boolean;
15514
+ contractURI: string;
15515
+ royaltyPercentage: string;
15343
15516
  };
15344
15517
  };
15345
15518
  exchangePolicy: {
@@ -15380,6 +15553,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
15380
15553
  authTokenType: number;
15381
15554
  voucherCloneAddress: string;
15382
15555
  active: boolean;
15556
+ contractURI: string;
15557
+ royaltyPercentage: string;
15383
15558
  };
15384
15559
  exchangeToken: {
15385
15560
  __typename?: "ExchangeToken";
@@ -15503,6 +15678,8 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
15503
15678
  authTokenType: number;
15504
15679
  voucherCloneAddress: string;
15505
15680
  active: boolean;
15681
+ contractURI: string;
15682
+ royaltyPercentage: string;
15506
15683
  };
15507
15684
  };
15508
15685
  exchangePolicy: {
@@ -15671,6 +15848,8 @@ export type BaseProductV1SellerFieldsFragment = {
15671
15848
  authTokenType: number;
15672
15849
  voucherCloneAddress: string;
15673
15850
  active: boolean;
15851
+ contractURI: string;
15852
+ royaltyPercentage: string;
15674
15853
  };
15675
15854
  };
15676
15855
 
@@ -15836,6 +16015,8 @@ export type GetOfferByIdQueryQuery = {
15836
16015
  authTokenType: number;
15837
16016
  voucherCloneAddress: string;
15838
16017
  active: boolean;
16018
+ contractURI: string;
16019
+ royaltyPercentage: string;
15839
16020
  };
15840
16021
  }>;
15841
16022
  seller: {
@@ -15849,6 +16030,8 @@ export type GetOfferByIdQueryQuery = {
15849
16030
  authTokenType: number;
15850
16031
  voucherCloneAddress: string;
15851
16032
  active: boolean;
16033
+ contractURI: string;
16034
+ royaltyPercentage: string;
15852
16035
  };
15853
16036
  exchangeToken: {
15854
16037
  __typename?: "ExchangeToken";
@@ -16036,6 +16219,8 @@ export type GetOfferByIdQueryQuery = {
16036
16219
  authTokenType: number;
16037
16220
  voucherCloneAddress: string;
16038
16221
  active: boolean;
16222
+ contractURI: string;
16223
+ royaltyPercentage: string;
16039
16224
  };
16040
16225
  };
16041
16226
  exchangePolicy: {
@@ -16155,6 +16340,8 @@ export type GetOffersQueryQuery = {
16155
16340
  authTokenType: number;
16156
16341
  voucherCloneAddress: string;
16157
16342
  active: boolean;
16343
+ contractURI: string;
16344
+ royaltyPercentage: string;
16158
16345
  };
16159
16346
  }>;
16160
16347
  seller: {
@@ -16168,6 +16355,8 @@ export type GetOffersQueryQuery = {
16168
16355
  authTokenType: number;
16169
16356
  voucherCloneAddress: string;
16170
16357
  active: boolean;
16358
+ contractURI: string;
16359
+ royaltyPercentage: string;
16171
16360
  };
16172
16361
  exchangeToken: {
16173
16362
  __typename?: "ExchangeToken";
@@ -16355,6 +16544,8 @@ export type GetOffersQueryQuery = {
16355
16544
  authTokenType: number;
16356
16545
  voucherCloneAddress: string;
16357
16546
  active: boolean;
16547
+ contractURI: string;
16548
+ royaltyPercentage: string;
16358
16549
  };
16359
16550
  };
16360
16551
  exchangePolicy: {
@@ -16458,6 +16649,8 @@ export type OfferFieldsFragment = {
16458
16649
  authTokenType: number;
16459
16650
  voucherCloneAddress: string;
16460
16651
  active: boolean;
16652
+ contractURI: string;
16653
+ royaltyPercentage: string;
16461
16654
  };
16462
16655
  }>;
16463
16656
  seller: {
@@ -16471,6 +16664,8 @@ export type OfferFieldsFragment = {
16471
16664
  authTokenType: number;
16472
16665
  voucherCloneAddress: string;
16473
16666
  active: boolean;
16667
+ contractURI: string;
16668
+ royaltyPercentage: string;
16474
16669
  };
16475
16670
  exchangeToken: {
16476
16671
  __typename?: "ExchangeToken";
@@ -16658,6 +16853,8 @@ export type OfferFieldsFragment = {
16658
16853
  authTokenType: number;
16659
16854
  voucherCloneAddress: string;
16660
16855
  active: boolean;
16856
+ contractURI: string;
16857
+ royaltyPercentage: string;
16661
16858
  };
16662
16859
  };
16663
16860
  exchangePolicy: {
@@ -16725,6 +16922,8 @@ export type BaseOfferFieldsFragment = {
16725
16922
  authTokenType: number;
16726
16923
  voucherCloneAddress: string;
16727
16924
  active: boolean;
16925
+ contractURI: string;
16926
+ royaltyPercentage: string;
16728
16927
  };
16729
16928
  exchangeToken: {
16730
16929
  __typename?: "ExchangeToken";
@@ -16912,6 +17111,8 @@ export type BaseOfferFieldsFragment = {
16912
17111
  authTokenType: number;
16913
17112
  voucherCloneAddress: string;
16914
17113
  active: boolean;
17114
+ contractURI: string;
17115
+ royaltyPercentage: string;
16915
17116
  };
16916
17117
  };
16917
17118
  exchangePolicy: {
@@ -16953,6 +17154,8 @@ export const BaseSellerFieldsFragmentDoc = gql`
16953
17154
  authTokenType
16954
17155
  voucherCloneAddress
16955
17156
  active
17157
+ contractURI
17158
+ royaltyPercentage
16956
17159
  }
16957
17160
  `;
16958
17161
  export const BaseFundsEntityFieldsFragmentDoc = gql`