@bosonprotocol/core-sdk 1.40.0-alpha.2 → 1.40.0-alpha.21
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/dist/cjs/core-sdk.d.ts +3 -1
- package/dist/cjs/core-sdk.d.ts.map +1 -1
- package/dist/cjs/core-sdk.js +5 -1
- package/dist/cjs/core-sdk.js.map +1 -1
- package/dist/cjs/errors/mixin.d.ts +9 -0
- package/dist/cjs/errors/mixin.d.ts.map +1 -0
- package/dist/cjs/errors/mixin.js +44 -0
- package/dist/cjs/errors/mixin.js.map +1 -0
- package/dist/cjs/exchanges/mixin.d.ts +6 -1
- package/dist/cjs/exchanges/mixin.d.ts.map +1 -1
- package/dist/cjs/exchanges/mixin.js +10 -0
- package/dist/cjs/exchanges/mixin.js.map +1 -1
- package/dist/cjs/metadata/storeMetadataItems.js +1 -1
- package/dist/cjs/metadata/storeMetadataItems.js.map +1 -1
- package/dist/cjs/mixins/base-core-sdk.d.ts +2 -1
- package/dist/cjs/mixins/base-core-sdk.d.ts.map +1 -1
- package/dist/cjs/mixins/base-core-sdk.js +1 -0
- package/dist/cjs/mixins/base-core-sdk.js.map +1 -1
- package/dist/cjs/subgraph/mixin.d.ts +8 -0
- package/dist/cjs/subgraph/mixin.d.ts.map +1 -0
- package/dist/cjs/subgraph/mixin.js +116 -0
- package/dist/cjs/subgraph/mixin.js.map +1 -0
- package/dist/cjs/subgraph.d.ts +345 -368
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +24 -20
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/cjs/utils/tokenInfoManager.d.ts.map +1 -1
- package/dist/cjs/utils/tokenInfoManager.js +2 -14
- package/dist/cjs/utils/tokenInfoManager.js.map +1 -1
- package/dist/cjs/voucher/mixin.d.ts +1 -3
- package/dist/cjs/voucher/mixin.d.ts.map +1 -1
- package/dist/cjs/voucher/mixin.js +10 -2
- package/dist/cjs/voucher/mixin.js.map +1 -1
- package/dist/esm/core-sdk.d.ts +3 -1
- package/dist/esm/core-sdk.d.ts.map +1 -1
- package/dist/esm/core-sdk.js +5 -1
- package/dist/esm/core-sdk.js.map +1 -1
- package/dist/esm/errors/mixin.d.ts +9 -0
- package/dist/esm/errors/mixin.d.ts.map +1 -0
- package/dist/esm/errors/mixin.js +40 -0
- package/dist/esm/errors/mixin.js.map +1 -0
- package/dist/esm/exchanges/mixin.d.ts +6 -1
- package/dist/esm/exchanges/mixin.d.ts.map +1 -1
- package/dist/esm/exchanges/mixin.js +10 -0
- package/dist/esm/exchanges/mixin.js.map +1 -1
- package/dist/esm/metadata/storeMetadataItems.js +1 -1
- package/dist/esm/metadata/storeMetadataItems.js.map +1 -1
- package/dist/esm/mixins/base-core-sdk.d.ts +2 -1
- package/dist/esm/mixins/base-core-sdk.d.ts.map +1 -1
- package/dist/esm/mixins/base-core-sdk.js +1 -0
- package/dist/esm/mixins/base-core-sdk.js.map +1 -1
- package/dist/esm/subgraph/mixin.d.ts +8 -0
- package/dist/esm/subgraph/mixin.d.ts.map +1 -0
- package/dist/esm/subgraph/mixin.js +96 -0
- package/dist/esm/subgraph/mixin.js.map +1 -0
- package/dist/esm/subgraph.d.ts +345 -368
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +20 -16
- package/dist/esm/subgraph.js.map +1 -1
- package/dist/esm/utils/tokenInfoManager.d.ts.map +1 -1
- package/dist/esm/utils/tokenInfoManager.js +2 -14
- package/dist/esm/utils/tokenInfoManager.js.map +1 -1
- package/dist/esm/voucher/mixin.d.ts +1 -3
- package/dist/esm/voucher/mixin.d.ts.map +1 -1
- package/dist/esm/voucher/mixin.js +10 -2
- package/dist/esm/voucher/mixin.js.map +1 -1
- package/package.json +3 -3
- package/src/accounts/queries.graphql +4 -2
- package/src/core-sdk.ts +8 -2
- package/src/errors/mixin.ts +47 -0
- package/src/exchanges/mixin.ts +18 -1
- package/src/metadata/storeMetadataItems.ts +1 -1
- package/src/mixins/base-core-sdk.ts +4 -1
- package/src/subgraph/mixin.ts +113 -0
- package/src/subgraph.ts +364 -370
- package/src/utils/tokenInfoManager.ts +2 -14
- package/src/voucher/mixin.ts +14 -5
package/dist/esm/subgraph.d.ts
CHANGED
|
@@ -697,7 +697,6 @@ export declare enum BaseMetadataEntity_OrderBy {
|
|
|
697
697
|
SELLER__AUTHTOKENID = "seller__authTokenId",
|
|
698
698
|
SELLER__AUTHTOKENTYPE = "seller__authTokenType",
|
|
699
699
|
SELLER__CLERK = "seller__clerk",
|
|
700
|
-
SELLER__CONTRACTURI = "seller__contractURI",
|
|
701
700
|
SELLER__ID = "seller__id",
|
|
702
701
|
SELLER__METADATAURI = "seller__metadataUri",
|
|
703
702
|
SELLER__SELLERID = "seller__sellerId",
|
|
@@ -1222,7 +1221,6 @@ export declare enum BundleMetadataEntity_OrderBy {
|
|
|
1222
1221
|
SELLER__AUTHTOKENID = "seller__authTokenId",
|
|
1223
1222
|
SELLER__AUTHTOKENTYPE = "seller__authTokenType",
|
|
1224
1223
|
SELLER__CLERK = "seller__clerk",
|
|
1225
|
-
SELLER__CONTRACTURI = "seller__contractURI",
|
|
1226
1224
|
SELLER__ID = "seller__id",
|
|
1227
1225
|
SELLER__METADATAURI = "seller__metadataUri",
|
|
1228
1226
|
SELLER__SELLERID = "seller__sellerId",
|
|
@@ -1302,6 +1300,73 @@ export declare enum Buyer_OrderBy {
|
|
|
1302
1300
|
LOGS = "logs",
|
|
1303
1301
|
WALLET = "wallet"
|
|
1304
1302
|
}
|
|
1303
|
+
/**
|
|
1304
|
+
* Collection Contract
|
|
1305
|
+
*
|
|
1306
|
+
*/
|
|
1307
|
+
export type CollectionContract = {
|
|
1308
|
+
__typename?: "CollectionContract";
|
|
1309
|
+
address: Scalars["Bytes"]["output"];
|
|
1310
|
+
collection: OfferCollection;
|
|
1311
|
+
contractUri: Scalars["String"]["output"];
|
|
1312
|
+
id: Scalars["ID"]["output"];
|
|
1313
|
+
};
|
|
1314
|
+
export type CollectionContract_Filter = {
|
|
1315
|
+
/** Filter for the block changed event. */
|
|
1316
|
+
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
1317
|
+
address?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1318
|
+
address_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1319
|
+
address_gt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1320
|
+
address_gte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1321
|
+
address_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1322
|
+
address_lt?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1323
|
+
address_lte?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1324
|
+
address_not?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1325
|
+
address_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
1326
|
+
address_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
1327
|
+
and?: InputMaybe<Array<InputMaybe<CollectionContract_Filter>>>;
|
|
1328
|
+
collection_?: InputMaybe<OfferCollection_Filter>;
|
|
1329
|
+
contractUri?: InputMaybe<Scalars["String"]["input"]>;
|
|
1330
|
+
contractUri_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
1331
|
+
contractUri_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1332
|
+
contractUri_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1333
|
+
contractUri_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1334
|
+
contractUri_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
1335
|
+
contractUri_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
1336
|
+
contractUri_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
1337
|
+
contractUri_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
1338
|
+
contractUri_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
1339
|
+
contractUri_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
1340
|
+
contractUri_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
1341
|
+
contractUri_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1342
|
+
contractUri_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1343
|
+
contractUri_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1344
|
+
contractUri_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
1345
|
+
contractUri_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1346
|
+
contractUri_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1347
|
+
contractUri_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
1348
|
+
contractUri_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
1349
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1350
|
+
id_gt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1351
|
+
id_gte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1352
|
+
id_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
1353
|
+
id_lt?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1354
|
+
id_lte?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1355
|
+
id_not?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1356
|
+
id_not_in?: InputMaybe<Array<Scalars["ID"]["input"]>>;
|
|
1357
|
+
or?: InputMaybe<Array<InputMaybe<CollectionContract_Filter>>>;
|
|
1358
|
+
};
|
|
1359
|
+
export declare enum CollectionContract_OrderBy {
|
|
1360
|
+
ADDRESS = "address",
|
|
1361
|
+
COLLECTION = "collection",
|
|
1362
|
+
COLLECTION__COLLECTIONINDEX = "collection__collectionIndex",
|
|
1363
|
+
COLLECTION__EXTERNALID = "collection__externalId",
|
|
1364
|
+
COLLECTION__EXTERNALIDHASH = "collection__externalIdHash",
|
|
1365
|
+
COLLECTION__ID = "collection__id",
|
|
1366
|
+
COLLECTION__SELLERID = "collection__sellerId",
|
|
1367
|
+
CONTRACTURI = "contractUri",
|
|
1368
|
+
ID = "id"
|
|
1369
|
+
}
|
|
1305
1370
|
/**
|
|
1306
1371
|
* Groups
|
|
1307
1372
|
*
|
|
@@ -2370,7 +2435,6 @@ export declare enum Dispute_OrderBy {
|
|
|
2370
2435
|
SELLER__AUTHTOKENID = "seller__authTokenId",
|
|
2371
2436
|
SELLER__AUTHTOKENTYPE = "seller__authTokenType",
|
|
2372
2437
|
SELLER__CLERK = "seller__clerk",
|
|
2373
|
-
SELLER__CONTRACTURI = "seller__contractURI",
|
|
2374
2438
|
SELLER__ID = "seller__id",
|
|
2375
2439
|
SELLER__METADATAURI = "seller__metadataUri",
|
|
2376
2440
|
SELLER__SELLERID = "seller__sellerId",
|
|
@@ -3068,7 +3132,6 @@ export declare enum Exchange_OrderBy {
|
|
|
3068
3132
|
SELLER__AUTHTOKENID = "seller__authTokenId",
|
|
3069
3133
|
SELLER__AUTHTOKENTYPE = "seller__authTokenType",
|
|
3070
3134
|
SELLER__CLERK = "seller__clerk",
|
|
3071
|
-
SELLER__CONTRACTURI = "seller__contractURI",
|
|
3072
3135
|
SELLER__ID = "seller__id",
|
|
3073
3136
|
SELLER__METADATAURI = "seller__metadataUri",
|
|
3074
3137
|
SELLER__SELLERID = "seller__sellerId",
|
|
@@ -3936,7 +3999,6 @@ export declare enum MetadataInterface_OrderBy {
|
|
|
3936
3999
|
SELLER__AUTHTOKENID = "seller__authTokenId",
|
|
3937
4000
|
SELLER__AUTHTOKENTYPE = "seller__authTokenType",
|
|
3938
4001
|
SELLER__CLERK = "seller__clerk",
|
|
3939
|
-
SELLER__CONTRACTURI = "seller__contractURI",
|
|
3940
4002
|
SELLER__ID = "seller__id",
|
|
3941
4003
|
SELLER__METADATAURI = "seller__metadataUri",
|
|
3942
4004
|
SELLER__SELLERID = "seller__sellerId",
|
|
@@ -4525,7 +4587,7 @@ export type OfferRoyaltyInfosArgs = {
|
|
|
4525
4587
|
*/
|
|
4526
4588
|
export type OfferCollection = {
|
|
4527
4589
|
__typename?: "OfferCollection";
|
|
4528
|
-
|
|
4590
|
+
collectionContract: CollectionContract;
|
|
4529
4591
|
collectionIndex: Scalars["BigInt"]["output"];
|
|
4530
4592
|
externalId: Scalars["String"]["output"];
|
|
4531
4593
|
externalIdHash: Scalars["Bytes"]["output"];
|
|
@@ -4550,16 +4612,27 @@ export type OfferCollection_Filter = {
|
|
|
4550
4612
|
/** Filter for the block changed event. */
|
|
4551
4613
|
_change_block?: InputMaybe<BlockChangedFilter>;
|
|
4552
4614
|
and?: InputMaybe<Array<InputMaybe<OfferCollection_Filter>>>;
|
|
4553
|
-
|
|
4554
|
-
|
|
4555
|
-
|
|
4556
|
-
|
|
4557
|
-
|
|
4558
|
-
|
|
4559
|
-
|
|
4560
|
-
|
|
4561
|
-
|
|
4562
|
-
|
|
4615
|
+
collectionContract?: InputMaybe<Scalars["String"]["input"]>;
|
|
4616
|
+
collectionContract_?: InputMaybe<CollectionContract_Filter>;
|
|
4617
|
+
collectionContract_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
4618
|
+
collectionContract_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
4619
|
+
collectionContract_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
4620
|
+
collectionContract_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
4621
|
+
collectionContract_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
4622
|
+
collectionContract_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
4623
|
+
collectionContract_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
4624
|
+
collectionContract_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
4625
|
+
collectionContract_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
4626
|
+
collectionContract_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
4627
|
+
collectionContract_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
4628
|
+
collectionContract_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
4629
|
+
collectionContract_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
4630
|
+
collectionContract_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
4631
|
+
collectionContract_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
4632
|
+
collectionContract_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
4633
|
+
collectionContract_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
4634
|
+
collectionContract_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
4635
|
+
collectionContract_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
4563
4636
|
collectionIndex?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
4564
4637
|
collectionIndex_gt?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
4565
4638
|
collectionIndex_gte?: InputMaybe<Scalars["BigInt"]["input"]>;
|
|
@@ -4660,7 +4733,10 @@ export type OfferCollection_Filter = {
|
|
|
4660
4733
|
seller_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
4661
4734
|
};
|
|
4662
4735
|
export declare enum OfferCollection_OrderBy {
|
|
4663
|
-
|
|
4736
|
+
COLLECTIONCONTRACT = "collectionContract",
|
|
4737
|
+
COLLECTIONCONTRACT__ADDRESS = "collectionContract__address",
|
|
4738
|
+
COLLECTIONCONTRACT__CONTRACTURI = "collectionContract__contractUri",
|
|
4739
|
+
COLLECTIONCONTRACT__ID = "collectionContract__id",
|
|
4664
4740
|
COLLECTIONINDEX = "collectionIndex",
|
|
4665
4741
|
EXTERNALID = "externalId",
|
|
4666
4742
|
EXTERNALIDHASH = "externalIdHash",
|
|
@@ -4681,7 +4757,6 @@ export declare enum OfferCollection_OrderBy {
|
|
|
4681
4757
|
SELLER__AUTHTOKENID = "seller__authTokenId",
|
|
4682
4758
|
SELLER__AUTHTOKENTYPE = "seller__authTokenType",
|
|
4683
4759
|
SELLER__CLERK = "seller__clerk",
|
|
4684
|
-
SELLER__CONTRACTURI = "seller__contractURI",
|
|
4685
4760
|
SELLER__ID = "seller__id",
|
|
4686
4761
|
SELLER__METADATAURI = "seller__metadataUri",
|
|
4687
4762
|
SELLER__SELLERID = "seller__sellerId",
|
|
@@ -5251,7 +5326,6 @@ export declare enum Offer_OrderBy {
|
|
|
5251
5326
|
BUYERCANCELPENALTY = "buyerCancelPenalty",
|
|
5252
5327
|
COLLECTION = "collection",
|
|
5253
5328
|
COLLECTIONINDEX = "collectionIndex",
|
|
5254
|
-
COLLECTION__COLLECTIONADDRESS = "collection__collectionAddress",
|
|
5255
5329
|
COLLECTION__COLLECTIONINDEX = "collection__collectionIndex",
|
|
5256
5330
|
COLLECTION__EXTERNALID = "collection__externalId",
|
|
5257
5331
|
COLLECTION__EXTERNALIDHASH = "collection__externalIdHash",
|
|
@@ -5337,7 +5411,6 @@ export declare enum Offer_OrderBy {
|
|
|
5337
5411
|
SELLER__AUTHTOKENID = "seller__authTokenId",
|
|
5338
5412
|
SELLER__AUTHTOKENTYPE = "seller__authTokenType",
|
|
5339
5413
|
SELLER__CLERK = "seller__clerk",
|
|
5340
|
-
SELLER__CONTRACTURI = "seller__contractURI",
|
|
5341
5414
|
SELLER__ID = "seller__id",
|
|
5342
5415
|
SELLER__METADATAURI = "seller__metadataUri",
|
|
5343
5416
|
SELLER__SELLERID = "seller__sellerId",
|
|
@@ -5571,7 +5644,6 @@ export declare enum PendingSeller_OrderBy {
|
|
|
5571
5644
|
SELLER__AUTHTOKENID = "seller__authTokenId",
|
|
5572
5645
|
SELLER__AUTHTOKENTYPE = "seller__authTokenType",
|
|
5573
5646
|
SELLER__CLERK = "seller__clerk",
|
|
5574
|
-
SELLER__CONTRACTURI = "seller__contractURI",
|
|
5575
5647
|
SELLER__ID = "seller__id",
|
|
5576
5648
|
SELLER__METADATAURI = "seller__metadataUri",
|
|
5577
5649
|
SELLER__SELLERID = "seller__sellerId",
|
|
@@ -6957,7 +7029,6 @@ export declare enum ProductV1MetadataEntity_OrderBy {
|
|
|
6957
7029
|
SELLER__AUTHTOKENID = "seller__authTokenId",
|
|
6958
7030
|
SELLER__AUTHTOKENTYPE = "seller__authTokenType",
|
|
6959
7031
|
SELLER__CLERK = "seller__clerk",
|
|
6960
|
-
SELLER__CONTRACTURI = "seller__contractURI",
|
|
6961
7032
|
SELLER__ID = "seller__id",
|
|
6962
7033
|
SELLER__METADATAURI = "seller__metadataUri",
|
|
6963
7034
|
SELLER__SELLERID = "seller__sellerId",
|
|
@@ -8690,7 +8761,6 @@ export declare enum ProductV1Seller_OrderBy {
|
|
|
8690
8761
|
SELLER__AUTHTOKENID = "seller__authTokenId",
|
|
8691
8762
|
SELLER__AUTHTOKENTYPE = "seller__authTokenType",
|
|
8692
8763
|
SELLER__CLERK = "seller__clerk",
|
|
8693
|
-
SELLER__CONTRACTURI = "seller__contractURI",
|
|
8694
8764
|
SELLER__ID = "seller__id",
|
|
8695
8765
|
SELLER__METADATAURI = "seller__metadataUri",
|
|
8696
8766
|
SELLER__SELLERID = "seller__sellerId",
|
|
@@ -9115,6 +9185,8 @@ export type Query = {
|
|
|
9115
9185
|
bundleMetadataEntity?: Maybe<BundleMetadataEntity>;
|
|
9116
9186
|
buyer?: Maybe<Buyer>;
|
|
9117
9187
|
buyers: Array<Buyer>;
|
|
9188
|
+
collectionContract?: Maybe<CollectionContract>;
|
|
9189
|
+
collectionContracts: Array<CollectionContract>;
|
|
9118
9190
|
conditionEntities: Array<ConditionEntity>;
|
|
9119
9191
|
conditionEntity?: Maybe<ConditionEntity>;
|
|
9120
9192
|
conditionalCommitAuthorizedEventLog?: Maybe<ConditionalCommitAuthorizedEventLog>;
|
|
@@ -9305,6 +9377,20 @@ export type QueryBuyersArgs = {
|
|
|
9305
9377
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
9306
9378
|
where?: InputMaybe<Buyer_Filter>;
|
|
9307
9379
|
};
|
|
9380
|
+
export type QueryCollectionContractArgs = {
|
|
9381
|
+
block?: InputMaybe<Block_Height>;
|
|
9382
|
+
id: Scalars["ID"]["input"];
|
|
9383
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
9384
|
+
};
|
|
9385
|
+
export type QueryCollectionContractsArgs = {
|
|
9386
|
+
block?: InputMaybe<Block_Height>;
|
|
9387
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9388
|
+
orderBy?: InputMaybe<CollectionContract_OrderBy>;
|
|
9389
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
9390
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9391
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
9392
|
+
where?: InputMaybe<CollectionContract_Filter>;
|
|
9393
|
+
};
|
|
9308
9394
|
export type QueryConditionEntitiesArgs = {
|
|
9309
9395
|
block?: InputMaybe<Block_Height>;
|
|
9310
9396
|
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -10435,7 +10521,6 @@ export declare enum RoyaltyRecipientXSeller_OrderBy {
|
|
|
10435
10521
|
SELLER__AUTHTOKENID = "seller__authTokenId",
|
|
10436
10522
|
SELLER__AUTHTOKENTYPE = "seller__authTokenType",
|
|
10437
10523
|
SELLER__CLERK = "seller__clerk",
|
|
10438
|
-
SELLER__CONTRACTURI = "seller__contractURI",
|
|
10439
10524
|
SELLER__ID = "seller__id",
|
|
10440
10525
|
SELLER__METADATAURI = "seller__metadataUri",
|
|
10441
10526
|
SELLER__SELLERID = "seller__sellerId",
|
|
@@ -10771,7 +10856,6 @@ export type Seller = Account & {
|
|
|
10771
10856
|
authTokenType: Scalars["Int"]["output"];
|
|
10772
10857
|
clerk: Scalars["Bytes"]["output"];
|
|
10773
10858
|
collections: Array<OfferCollection>;
|
|
10774
|
-
contractURI: Scalars["String"]["output"];
|
|
10775
10859
|
exchanges: Array<Exchange>;
|
|
10776
10860
|
funds: Array<FundsEntity>;
|
|
10777
10861
|
id: Scalars["ID"]["output"];
|
|
@@ -11400,26 +11484,6 @@ export type Seller_Filter = {
|
|
|
11400
11484
|
clerk_not_contains?: InputMaybe<Scalars["Bytes"]["input"]>;
|
|
11401
11485
|
clerk_not_in?: InputMaybe<Array<Scalars["Bytes"]["input"]>>;
|
|
11402
11486
|
collections_?: InputMaybe<OfferCollection_Filter>;
|
|
11403
|
-
contractURI?: InputMaybe<Scalars["String"]["input"]>;
|
|
11404
|
-
contractURI_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
11405
|
-
contractURI_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
11406
|
-
contractURI_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
11407
|
-
contractURI_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
11408
|
-
contractURI_gt?: InputMaybe<Scalars["String"]["input"]>;
|
|
11409
|
-
contractURI_gte?: InputMaybe<Scalars["String"]["input"]>;
|
|
11410
|
-
contractURI_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
11411
|
-
contractURI_lt?: InputMaybe<Scalars["String"]["input"]>;
|
|
11412
|
-
contractURI_lte?: InputMaybe<Scalars["String"]["input"]>;
|
|
11413
|
-
contractURI_not?: InputMaybe<Scalars["String"]["input"]>;
|
|
11414
|
-
contractURI_not_contains?: InputMaybe<Scalars["String"]["input"]>;
|
|
11415
|
-
contractURI_not_contains_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
11416
|
-
contractURI_not_ends_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
11417
|
-
contractURI_not_ends_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
11418
|
-
contractURI_not_in?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
|
11419
|
-
contractURI_not_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
11420
|
-
contractURI_not_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
11421
|
-
contractURI_starts_with?: InputMaybe<Scalars["String"]["input"]>;
|
|
11422
|
-
contractURI_starts_with_nocase?: InputMaybe<Scalars["String"]["input"]>;
|
|
11423
11487
|
exchanges_?: InputMaybe<Exchange_Filter>;
|
|
11424
11488
|
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
11425
11489
|
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
@@ -11513,7 +11577,6 @@ export declare enum Seller_OrderBy {
|
|
|
11513
11577
|
AUTHTOKENTYPE = "authTokenType",
|
|
11514
11578
|
CLERK = "clerk",
|
|
11515
11579
|
COLLECTIONS = "collections",
|
|
11516
|
-
CONTRACTURI = "contractURI",
|
|
11517
11580
|
EXCHANGES = "exchanges",
|
|
11518
11581
|
FUNDS = "funds",
|
|
11519
11582
|
ID = "id",
|
|
@@ -11558,6 +11621,8 @@ export type Subscription = {
|
|
|
11558
11621
|
bundleMetadataEntity?: Maybe<BundleMetadataEntity>;
|
|
11559
11622
|
buyer?: Maybe<Buyer>;
|
|
11560
11623
|
buyers: Array<Buyer>;
|
|
11624
|
+
collectionContract?: Maybe<CollectionContract>;
|
|
11625
|
+
collectionContracts: Array<CollectionContract>;
|
|
11561
11626
|
conditionEntities: Array<ConditionEntity>;
|
|
11562
11627
|
conditionEntity?: Maybe<ConditionEntity>;
|
|
11563
11628
|
conditionalCommitAuthorizedEventLog?: Maybe<ConditionalCommitAuthorizedEventLog>;
|
|
@@ -11748,6 +11813,20 @@ export type SubscriptionBuyersArgs = {
|
|
|
11748
11813
|
subgraphError?: _SubgraphErrorPolicy_;
|
|
11749
11814
|
where?: InputMaybe<Buyer_Filter>;
|
|
11750
11815
|
};
|
|
11816
|
+
export type SubscriptionCollectionContractArgs = {
|
|
11817
|
+
block?: InputMaybe<Block_Height>;
|
|
11818
|
+
id: Scalars["ID"]["input"];
|
|
11819
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
11820
|
+
};
|
|
11821
|
+
export type SubscriptionCollectionContractsArgs = {
|
|
11822
|
+
block?: InputMaybe<Block_Height>;
|
|
11823
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11824
|
+
orderBy?: InputMaybe<CollectionContract_OrderBy>;
|
|
11825
|
+
orderDirection?: InputMaybe<OrderDirection>;
|
|
11826
|
+
skip?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11827
|
+
subgraphError?: _SubgraphErrorPolicy_;
|
|
11828
|
+
where?: InputMaybe<CollectionContract_Filter>;
|
|
11829
|
+
};
|
|
11751
11830
|
export type SubscriptionConditionEntitiesArgs = {
|
|
11752
11831
|
block?: InputMaybe<Block_Height>;
|
|
11753
11832
|
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -12838,16 +12917,19 @@ export type GetSellerByIdQueryQuery = {
|
|
|
12838
12917
|
authTokenType: number;
|
|
12839
12918
|
voucherCloneAddress: string;
|
|
12840
12919
|
active: boolean;
|
|
12841
|
-
contractURI: string;
|
|
12842
12920
|
metadataUri: string;
|
|
12843
12921
|
collections: Array<{
|
|
12844
12922
|
__typename?: "OfferCollection";
|
|
12845
12923
|
id: string;
|
|
12846
12924
|
sellerId: string;
|
|
12847
12925
|
collectionIndex: string;
|
|
12848
|
-
collectionAddress: string;
|
|
12849
12926
|
externalIdHash: string;
|
|
12850
12927
|
externalId: string;
|
|
12928
|
+
collectionContract: {
|
|
12929
|
+
__typename?: "CollectionContract";
|
|
12930
|
+
address: string;
|
|
12931
|
+
contractUri: string;
|
|
12932
|
+
};
|
|
12851
12933
|
metadata?: {
|
|
12852
12934
|
__typename?: "NftContractMetadata";
|
|
12853
12935
|
id: string;
|
|
@@ -12972,7 +13054,6 @@ export type GetSellerByIdQueryQuery = {
|
|
|
12972
13054
|
authTokenType: number;
|
|
12973
13055
|
voucherCloneAddress: string;
|
|
12974
13056
|
active: boolean;
|
|
12975
|
-
contractURI: string;
|
|
12976
13057
|
metadataUri: string;
|
|
12977
13058
|
royaltyRecipients?: Array<{
|
|
12978
13059
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -13055,9 +13136,13 @@ export type GetSellerByIdQueryQuery = {
|
|
|
13055
13136
|
id: string;
|
|
13056
13137
|
sellerId: string;
|
|
13057
13138
|
collectionIndex: string;
|
|
13058
|
-
collectionAddress: string;
|
|
13059
13139
|
externalIdHash: string;
|
|
13060
13140
|
externalId: string;
|
|
13141
|
+
collectionContract: {
|
|
13142
|
+
__typename?: "CollectionContract";
|
|
13143
|
+
address: string;
|
|
13144
|
+
contractUri: string;
|
|
13145
|
+
};
|
|
13061
13146
|
metadata?: {
|
|
13062
13147
|
__typename?: "NftContractMetadata";
|
|
13063
13148
|
id: string;
|
|
@@ -13189,7 +13274,6 @@ export type GetSellerByIdQueryQuery = {
|
|
|
13189
13274
|
authTokenType: number;
|
|
13190
13275
|
voucherCloneAddress: string;
|
|
13191
13276
|
active: boolean;
|
|
13192
|
-
contractURI: string;
|
|
13193
13277
|
metadataUri: string;
|
|
13194
13278
|
royaltyRecipients?: Array<{
|
|
13195
13279
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -13423,7 +13507,6 @@ export type GetSellerByIdQueryQuery = {
|
|
|
13423
13507
|
authTokenType: number;
|
|
13424
13508
|
voucherCloneAddress: string;
|
|
13425
13509
|
active: boolean;
|
|
13426
|
-
contractURI: string;
|
|
13427
13510
|
metadataUri: string;
|
|
13428
13511
|
royaltyRecipients?: Array<{
|
|
13429
13512
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -13799,7 +13882,6 @@ export type GetSellerByIdQueryQuery = {
|
|
|
13799
13882
|
authTokenType: number;
|
|
13800
13883
|
voucherCloneAddress: string;
|
|
13801
13884
|
active: boolean;
|
|
13802
|
-
contractURI: string;
|
|
13803
13885
|
metadataUri: string;
|
|
13804
13886
|
royaltyRecipients?: Array<{
|
|
13805
13887
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -13943,7 +14025,6 @@ export type GetSellerByIdQueryQuery = {
|
|
|
13943
14025
|
authTokenType: number;
|
|
13944
14026
|
voucherCloneAddress: string;
|
|
13945
14027
|
active: boolean;
|
|
13946
|
-
contractURI: string;
|
|
13947
14028
|
metadataUri: string;
|
|
13948
14029
|
royaltyRecipients?: Array<{
|
|
13949
14030
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -14108,7 +14189,6 @@ export type GetSellerByIdQueryQuery = {
|
|
|
14108
14189
|
authTokenType: number;
|
|
14109
14190
|
voucherCloneAddress: string;
|
|
14110
14191
|
active: boolean;
|
|
14111
|
-
contractURI: string;
|
|
14112
14192
|
metadataUri: string;
|
|
14113
14193
|
royaltyRecipients?: Array<{
|
|
14114
14194
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -14414,16 +14494,19 @@ export type GetSellersQueryQuery = {
|
|
|
14414
14494
|
authTokenType: number;
|
|
14415
14495
|
voucherCloneAddress: string;
|
|
14416
14496
|
active: boolean;
|
|
14417
|
-
contractURI: string;
|
|
14418
14497
|
metadataUri: string;
|
|
14419
14498
|
collections: Array<{
|
|
14420
14499
|
__typename?: "OfferCollection";
|
|
14421
14500
|
id: string;
|
|
14422
14501
|
sellerId: string;
|
|
14423
14502
|
collectionIndex: string;
|
|
14424
|
-
collectionAddress: string;
|
|
14425
14503
|
externalIdHash: string;
|
|
14426
14504
|
externalId: string;
|
|
14505
|
+
collectionContract: {
|
|
14506
|
+
__typename?: "CollectionContract";
|
|
14507
|
+
address: string;
|
|
14508
|
+
contractUri: string;
|
|
14509
|
+
};
|
|
14427
14510
|
metadata?: {
|
|
14428
14511
|
__typename?: "NftContractMetadata";
|
|
14429
14512
|
id: string;
|
|
@@ -14548,7 +14631,6 @@ export type GetSellersQueryQuery = {
|
|
|
14548
14631
|
authTokenType: number;
|
|
14549
14632
|
voucherCloneAddress: string;
|
|
14550
14633
|
active: boolean;
|
|
14551
|
-
contractURI: string;
|
|
14552
14634
|
metadataUri: string;
|
|
14553
14635
|
royaltyRecipients?: Array<{
|
|
14554
14636
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -14631,9 +14713,13 @@ export type GetSellersQueryQuery = {
|
|
|
14631
14713
|
id: string;
|
|
14632
14714
|
sellerId: string;
|
|
14633
14715
|
collectionIndex: string;
|
|
14634
|
-
collectionAddress: string;
|
|
14635
14716
|
externalIdHash: string;
|
|
14636
14717
|
externalId: string;
|
|
14718
|
+
collectionContract: {
|
|
14719
|
+
__typename?: "CollectionContract";
|
|
14720
|
+
address: string;
|
|
14721
|
+
contractUri: string;
|
|
14722
|
+
};
|
|
14637
14723
|
metadata?: {
|
|
14638
14724
|
__typename?: "NftContractMetadata";
|
|
14639
14725
|
id: string;
|
|
@@ -14765,7 +14851,6 @@ export type GetSellersQueryQuery = {
|
|
|
14765
14851
|
authTokenType: number;
|
|
14766
14852
|
voucherCloneAddress: string;
|
|
14767
14853
|
active: boolean;
|
|
14768
|
-
contractURI: string;
|
|
14769
14854
|
metadataUri: string;
|
|
14770
14855
|
royaltyRecipients?: Array<{
|
|
14771
14856
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -14999,7 +15084,6 @@ export type GetSellersQueryQuery = {
|
|
|
14999
15084
|
authTokenType: number;
|
|
15000
15085
|
voucherCloneAddress: string;
|
|
15001
15086
|
active: boolean;
|
|
15002
|
-
contractURI: string;
|
|
15003
15087
|
metadataUri: string;
|
|
15004
15088
|
royaltyRecipients?: Array<{
|
|
15005
15089
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -15375,7 +15459,6 @@ export type GetSellersQueryQuery = {
|
|
|
15375
15459
|
authTokenType: number;
|
|
15376
15460
|
voucherCloneAddress: string;
|
|
15377
15461
|
active: boolean;
|
|
15378
|
-
contractURI: string;
|
|
15379
15462
|
metadataUri: string;
|
|
15380
15463
|
royaltyRecipients?: Array<{
|
|
15381
15464
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -15519,7 +15602,6 @@ export type GetSellersQueryQuery = {
|
|
|
15519
15602
|
authTokenType: number;
|
|
15520
15603
|
voucherCloneAddress: string;
|
|
15521
15604
|
active: boolean;
|
|
15522
|
-
contractURI: string;
|
|
15523
15605
|
metadataUri: string;
|
|
15524
15606
|
royaltyRecipients?: Array<{
|
|
15525
15607
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -15684,7 +15766,6 @@ export type GetSellersQueryQuery = {
|
|
|
15684
15766
|
authTokenType: number;
|
|
15685
15767
|
voucherCloneAddress: string;
|
|
15686
15768
|
active: boolean;
|
|
15687
|
-
contractURI: string;
|
|
15688
15769
|
metadataUri: string;
|
|
15689
15770
|
royaltyRecipients?: Array<{
|
|
15690
15771
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -16034,7 +16115,6 @@ export type GetBuyerByIdQueryQuery = {
|
|
|
16034
16115
|
authTokenType: number;
|
|
16035
16116
|
voucherCloneAddress: string;
|
|
16036
16117
|
active: boolean;
|
|
16037
|
-
contractURI: string;
|
|
16038
16118
|
metadataUri: string;
|
|
16039
16119
|
royaltyRecipients?: Array<{
|
|
16040
16120
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -16319,7 +16399,6 @@ export type GetBuyersQueryQuery = {
|
|
|
16319
16399
|
authTokenType: number;
|
|
16320
16400
|
voucherCloneAddress: string;
|
|
16321
16401
|
active: boolean;
|
|
16322
|
-
contractURI: string;
|
|
16323
16402
|
metadataUri: string;
|
|
16324
16403
|
royaltyRecipients?: Array<{
|
|
16325
16404
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -16631,7 +16710,6 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
16631
16710
|
authTokenType: number;
|
|
16632
16711
|
voucherCloneAddress: string;
|
|
16633
16712
|
active: boolean;
|
|
16634
|
-
contractURI: string;
|
|
16635
16713
|
metadataUri: string;
|
|
16636
16714
|
royaltyRecipients?: Array<{
|
|
16637
16715
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -16714,9 +16792,13 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
16714
16792
|
id: string;
|
|
16715
16793
|
sellerId: string;
|
|
16716
16794
|
collectionIndex: string;
|
|
16717
|
-
collectionAddress: string;
|
|
16718
16795
|
externalIdHash: string;
|
|
16719
16796
|
externalId: string;
|
|
16797
|
+
collectionContract: {
|
|
16798
|
+
__typename?: "CollectionContract";
|
|
16799
|
+
address: string;
|
|
16800
|
+
contractUri: string;
|
|
16801
|
+
};
|
|
16720
16802
|
metadata?: {
|
|
16721
16803
|
__typename?: "NftContractMetadata";
|
|
16722
16804
|
id: string;
|
|
@@ -16848,7 +16930,6 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
16848
16930
|
authTokenType: number;
|
|
16849
16931
|
voucherCloneAddress: string;
|
|
16850
16932
|
active: boolean;
|
|
16851
|
-
contractURI: string;
|
|
16852
16933
|
metadataUri: string;
|
|
16853
16934
|
royaltyRecipients?: Array<{
|
|
16854
16935
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -17082,7 +17163,6 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
17082
17163
|
authTokenType: number;
|
|
17083
17164
|
voucherCloneAddress: string;
|
|
17084
17165
|
active: boolean;
|
|
17085
|
-
contractURI: string;
|
|
17086
17166
|
metadataUri: string;
|
|
17087
17167
|
royaltyRecipients?: Array<{
|
|
17088
17168
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -17458,7 +17538,6 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
17458
17538
|
authTokenType: number;
|
|
17459
17539
|
voucherCloneAddress: string;
|
|
17460
17540
|
active: boolean;
|
|
17461
|
-
contractURI: string;
|
|
17462
17541
|
metadataUri: string;
|
|
17463
17542
|
royaltyRecipients?: Array<{
|
|
17464
17543
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -17602,7 +17681,6 @@ export type GetDisputeResolverByIdQueryQuery = {
|
|
|
17602
17681
|
authTokenType: number;
|
|
17603
17682
|
voucherCloneAddress: string;
|
|
17604
17683
|
active: boolean;
|
|
17605
|
-
contractURI: string;
|
|
17606
17684
|
metadataUri: string;
|
|
17607
17685
|
royaltyRecipients?: Array<{
|
|
17608
17686
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -17973,7 +18051,6 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
17973
18051
|
authTokenType: number;
|
|
17974
18052
|
voucherCloneAddress: string;
|
|
17975
18053
|
active: boolean;
|
|
17976
|
-
contractURI: string;
|
|
17977
18054
|
metadataUri: string;
|
|
17978
18055
|
royaltyRecipients?: Array<{
|
|
17979
18056
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -18056,9 +18133,13 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
18056
18133
|
id: string;
|
|
18057
18134
|
sellerId: string;
|
|
18058
18135
|
collectionIndex: string;
|
|
18059
|
-
collectionAddress: string;
|
|
18060
18136
|
externalIdHash: string;
|
|
18061
18137
|
externalId: string;
|
|
18138
|
+
collectionContract: {
|
|
18139
|
+
__typename?: "CollectionContract";
|
|
18140
|
+
address: string;
|
|
18141
|
+
contractUri: string;
|
|
18142
|
+
};
|
|
18062
18143
|
metadata?: {
|
|
18063
18144
|
__typename?: "NftContractMetadata";
|
|
18064
18145
|
id: string;
|
|
@@ -18190,7 +18271,6 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
18190
18271
|
authTokenType: number;
|
|
18191
18272
|
voucherCloneAddress: string;
|
|
18192
18273
|
active: boolean;
|
|
18193
|
-
contractURI: string;
|
|
18194
18274
|
metadataUri: string;
|
|
18195
18275
|
royaltyRecipients?: Array<{
|
|
18196
18276
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -18424,7 +18504,6 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
18424
18504
|
authTokenType: number;
|
|
18425
18505
|
voucherCloneAddress: string;
|
|
18426
18506
|
active: boolean;
|
|
18427
|
-
contractURI: string;
|
|
18428
18507
|
metadataUri: string;
|
|
18429
18508
|
royaltyRecipients?: Array<{
|
|
18430
18509
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -18800,7 +18879,6 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
18800
18879
|
authTokenType: number;
|
|
18801
18880
|
voucherCloneAddress: string;
|
|
18802
18881
|
active: boolean;
|
|
18803
|
-
contractURI: string;
|
|
18804
18882
|
metadataUri: string;
|
|
18805
18883
|
royaltyRecipients?: Array<{
|
|
18806
18884
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -18944,7 +19022,6 @@ export type GetDisputeResolversQueryQuery = {
|
|
|
18944
19022
|
authTokenType: number;
|
|
18945
19023
|
voucherCloneAddress: string;
|
|
18946
19024
|
active: boolean;
|
|
18947
|
-
contractURI: string;
|
|
18948
19025
|
metadataUri: string;
|
|
18949
19026
|
royaltyRecipients?: Array<{
|
|
18950
19027
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -19230,7 +19307,6 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
19230
19307
|
id: string;
|
|
19231
19308
|
sellerId: string;
|
|
19232
19309
|
collectionIndex: string;
|
|
19233
|
-
collectionAddress: string;
|
|
19234
19310
|
externalIdHash: string;
|
|
19235
19311
|
externalId: string;
|
|
19236
19312
|
seller: {
|
|
@@ -19244,7 +19320,6 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
19244
19320
|
authTokenType: number;
|
|
19245
19321
|
voucherCloneAddress: string;
|
|
19246
19322
|
active: boolean;
|
|
19247
|
-
contractURI: string;
|
|
19248
19323
|
metadataUri: string;
|
|
19249
19324
|
royaltyRecipients?: Array<{
|
|
19250
19325
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -19413,7 +19488,6 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
19413
19488
|
authTokenType: number;
|
|
19414
19489
|
voucherCloneAddress: string;
|
|
19415
19490
|
active: boolean;
|
|
19416
|
-
contractURI: string;
|
|
19417
19491
|
metadataUri: string;
|
|
19418
19492
|
royaltyRecipients?: Array<{
|
|
19419
19493
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -19496,9 +19570,13 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
19496
19570
|
id: string;
|
|
19497
19571
|
sellerId: string;
|
|
19498
19572
|
collectionIndex: string;
|
|
19499
|
-
collectionAddress: string;
|
|
19500
19573
|
externalIdHash: string;
|
|
19501
19574
|
externalId: string;
|
|
19575
|
+
collectionContract: {
|
|
19576
|
+
__typename?: "CollectionContract";
|
|
19577
|
+
address: string;
|
|
19578
|
+
contractUri: string;
|
|
19579
|
+
};
|
|
19502
19580
|
metadata?: {
|
|
19503
19581
|
__typename?: "NftContractMetadata";
|
|
19504
19582
|
id: string;
|
|
@@ -19630,7 +19708,6 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
19630
19708
|
authTokenType: number;
|
|
19631
19709
|
voucherCloneAddress: string;
|
|
19632
19710
|
active: boolean;
|
|
19633
|
-
contractURI: string;
|
|
19634
19711
|
metadataUri: string;
|
|
19635
19712
|
royaltyRecipients?: Array<{
|
|
19636
19713
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -19864,7 +19941,6 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
19864
19941
|
authTokenType: number;
|
|
19865
19942
|
voucherCloneAddress: string;
|
|
19866
19943
|
active: boolean;
|
|
19867
|
-
contractURI: string;
|
|
19868
19944
|
metadataUri: string;
|
|
19869
19945
|
royaltyRecipients?: Array<{
|
|
19870
19946
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -20240,7 +20316,6 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
20240
20316
|
authTokenType: number;
|
|
20241
20317
|
voucherCloneAddress: string;
|
|
20242
20318
|
active: boolean;
|
|
20243
|
-
contractURI: string;
|
|
20244
20319
|
metadataUri: string;
|
|
20245
20320
|
royaltyRecipients?: Array<{
|
|
20246
20321
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -20384,7 +20459,6 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
20384
20459
|
authTokenType: number;
|
|
20385
20460
|
voucherCloneAddress: string;
|
|
20386
20461
|
active: boolean;
|
|
20387
|
-
contractURI: string;
|
|
20388
20462
|
metadataUri: string;
|
|
20389
20463
|
royaltyRecipients?: Array<{
|
|
20390
20464
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -20503,6 +20577,11 @@ export type GetOfferCollectionsQueryQuery = {
|
|
|
20503
20577
|
owner: string;
|
|
20504
20578
|
} | null;
|
|
20505
20579
|
}>;
|
|
20580
|
+
collectionContract: {
|
|
20581
|
+
__typename?: "CollectionContract";
|
|
20582
|
+
address: string;
|
|
20583
|
+
contractUri: string;
|
|
20584
|
+
};
|
|
20506
20585
|
metadata?: {
|
|
20507
20586
|
__typename?: "NftContractMetadata";
|
|
20508
20587
|
id: string;
|
|
@@ -20534,7 +20613,6 @@ export type OfferCollectionFieldsFragment = {
|
|
|
20534
20613
|
id: string;
|
|
20535
20614
|
sellerId: string;
|
|
20536
20615
|
collectionIndex: string;
|
|
20537
|
-
collectionAddress: string;
|
|
20538
20616
|
externalIdHash: string;
|
|
20539
20617
|
externalId: string;
|
|
20540
20618
|
seller: {
|
|
@@ -20548,7 +20626,6 @@ export type OfferCollectionFieldsFragment = {
|
|
|
20548
20626
|
authTokenType: number;
|
|
20549
20627
|
voucherCloneAddress: string;
|
|
20550
20628
|
active: boolean;
|
|
20551
|
-
contractURI: string;
|
|
20552
20629
|
metadataUri: string;
|
|
20553
20630
|
royaltyRecipients?: Array<{
|
|
20554
20631
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -20717,7 +20794,6 @@ export type OfferCollectionFieldsFragment = {
|
|
|
20717
20794
|
authTokenType: number;
|
|
20718
20795
|
voucherCloneAddress: string;
|
|
20719
20796
|
active: boolean;
|
|
20720
|
-
contractURI: string;
|
|
20721
20797
|
metadataUri: string;
|
|
20722
20798
|
royaltyRecipients?: Array<{
|
|
20723
20799
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -20800,9 +20876,13 @@ export type OfferCollectionFieldsFragment = {
|
|
|
20800
20876
|
id: string;
|
|
20801
20877
|
sellerId: string;
|
|
20802
20878
|
collectionIndex: string;
|
|
20803
|
-
collectionAddress: string;
|
|
20804
20879
|
externalIdHash: string;
|
|
20805
20880
|
externalId: string;
|
|
20881
|
+
collectionContract: {
|
|
20882
|
+
__typename?: "CollectionContract";
|
|
20883
|
+
address: string;
|
|
20884
|
+
contractUri: string;
|
|
20885
|
+
};
|
|
20806
20886
|
metadata?: {
|
|
20807
20887
|
__typename?: "NftContractMetadata";
|
|
20808
20888
|
id: string;
|
|
@@ -20934,7 +21014,6 @@ export type OfferCollectionFieldsFragment = {
|
|
|
20934
21014
|
authTokenType: number;
|
|
20935
21015
|
voucherCloneAddress: string;
|
|
20936
21016
|
active: boolean;
|
|
20937
|
-
contractURI: string;
|
|
20938
21017
|
metadataUri: string;
|
|
20939
21018
|
royaltyRecipients?: Array<{
|
|
20940
21019
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -21168,7 +21247,6 @@ export type OfferCollectionFieldsFragment = {
|
|
|
21168
21247
|
authTokenType: number;
|
|
21169
21248
|
voucherCloneAddress: string;
|
|
21170
21249
|
active: boolean;
|
|
21171
|
-
contractURI: string;
|
|
21172
21250
|
metadataUri: string;
|
|
21173
21251
|
royaltyRecipients?: Array<{
|
|
21174
21252
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -21544,7 +21622,6 @@ export type OfferCollectionFieldsFragment = {
|
|
|
21544
21622
|
authTokenType: number;
|
|
21545
21623
|
voucherCloneAddress: string;
|
|
21546
21624
|
active: boolean;
|
|
21547
|
-
contractURI: string;
|
|
21548
21625
|
metadataUri: string;
|
|
21549
21626
|
royaltyRecipients?: Array<{
|
|
21550
21627
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -21688,7 +21765,6 @@ export type OfferCollectionFieldsFragment = {
|
|
|
21688
21765
|
authTokenType: number;
|
|
21689
21766
|
voucherCloneAddress: string;
|
|
21690
21767
|
active: boolean;
|
|
21691
|
-
contractURI: string;
|
|
21692
21768
|
metadataUri: string;
|
|
21693
21769
|
royaltyRecipients?: Array<{
|
|
21694
21770
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -21807,6 +21883,11 @@ export type OfferCollectionFieldsFragment = {
|
|
|
21807
21883
|
owner: string;
|
|
21808
21884
|
} | null;
|
|
21809
21885
|
}>;
|
|
21886
|
+
collectionContract: {
|
|
21887
|
+
__typename?: "CollectionContract";
|
|
21888
|
+
address: string;
|
|
21889
|
+
contractUri: string;
|
|
21890
|
+
};
|
|
21810
21891
|
metadata?: {
|
|
21811
21892
|
__typename?: "NftContractMetadata";
|
|
21812
21893
|
id: string;
|
|
@@ -21823,9 +21904,13 @@ export type BaseOfferCollectionFieldsFragment = {
|
|
|
21823
21904
|
id: string;
|
|
21824
21905
|
sellerId: string;
|
|
21825
21906
|
collectionIndex: string;
|
|
21826
|
-
collectionAddress: string;
|
|
21827
21907
|
externalIdHash: string;
|
|
21828
21908
|
externalId: string;
|
|
21909
|
+
collectionContract: {
|
|
21910
|
+
__typename?: "CollectionContract";
|
|
21911
|
+
address: string;
|
|
21912
|
+
contractUri: string;
|
|
21913
|
+
};
|
|
21829
21914
|
metadata?: {
|
|
21830
21915
|
__typename?: "NftContractMetadata";
|
|
21831
21916
|
id: string;
|
|
@@ -21848,16 +21933,19 @@ export type SellerFieldsFragment = {
|
|
|
21848
21933
|
authTokenType: number;
|
|
21849
21934
|
voucherCloneAddress: string;
|
|
21850
21935
|
active: boolean;
|
|
21851
|
-
contractURI: string;
|
|
21852
21936
|
metadataUri: string;
|
|
21853
21937
|
collections: Array<{
|
|
21854
21938
|
__typename?: "OfferCollection";
|
|
21855
21939
|
id: string;
|
|
21856
21940
|
sellerId: string;
|
|
21857
21941
|
collectionIndex: string;
|
|
21858
|
-
collectionAddress: string;
|
|
21859
21942
|
externalIdHash: string;
|
|
21860
21943
|
externalId: string;
|
|
21944
|
+
collectionContract: {
|
|
21945
|
+
__typename?: "CollectionContract";
|
|
21946
|
+
address: string;
|
|
21947
|
+
contractUri: string;
|
|
21948
|
+
};
|
|
21861
21949
|
metadata?: {
|
|
21862
21950
|
__typename?: "NftContractMetadata";
|
|
21863
21951
|
id: string;
|
|
@@ -21982,7 +22070,6 @@ export type SellerFieldsFragment = {
|
|
|
21982
22070
|
authTokenType: number;
|
|
21983
22071
|
voucherCloneAddress: string;
|
|
21984
22072
|
active: boolean;
|
|
21985
|
-
contractURI: string;
|
|
21986
22073
|
metadataUri: string;
|
|
21987
22074
|
royaltyRecipients?: Array<{
|
|
21988
22075
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -22065,9 +22152,13 @@ export type SellerFieldsFragment = {
|
|
|
22065
22152
|
id: string;
|
|
22066
22153
|
sellerId: string;
|
|
22067
22154
|
collectionIndex: string;
|
|
22068
|
-
collectionAddress: string;
|
|
22069
22155
|
externalIdHash: string;
|
|
22070
22156
|
externalId: string;
|
|
22157
|
+
collectionContract: {
|
|
22158
|
+
__typename?: "CollectionContract";
|
|
22159
|
+
address: string;
|
|
22160
|
+
contractUri: string;
|
|
22161
|
+
};
|
|
22071
22162
|
metadata?: {
|
|
22072
22163
|
__typename?: "NftContractMetadata";
|
|
22073
22164
|
id: string;
|
|
@@ -22199,7 +22290,6 @@ export type SellerFieldsFragment = {
|
|
|
22199
22290
|
authTokenType: number;
|
|
22200
22291
|
voucherCloneAddress: string;
|
|
22201
22292
|
active: boolean;
|
|
22202
|
-
contractURI: string;
|
|
22203
22293
|
metadataUri: string;
|
|
22204
22294
|
royaltyRecipients?: Array<{
|
|
22205
22295
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -22433,7 +22523,6 @@ export type SellerFieldsFragment = {
|
|
|
22433
22523
|
authTokenType: number;
|
|
22434
22524
|
voucherCloneAddress: string;
|
|
22435
22525
|
active: boolean;
|
|
22436
|
-
contractURI: string;
|
|
22437
22526
|
metadataUri: string;
|
|
22438
22527
|
royaltyRecipients?: Array<{
|
|
22439
22528
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -22809,7 +22898,6 @@ export type SellerFieldsFragment = {
|
|
|
22809
22898
|
authTokenType: number;
|
|
22810
22899
|
voucherCloneAddress: string;
|
|
22811
22900
|
active: boolean;
|
|
22812
|
-
contractURI: string;
|
|
22813
22901
|
metadataUri: string;
|
|
22814
22902
|
royaltyRecipients?: Array<{
|
|
22815
22903
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -22953,7 +23041,6 @@ export type SellerFieldsFragment = {
|
|
|
22953
23041
|
authTokenType: number;
|
|
22954
23042
|
voucherCloneAddress: string;
|
|
22955
23043
|
active: boolean;
|
|
22956
|
-
contractURI: string;
|
|
22957
23044
|
metadataUri: string;
|
|
22958
23045
|
royaltyRecipients?: Array<{
|
|
22959
23046
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -23118,7 +23205,6 @@ export type SellerFieldsFragment = {
|
|
|
23118
23205
|
authTokenType: number;
|
|
23119
23206
|
voucherCloneAddress: string;
|
|
23120
23207
|
active: boolean;
|
|
23121
|
-
contractURI: string;
|
|
23122
23208
|
metadataUri: string;
|
|
23123
23209
|
royaltyRecipients?: Array<{
|
|
23124
23210
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -23435,7 +23521,6 @@ export type BaseSellerFieldsFragment = {
|
|
|
23435
23521
|
authTokenType: number;
|
|
23436
23522
|
voucherCloneAddress: string;
|
|
23437
23523
|
active: boolean;
|
|
23438
|
-
contractURI: string;
|
|
23439
23524
|
metadataUri: string;
|
|
23440
23525
|
royaltyRecipients?: Array<{
|
|
23441
23526
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -23592,7 +23677,6 @@ export type BuyerFieldsFragment = {
|
|
|
23592
23677
|
authTokenType: number;
|
|
23593
23678
|
voucherCloneAddress: string;
|
|
23594
23679
|
active: boolean;
|
|
23595
|
-
contractURI: string;
|
|
23596
23680
|
metadataUri: string;
|
|
23597
23681
|
royaltyRecipients?: Array<{
|
|
23598
23682
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -23892,7 +23976,6 @@ export type DisputeResolverFieldsFragment = {
|
|
|
23892
23976
|
authTokenType: number;
|
|
23893
23977
|
voucherCloneAddress: string;
|
|
23894
23978
|
active: boolean;
|
|
23895
|
-
contractURI: string;
|
|
23896
23979
|
metadataUri: string;
|
|
23897
23980
|
royaltyRecipients?: Array<{
|
|
23898
23981
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -23975,9 +24058,13 @@ export type DisputeResolverFieldsFragment = {
|
|
|
23975
24058
|
id: string;
|
|
23976
24059
|
sellerId: string;
|
|
23977
24060
|
collectionIndex: string;
|
|
23978
|
-
collectionAddress: string;
|
|
23979
24061
|
externalIdHash: string;
|
|
23980
24062
|
externalId: string;
|
|
24063
|
+
collectionContract: {
|
|
24064
|
+
__typename?: "CollectionContract";
|
|
24065
|
+
address: string;
|
|
24066
|
+
contractUri: string;
|
|
24067
|
+
};
|
|
23981
24068
|
metadata?: {
|
|
23982
24069
|
__typename?: "NftContractMetadata";
|
|
23983
24070
|
id: string;
|
|
@@ -24109,7 +24196,6 @@ export type DisputeResolverFieldsFragment = {
|
|
|
24109
24196
|
authTokenType: number;
|
|
24110
24197
|
voucherCloneAddress: string;
|
|
24111
24198
|
active: boolean;
|
|
24112
|
-
contractURI: string;
|
|
24113
24199
|
metadataUri: string;
|
|
24114
24200
|
royaltyRecipients?: Array<{
|
|
24115
24201
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -24343,7 +24429,6 @@ export type DisputeResolverFieldsFragment = {
|
|
|
24343
24429
|
authTokenType: number;
|
|
24344
24430
|
voucherCloneAddress: string;
|
|
24345
24431
|
active: boolean;
|
|
24346
|
-
contractURI: string;
|
|
24347
24432
|
metadataUri: string;
|
|
24348
24433
|
royaltyRecipients?: Array<{
|
|
24349
24434
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -24719,7 +24804,6 @@ export type DisputeResolverFieldsFragment = {
|
|
|
24719
24804
|
authTokenType: number;
|
|
24720
24805
|
voucherCloneAddress: string;
|
|
24721
24806
|
active: boolean;
|
|
24722
|
-
contractURI: string;
|
|
24723
24807
|
metadataUri: string;
|
|
24724
24808
|
royaltyRecipients?: Array<{
|
|
24725
24809
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -24863,7 +24947,6 @@ export type DisputeResolverFieldsFragment = {
|
|
|
24863
24947
|
authTokenType: number;
|
|
24864
24948
|
voucherCloneAddress: string;
|
|
24865
24949
|
active: boolean;
|
|
24866
|
-
contractURI: string;
|
|
24867
24950
|
metadataUri: string;
|
|
24868
24951
|
royaltyRecipients?: Array<{
|
|
24869
24952
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -25245,7 +25328,6 @@ export type GetDisputeByIdQueryQuery = {
|
|
|
25245
25328
|
authTokenType: number;
|
|
25246
25329
|
voucherCloneAddress: string;
|
|
25247
25330
|
active: boolean;
|
|
25248
|
-
contractURI: string;
|
|
25249
25331
|
metadataUri: string;
|
|
25250
25332
|
royaltyRecipients?: Array<{
|
|
25251
25333
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -25335,7 +25417,6 @@ export type GetDisputeByIdQueryQuery = {
|
|
|
25335
25417
|
authTokenType: number;
|
|
25336
25418
|
voucherCloneAddress: string;
|
|
25337
25419
|
active: boolean;
|
|
25338
|
-
contractURI: string;
|
|
25339
25420
|
metadataUri: string;
|
|
25340
25421
|
royaltyRecipients?: Array<{
|
|
25341
25422
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -25490,7 +25571,6 @@ export type GetDisputesQueryQuery = {
|
|
|
25490
25571
|
authTokenType: number;
|
|
25491
25572
|
voucherCloneAddress: string;
|
|
25492
25573
|
active: boolean;
|
|
25493
|
-
contractURI: string;
|
|
25494
25574
|
metadataUri: string;
|
|
25495
25575
|
royaltyRecipients?: Array<{
|
|
25496
25576
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -25580,7 +25660,6 @@ export type GetDisputesQueryQuery = {
|
|
|
25580
25660
|
authTokenType: number;
|
|
25581
25661
|
voucherCloneAddress: string;
|
|
25582
25662
|
active: boolean;
|
|
25583
|
-
contractURI: string;
|
|
25584
25663
|
metadataUri: string;
|
|
25585
25664
|
royaltyRecipients?: Array<{
|
|
25586
25665
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -25726,7 +25805,6 @@ export type DisputeFieldsFragment = {
|
|
|
25726
25805
|
authTokenType: number;
|
|
25727
25806
|
voucherCloneAddress: string;
|
|
25728
25807
|
active: boolean;
|
|
25729
|
-
contractURI: string;
|
|
25730
25808
|
metadataUri: string;
|
|
25731
25809
|
royaltyRecipients?: Array<{
|
|
25732
25810
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -25816,7 +25894,6 @@ export type DisputeFieldsFragment = {
|
|
|
25816
25894
|
authTokenType: number;
|
|
25817
25895
|
voucherCloneAddress: string;
|
|
25818
25896
|
active: boolean;
|
|
25819
|
-
contractURI: string;
|
|
25820
25897
|
metadataUri: string;
|
|
25821
25898
|
royaltyRecipients?: Array<{
|
|
25822
25899
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -26036,7 +26113,6 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
26036
26113
|
authTokenType: number;
|
|
26037
26114
|
voucherCloneAddress: string;
|
|
26038
26115
|
active: boolean;
|
|
26039
|
-
contractURI: string;
|
|
26040
26116
|
metadataUri: string;
|
|
26041
26117
|
royaltyRecipients?: Array<{
|
|
26042
26118
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -26119,9 +26195,13 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
26119
26195
|
id: string;
|
|
26120
26196
|
sellerId: string;
|
|
26121
26197
|
collectionIndex: string;
|
|
26122
|
-
collectionAddress: string;
|
|
26123
26198
|
externalIdHash: string;
|
|
26124
26199
|
externalId: string;
|
|
26200
|
+
collectionContract: {
|
|
26201
|
+
__typename?: "CollectionContract";
|
|
26202
|
+
address: string;
|
|
26203
|
+
contractUri: string;
|
|
26204
|
+
};
|
|
26125
26205
|
metadata?: {
|
|
26126
26206
|
__typename?: "NftContractMetadata";
|
|
26127
26207
|
id: string;
|
|
@@ -26253,7 +26333,6 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
26253
26333
|
authTokenType: number;
|
|
26254
26334
|
voucherCloneAddress: string;
|
|
26255
26335
|
active: boolean;
|
|
26256
|
-
contractURI: string;
|
|
26257
26336
|
metadataUri: string;
|
|
26258
26337
|
royaltyRecipients?: Array<{
|
|
26259
26338
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -26487,7 +26566,6 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
26487
26566
|
authTokenType: number;
|
|
26488
26567
|
voucherCloneAddress: string;
|
|
26489
26568
|
active: boolean;
|
|
26490
|
-
contractURI: string;
|
|
26491
26569
|
metadataUri: string;
|
|
26492
26570
|
royaltyRecipients?: Array<{
|
|
26493
26571
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -26863,7 +26941,6 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
26863
26941
|
authTokenType: number;
|
|
26864
26942
|
voucherCloneAddress: string;
|
|
26865
26943
|
active: boolean;
|
|
26866
|
-
contractURI: string;
|
|
26867
26944
|
metadataUri: string;
|
|
26868
26945
|
royaltyRecipients?: Array<{
|
|
26869
26946
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -27007,7 +27084,6 @@ export type GetExchangeTokenByIdQueryQuery = {
|
|
|
27007
27084
|
authTokenType: number;
|
|
27008
27085
|
voucherCloneAddress: string;
|
|
27009
27086
|
active: boolean;
|
|
27010
|
-
contractURI: string;
|
|
27011
27087
|
metadataUri: string;
|
|
27012
27088
|
royaltyRecipients?: Array<{
|
|
27013
27089
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -27253,7 +27329,6 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
27253
27329
|
authTokenType: number;
|
|
27254
27330
|
voucherCloneAddress: string;
|
|
27255
27331
|
active: boolean;
|
|
27256
|
-
contractURI: string;
|
|
27257
27332
|
metadataUri: string;
|
|
27258
27333
|
royaltyRecipients?: Array<{
|
|
27259
27334
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -27336,9 +27411,13 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
27336
27411
|
id: string;
|
|
27337
27412
|
sellerId: string;
|
|
27338
27413
|
collectionIndex: string;
|
|
27339
|
-
collectionAddress: string;
|
|
27340
27414
|
externalIdHash: string;
|
|
27341
27415
|
externalId: string;
|
|
27416
|
+
collectionContract: {
|
|
27417
|
+
__typename?: "CollectionContract";
|
|
27418
|
+
address: string;
|
|
27419
|
+
contractUri: string;
|
|
27420
|
+
};
|
|
27342
27421
|
metadata?: {
|
|
27343
27422
|
__typename?: "NftContractMetadata";
|
|
27344
27423
|
id: string;
|
|
@@ -27470,7 +27549,6 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
27470
27549
|
authTokenType: number;
|
|
27471
27550
|
voucherCloneAddress: string;
|
|
27472
27551
|
active: boolean;
|
|
27473
|
-
contractURI: string;
|
|
27474
27552
|
metadataUri: string;
|
|
27475
27553
|
royaltyRecipients?: Array<{
|
|
27476
27554
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -27704,7 +27782,6 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
27704
27782
|
authTokenType: number;
|
|
27705
27783
|
voucherCloneAddress: string;
|
|
27706
27784
|
active: boolean;
|
|
27707
|
-
contractURI: string;
|
|
27708
27785
|
metadataUri: string;
|
|
27709
27786
|
royaltyRecipients?: Array<{
|
|
27710
27787
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -28080,7 +28157,6 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
28080
28157
|
authTokenType: number;
|
|
28081
28158
|
voucherCloneAddress: string;
|
|
28082
28159
|
active: boolean;
|
|
28083
|
-
contractURI: string;
|
|
28084
28160
|
metadataUri: string;
|
|
28085
28161
|
royaltyRecipients?: Array<{
|
|
28086
28162
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -28224,7 +28300,6 @@ export type GetExchangeTokensQueryQuery = {
|
|
|
28224
28300
|
authTokenType: number;
|
|
28225
28301
|
voucherCloneAddress: string;
|
|
28226
28302
|
active: boolean;
|
|
28227
|
-
contractURI: string;
|
|
28228
28303
|
metadataUri: string;
|
|
28229
28304
|
royaltyRecipients?: Array<{
|
|
28230
28305
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -28449,7 +28524,6 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
28449
28524
|
authTokenType: number;
|
|
28450
28525
|
voucherCloneAddress: string;
|
|
28451
28526
|
active: boolean;
|
|
28452
|
-
contractURI: string;
|
|
28453
28527
|
metadataUri: string;
|
|
28454
28528
|
royaltyRecipients?: Array<{
|
|
28455
28529
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -28532,9 +28606,13 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
28532
28606
|
id: string;
|
|
28533
28607
|
sellerId: string;
|
|
28534
28608
|
collectionIndex: string;
|
|
28535
|
-
collectionAddress: string;
|
|
28536
28609
|
externalIdHash: string;
|
|
28537
28610
|
externalId: string;
|
|
28611
|
+
collectionContract: {
|
|
28612
|
+
__typename?: "CollectionContract";
|
|
28613
|
+
address: string;
|
|
28614
|
+
contractUri: string;
|
|
28615
|
+
};
|
|
28538
28616
|
metadata?: {
|
|
28539
28617
|
__typename?: "NftContractMetadata";
|
|
28540
28618
|
id: string;
|
|
@@ -28666,7 +28744,6 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
28666
28744
|
authTokenType: number;
|
|
28667
28745
|
voucherCloneAddress: string;
|
|
28668
28746
|
active: boolean;
|
|
28669
|
-
contractURI: string;
|
|
28670
28747
|
metadataUri: string;
|
|
28671
28748
|
royaltyRecipients?: Array<{
|
|
28672
28749
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -28900,7 +28977,6 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
28900
28977
|
authTokenType: number;
|
|
28901
28978
|
voucherCloneAddress: string;
|
|
28902
28979
|
active: boolean;
|
|
28903
|
-
contractURI: string;
|
|
28904
28980
|
metadataUri: string;
|
|
28905
28981
|
royaltyRecipients?: Array<{
|
|
28906
28982
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -29276,7 +29352,6 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
29276
29352
|
authTokenType: number;
|
|
29277
29353
|
voucherCloneAddress: string;
|
|
29278
29354
|
active: boolean;
|
|
29279
|
-
contractURI: string;
|
|
29280
29355
|
metadataUri: string;
|
|
29281
29356
|
royaltyRecipients?: Array<{
|
|
29282
29357
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -29420,7 +29495,6 @@ export type ExchangeTokenFieldsFragment = {
|
|
|
29420
29495
|
authTokenType: number;
|
|
29421
29496
|
voucherCloneAddress: string;
|
|
29422
29497
|
active: boolean;
|
|
29423
|
-
contractURI: string;
|
|
29424
29498
|
metadataUri: string;
|
|
29425
29499
|
royaltyRecipients?: Array<{
|
|
29426
29500
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -29891,7 +29965,6 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
29891
29965
|
authTokenType: number;
|
|
29892
29966
|
voucherCloneAddress: string;
|
|
29893
29967
|
active: boolean;
|
|
29894
|
-
contractURI: string;
|
|
29895
29968
|
metadataUri: string;
|
|
29896
29969
|
royaltyRecipients?: Array<{
|
|
29897
29970
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -29974,9 +30047,13 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
29974
30047
|
id: string;
|
|
29975
30048
|
sellerId: string;
|
|
29976
30049
|
collectionIndex: string;
|
|
29977
|
-
collectionAddress: string;
|
|
29978
30050
|
externalIdHash: string;
|
|
29979
30051
|
externalId: string;
|
|
30052
|
+
collectionContract: {
|
|
30053
|
+
__typename?: "CollectionContract";
|
|
30054
|
+
address: string;
|
|
30055
|
+
contractUri: string;
|
|
30056
|
+
};
|
|
29980
30057
|
metadata?: {
|
|
29981
30058
|
__typename?: "NftContractMetadata";
|
|
29982
30059
|
id: string;
|
|
@@ -30108,7 +30185,6 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
30108
30185
|
authTokenType: number;
|
|
30109
30186
|
voucherCloneAddress: string;
|
|
30110
30187
|
active: boolean;
|
|
30111
|
-
contractURI: string;
|
|
30112
30188
|
metadataUri: string;
|
|
30113
30189
|
royaltyRecipients?: Array<{
|
|
30114
30190
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -30342,7 +30418,6 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
30342
30418
|
authTokenType: number;
|
|
30343
30419
|
voucherCloneAddress: string;
|
|
30344
30420
|
active: boolean;
|
|
30345
|
-
contractURI: string;
|
|
30346
30421
|
metadataUri: string;
|
|
30347
30422
|
royaltyRecipients?: Array<{
|
|
30348
30423
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -30718,7 +30793,6 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
30718
30793
|
authTokenType: number;
|
|
30719
30794
|
voucherCloneAddress: string;
|
|
30720
30795
|
active: boolean;
|
|
30721
|
-
contractURI: string;
|
|
30722
30796
|
metadataUri: string;
|
|
30723
30797
|
royaltyRecipients?: Array<{
|
|
30724
30798
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -30862,7 +30936,6 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
30862
30936
|
authTokenType: number;
|
|
30863
30937
|
voucherCloneAddress: string;
|
|
30864
30938
|
active: boolean;
|
|
30865
|
-
contractURI: string;
|
|
30866
30939
|
metadataUri: string;
|
|
30867
30940
|
royaltyRecipients?: Array<{
|
|
30868
30941
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -31013,7 +31086,6 @@ export type GetExchangeByIdQueryQuery = {
|
|
|
31013
31086
|
authTokenType: number;
|
|
31014
31087
|
voucherCloneAddress: string;
|
|
31015
31088
|
active: boolean;
|
|
31016
|
-
contractURI: string;
|
|
31017
31089
|
metadataUri: string;
|
|
31018
31090
|
royaltyRecipients?: Array<{
|
|
31019
31091
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -31207,7 +31279,6 @@ export type GetExchangesQueryQuery = {
|
|
|
31207
31279
|
authTokenType: number;
|
|
31208
31280
|
voucherCloneAddress: string;
|
|
31209
31281
|
active: boolean;
|
|
31210
|
-
contractURI: string;
|
|
31211
31282
|
metadataUri: string;
|
|
31212
31283
|
royaltyRecipients?: Array<{
|
|
31213
31284
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -31290,9 +31361,13 @@ export type GetExchangesQueryQuery = {
|
|
|
31290
31361
|
id: string;
|
|
31291
31362
|
sellerId: string;
|
|
31292
31363
|
collectionIndex: string;
|
|
31293
|
-
collectionAddress: string;
|
|
31294
31364
|
externalIdHash: string;
|
|
31295
31365
|
externalId: string;
|
|
31366
|
+
collectionContract: {
|
|
31367
|
+
__typename?: "CollectionContract";
|
|
31368
|
+
address: string;
|
|
31369
|
+
contractUri: string;
|
|
31370
|
+
};
|
|
31296
31371
|
metadata?: {
|
|
31297
31372
|
__typename?: "NftContractMetadata";
|
|
31298
31373
|
id: string;
|
|
@@ -31424,7 +31499,6 @@ export type GetExchangesQueryQuery = {
|
|
|
31424
31499
|
authTokenType: number;
|
|
31425
31500
|
voucherCloneAddress: string;
|
|
31426
31501
|
active: boolean;
|
|
31427
|
-
contractURI: string;
|
|
31428
31502
|
metadataUri: string;
|
|
31429
31503
|
royaltyRecipients?: Array<{
|
|
31430
31504
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -31658,7 +31732,6 @@ export type GetExchangesQueryQuery = {
|
|
|
31658
31732
|
authTokenType: number;
|
|
31659
31733
|
voucherCloneAddress: string;
|
|
31660
31734
|
active: boolean;
|
|
31661
|
-
contractURI: string;
|
|
31662
31735
|
metadataUri: string;
|
|
31663
31736
|
royaltyRecipients?: Array<{
|
|
31664
31737
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -32034,7 +32107,6 @@ export type GetExchangesQueryQuery = {
|
|
|
32034
32107
|
authTokenType: number;
|
|
32035
32108
|
voucherCloneAddress: string;
|
|
32036
32109
|
active: boolean;
|
|
32037
|
-
contractURI: string;
|
|
32038
32110
|
metadataUri: string;
|
|
32039
32111
|
royaltyRecipients?: Array<{
|
|
32040
32112
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -32178,7 +32250,6 @@ export type GetExchangesQueryQuery = {
|
|
|
32178
32250
|
authTokenType: number;
|
|
32179
32251
|
voucherCloneAddress: string;
|
|
32180
32252
|
active: boolean;
|
|
32181
|
-
contractURI: string;
|
|
32182
32253
|
metadataUri: string;
|
|
32183
32254
|
royaltyRecipients?: Array<{
|
|
32184
32255
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -32329,7 +32400,6 @@ export type GetExchangesQueryQuery = {
|
|
|
32329
32400
|
authTokenType: number;
|
|
32330
32401
|
voucherCloneAddress: string;
|
|
32331
32402
|
active: boolean;
|
|
32332
|
-
contractURI: string;
|
|
32333
32403
|
metadataUri: string;
|
|
32334
32404
|
royaltyRecipients?: Array<{
|
|
32335
32405
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -32514,7 +32584,6 @@ export type ExchangeFieldsFragment = {
|
|
|
32514
32584
|
authTokenType: number;
|
|
32515
32585
|
voucherCloneAddress: string;
|
|
32516
32586
|
active: boolean;
|
|
32517
|
-
contractURI: string;
|
|
32518
32587
|
metadataUri: string;
|
|
32519
32588
|
royaltyRecipients?: Array<{
|
|
32520
32589
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -32597,9 +32666,13 @@ export type ExchangeFieldsFragment = {
|
|
|
32597
32666
|
id: string;
|
|
32598
32667
|
sellerId: string;
|
|
32599
32668
|
collectionIndex: string;
|
|
32600
|
-
collectionAddress: string;
|
|
32601
32669
|
externalIdHash: string;
|
|
32602
32670
|
externalId: string;
|
|
32671
|
+
collectionContract: {
|
|
32672
|
+
__typename?: "CollectionContract";
|
|
32673
|
+
address: string;
|
|
32674
|
+
contractUri: string;
|
|
32675
|
+
};
|
|
32603
32676
|
metadata?: {
|
|
32604
32677
|
__typename?: "NftContractMetadata";
|
|
32605
32678
|
id: string;
|
|
@@ -32731,7 +32804,6 @@ export type ExchangeFieldsFragment = {
|
|
|
32731
32804
|
authTokenType: number;
|
|
32732
32805
|
voucherCloneAddress: string;
|
|
32733
32806
|
active: boolean;
|
|
32734
|
-
contractURI: string;
|
|
32735
32807
|
metadataUri: string;
|
|
32736
32808
|
royaltyRecipients?: Array<{
|
|
32737
32809
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -32965,7 +33037,6 @@ export type ExchangeFieldsFragment = {
|
|
|
32965
33037
|
authTokenType: number;
|
|
32966
33038
|
voucherCloneAddress: string;
|
|
32967
33039
|
active: boolean;
|
|
32968
|
-
contractURI: string;
|
|
32969
33040
|
metadataUri: string;
|
|
32970
33041
|
royaltyRecipients?: Array<{
|
|
32971
33042
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -33341,7 +33412,6 @@ export type ExchangeFieldsFragment = {
|
|
|
33341
33412
|
authTokenType: number;
|
|
33342
33413
|
voucherCloneAddress: string;
|
|
33343
33414
|
active: boolean;
|
|
33344
|
-
contractURI: string;
|
|
33345
33415
|
metadataUri: string;
|
|
33346
33416
|
royaltyRecipients?: Array<{
|
|
33347
33417
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -33485,7 +33555,6 @@ export type ExchangeFieldsFragment = {
|
|
|
33485
33555
|
authTokenType: number;
|
|
33486
33556
|
voucherCloneAddress: string;
|
|
33487
33557
|
active: boolean;
|
|
33488
|
-
contractURI: string;
|
|
33489
33558
|
metadataUri: string;
|
|
33490
33559
|
royaltyRecipients?: Array<{
|
|
33491
33560
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -33636,7 +33705,6 @@ export type ExchangeFieldsFragment = {
|
|
|
33636
33705
|
authTokenType: number;
|
|
33637
33706
|
voucherCloneAddress: string;
|
|
33638
33707
|
active: boolean;
|
|
33639
|
-
contractURI: string;
|
|
33640
33708
|
metadataUri: string;
|
|
33641
33709
|
royaltyRecipients?: Array<{
|
|
33642
33710
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -33761,7 +33829,6 @@ export type BaseExchangeFieldsFragment = {
|
|
|
33761
33829
|
authTokenType: number;
|
|
33762
33830
|
voucherCloneAddress: string;
|
|
33763
33831
|
active: boolean;
|
|
33764
|
-
contractURI: string;
|
|
33765
33832
|
metadataUri: string;
|
|
33766
33833
|
royaltyRecipients?: Array<{
|
|
33767
33834
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -34076,7 +34143,6 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
34076
34143
|
authTokenType: number;
|
|
34077
34144
|
voucherCloneAddress: string;
|
|
34078
34145
|
active: boolean;
|
|
34079
|
-
contractURI: string;
|
|
34080
34146
|
metadataUri: string;
|
|
34081
34147
|
royaltyRecipients?: Array<{
|
|
34082
34148
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -34159,9 +34225,13 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
34159
34225
|
id: string;
|
|
34160
34226
|
sellerId: string;
|
|
34161
34227
|
collectionIndex: string;
|
|
34162
|
-
collectionAddress: string;
|
|
34163
34228
|
externalIdHash: string;
|
|
34164
34229
|
externalId: string;
|
|
34230
|
+
collectionContract: {
|
|
34231
|
+
__typename?: "CollectionContract";
|
|
34232
|
+
address: string;
|
|
34233
|
+
contractUri: string;
|
|
34234
|
+
};
|
|
34165
34235
|
metadata?: {
|
|
34166
34236
|
__typename?: "NftContractMetadata";
|
|
34167
34237
|
id: string;
|
|
@@ -34293,7 +34363,6 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
34293
34363
|
authTokenType: number;
|
|
34294
34364
|
voucherCloneAddress: string;
|
|
34295
34365
|
active: boolean;
|
|
34296
|
-
contractURI: string;
|
|
34297
34366
|
metadataUri: string;
|
|
34298
34367
|
royaltyRecipients?: Array<{
|
|
34299
34368
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -34527,7 +34596,6 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
34527
34596
|
authTokenType: number;
|
|
34528
34597
|
voucherCloneAddress: string;
|
|
34529
34598
|
active: boolean;
|
|
34530
|
-
contractURI: string;
|
|
34531
34599
|
metadataUri: string;
|
|
34532
34600
|
royaltyRecipients?: Array<{
|
|
34533
34601
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -34903,7 +34971,6 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
34903
34971
|
authTokenType: number;
|
|
34904
34972
|
voucherCloneAddress: string;
|
|
34905
34973
|
active: boolean;
|
|
34906
|
-
contractURI: string;
|
|
34907
34974
|
metadataUri: string;
|
|
34908
34975
|
royaltyRecipients?: Array<{
|
|
34909
34976
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -35047,7 +35114,6 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
35047
35114
|
authTokenType: number;
|
|
35048
35115
|
voucherCloneAddress: string;
|
|
35049
35116
|
active: boolean;
|
|
35050
|
-
contractURI: string;
|
|
35051
35117
|
metadataUri: string;
|
|
35052
35118
|
royaltyRecipients?: Array<{
|
|
35053
35119
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -35177,7 +35243,6 @@ export type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
35177
35243
|
authTokenType: number;
|
|
35178
35244
|
voucherCloneAddress: string;
|
|
35179
35245
|
active: boolean;
|
|
35180
|
-
contractURI: string;
|
|
35181
35246
|
metadataUri: string;
|
|
35182
35247
|
royaltyRecipients?: Array<{
|
|
35183
35248
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -35397,7 +35462,6 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
35397
35462
|
authTokenType: number;
|
|
35398
35463
|
voucherCloneAddress: string;
|
|
35399
35464
|
active: boolean;
|
|
35400
|
-
contractURI: string;
|
|
35401
35465
|
metadataUri: string;
|
|
35402
35466
|
royaltyRecipients?: Array<{
|
|
35403
35467
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -35480,9 +35544,13 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
35480
35544
|
id: string;
|
|
35481
35545
|
sellerId: string;
|
|
35482
35546
|
collectionIndex: string;
|
|
35483
|
-
collectionAddress: string;
|
|
35484
35547
|
externalIdHash: string;
|
|
35485
35548
|
externalId: string;
|
|
35549
|
+
collectionContract: {
|
|
35550
|
+
__typename?: "CollectionContract";
|
|
35551
|
+
address: string;
|
|
35552
|
+
contractUri: string;
|
|
35553
|
+
};
|
|
35486
35554
|
metadata?: {
|
|
35487
35555
|
__typename?: "NftContractMetadata";
|
|
35488
35556
|
id: string;
|
|
@@ -35614,7 +35682,6 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
35614
35682
|
authTokenType: number;
|
|
35615
35683
|
voucherCloneAddress: string;
|
|
35616
35684
|
active: boolean;
|
|
35617
|
-
contractURI: string;
|
|
35618
35685
|
metadataUri: string;
|
|
35619
35686
|
royaltyRecipients?: Array<{
|
|
35620
35687
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -35848,7 +35915,6 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
35848
35915
|
authTokenType: number;
|
|
35849
35916
|
voucherCloneAddress: string;
|
|
35850
35917
|
active: boolean;
|
|
35851
|
-
contractURI: string;
|
|
35852
35918
|
metadataUri: string;
|
|
35853
35919
|
royaltyRecipients?: Array<{
|
|
35854
35920
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -36224,7 +36290,6 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
36224
36290
|
authTokenType: number;
|
|
36225
36291
|
voucherCloneAddress: string;
|
|
36226
36292
|
active: boolean;
|
|
36227
|
-
contractURI: string;
|
|
36228
36293
|
metadataUri: string;
|
|
36229
36294
|
royaltyRecipients?: Array<{
|
|
36230
36295
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -36368,7 +36433,6 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
36368
36433
|
authTokenType: number;
|
|
36369
36434
|
voucherCloneAddress: string;
|
|
36370
36435
|
active: boolean;
|
|
36371
|
-
contractURI: string;
|
|
36372
36436
|
metadataUri: string;
|
|
36373
36437
|
royaltyRecipients?: Array<{
|
|
36374
36438
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -36498,7 +36562,6 @@ export type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
36498
36562
|
authTokenType: number;
|
|
36499
36563
|
voucherCloneAddress: string;
|
|
36500
36564
|
active: boolean;
|
|
36501
|
-
contractURI: string;
|
|
36502
36565
|
metadataUri: string;
|
|
36503
36566
|
royaltyRecipients?: Array<{
|
|
36504
36567
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -36709,7 +36772,6 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
36709
36772
|
authTokenType: number;
|
|
36710
36773
|
voucherCloneAddress: string;
|
|
36711
36774
|
active: boolean;
|
|
36712
|
-
contractURI: string;
|
|
36713
36775
|
metadataUri: string;
|
|
36714
36776
|
royaltyRecipients?: Array<{
|
|
36715
36777
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -36792,9 +36854,13 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
36792
36854
|
id: string;
|
|
36793
36855
|
sellerId: string;
|
|
36794
36856
|
collectionIndex: string;
|
|
36795
|
-
collectionAddress: string;
|
|
36796
36857
|
externalIdHash: string;
|
|
36797
36858
|
externalId: string;
|
|
36859
|
+
collectionContract: {
|
|
36860
|
+
__typename?: "CollectionContract";
|
|
36861
|
+
address: string;
|
|
36862
|
+
contractUri: string;
|
|
36863
|
+
};
|
|
36798
36864
|
metadata?: {
|
|
36799
36865
|
__typename?: "NftContractMetadata";
|
|
36800
36866
|
id: string;
|
|
@@ -36926,7 +36992,6 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
36926
36992
|
authTokenType: number;
|
|
36927
36993
|
voucherCloneAddress: string;
|
|
36928
36994
|
active: boolean;
|
|
36929
|
-
contractURI: string;
|
|
36930
36995
|
metadataUri: string;
|
|
36931
36996
|
royaltyRecipients?: Array<{
|
|
36932
36997
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -37160,7 +37225,6 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
37160
37225
|
authTokenType: number;
|
|
37161
37226
|
voucherCloneAddress: string;
|
|
37162
37227
|
active: boolean;
|
|
37163
|
-
contractURI: string;
|
|
37164
37228
|
metadataUri: string;
|
|
37165
37229
|
royaltyRecipients?: Array<{
|
|
37166
37230
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -37536,7 +37600,6 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
37536
37600
|
authTokenType: number;
|
|
37537
37601
|
voucherCloneAddress: string;
|
|
37538
37602
|
active: boolean;
|
|
37539
|
-
contractURI: string;
|
|
37540
37603
|
metadataUri: string;
|
|
37541
37604
|
royaltyRecipients?: Array<{
|
|
37542
37605
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -37680,7 +37743,6 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
37680
37743
|
authTokenType: number;
|
|
37681
37744
|
voucherCloneAddress: string;
|
|
37682
37745
|
active: boolean;
|
|
37683
|
-
contractURI: string;
|
|
37684
37746
|
metadataUri: string;
|
|
37685
37747
|
royaltyRecipients?: Array<{
|
|
37686
37748
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -37810,7 +37872,6 @@ export type BaseMetadataEntityFieldsFragment = {
|
|
|
37810
37872
|
authTokenType: number;
|
|
37811
37873
|
voucherCloneAddress: string;
|
|
37812
37874
|
active: boolean;
|
|
37813
|
-
contractURI: string;
|
|
37814
37875
|
metadataUri: string;
|
|
37815
37876
|
royaltyRecipients?: Array<{
|
|
37816
37877
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -38020,7 +38081,6 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
38020
38081
|
authTokenType: number;
|
|
38021
38082
|
voucherCloneAddress: string;
|
|
38022
38083
|
active: boolean;
|
|
38023
|
-
contractURI: string;
|
|
38024
38084
|
metadataUri: string;
|
|
38025
38085
|
royaltyRecipients?: Array<{
|
|
38026
38086
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -38103,9 +38163,13 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
38103
38163
|
id: string;
|
|
38104
38164
|
sellerId: string;
|
|
38105
38165
|
collectionIndex: string;
|
|
38106
|
-
collectionAddress: string;
|
|
38107
38166
|
externalIdHash: string;
|
|
38108
38167
|
externalId: string;
|
|
38168
|
+
collectionContract: {
|
|
38169
|
+
__typename?: "CollectionContract";
|
|
38170
|
+
address: string;
|
|
38171
|
+
contractUri: string;
|
|
38172
|
+
};
|
|
38109
38173
|
metadata?: {
|
|
38110
38174
|
__typename?: "NftContractMetadata";
|
|
38111
38175
|
id: string;
|
|
@@ -38237,7 +38301,6 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
38237
38301
|
authTokenType: number;
|
|
38238
38302
|
voucherCloneAddress: string;
|
|
38239
38303
|
active: boolean;
|
|
38240
|
-
contractURI: string;
|
|
38241
38304
|
metadataUri: string;
|
|
38242
38305
|
royaltyRecipients?: Array<{
|
|
38243
38306
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -38471,7 +38534,6 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
38471
38534
|
authTokenType: number;
|
|
38472
38535
|
voucherCloneAddress: string;
|
|
38473
38536
|
active: boolean;
|
|
38474
|
-
contractURI: string;
|
|
38475
38537
|
metadataUri: string;
|
|
38476
38538
|
royaltyRecipients?: Array<{
|
|
38477
38539
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -38847,7 +38909,6 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
38847
38909
|
authTokenType: number;
|
|
38848
38910
|
voucherCloneAddress: string;
|
|
38849
38911
|
active: boolean;
|
|
38850
|
-
contractURI: string;
|
|
38851
38912
|
metadataUri: string;
|
|
38852
38913
|
royaltyRecipients?: Array<{
|
|
38853
38914
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -38991,7 +39052,6 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
38991
39052
|
authTokenType: number;
|
|
38992
39053
|
voucherCloneAddress: string;
|
|
38993
39054
|
active: boolean;
|
|
38994
|
-
contractURI: string;
|
|
38995
39055
|
metadataUri: string;
|
|
38996
39056
|
royaltyRecipients?: Array<{
|
|
38997
39057
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -39121,7 +39181,6 @@ export type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
39121
39181
|
authTokenType: number;
|
|
39122
39182
|
voucherCloneAddress: string;
|
|
39123
39183
|
active: boolean;
|
|
39124
|
-
contractURI: string;
|
|
39125
39184
|
metadataUri: string;
|
|
39126
39185
|
royaltyRecipients?: Array<{
|
|
39127
39186
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -39326,7 +39385,6 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
39326
39385
|
authTokenType: number;
|
|
39327
39386
|
voucherCloneAddress: string;
|
|
39328
39387
|
active: boolean;
|
|
39329
|
-
contractURI: string;
|
|
39330
39388
|
metadataUri: string;
|
|
39331
39389
|
royaltyRecipients?: Array<{
|
|
39332
39390
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -39468,7 +39526,6 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
39468
39526
|
authTokenType: number;
|
|
39469
39527
|
voucherCloneAddress: string;
|
|
39470
39528
|
active: boolean;
|
|
39471
|
-
contractURI: string;
|
|
39472
39529
|
metadataUri: string;
|
|
39473
39530
|
royaltyRecipients?: Array<{
|
|
39474
39531
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -39551,9 +39608,13 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
39551
39608
|
id: string;
|
|
39552
39609
|
sellerId: string;
|
|
39553
39610
|
collectionIndex: string;
|
|
39554
|
-
collectionAddress: string;
|
|
39555
39611
|
externalIdHash: string;
|
|
39556
39612
|
externalId: string;
|
|
39613
|
+
collectionContract: {
|
|
39614
|
+
__typename?: "CollectionContract";
|
|
39615
|
+
address: string;
|
|
39616
|
+
contractUri: string;
|
|
39617
|
+
};
|
|
39557
39618
|
metadata?: {
|
|
39558
39619
|
__typename?: "NftContractMetadata";
|
|
39559
39620
|
id: string;
|
|
@@ -39685,7 +39746,6 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
39685
39746
|
authTokenType: number;
|
|
39686
39747
|
voucherCloneAddress: string;
|
|
39687
39748
|
active: boolean;
|
|
39688
|
-
contractURI: string;
|
|
39689
39749
|
metadataUri: string;
|
|
39690
39750
|
royaltyRecipients?: Array<{
|
|
39691
39751
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -39919,7 +39979,6 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
39919
39979
|
authTokenType: number;
|
|
39920
39980
|
voucherCloneAddress: string;
|
|
39921
39981
|
active: boolean;
|
|
39922
|
-
contractURI: string;
|
|
39923
39982
|
metadataUri: string;
|
|
39924
39983
|
royaltyRecipients?: Array<{
|
|
39925
39984
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -40295,7 +40354,6 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
40295
40354
|
authTokenType: number;
|
|
40296
40355
|
voucherCloneAddress: string;
|
|
40297
40356
|
active: boolean;
|
|
40298
|
-
contractURI: string;
|
|
40299
40357
|
metadataUri: string;
|
|
40300
40358
|
royaltyRecipients?: Array<{
|
|
40301
40359
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -40439,7 +40497,6 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
40439
40497
|
authTokenType: number;
|
|
40440
40498
|
voucherCloneAddress: string;
|
|
40441
40499
|
active: boolean;
|
|
40442
|
-
contractURI: string;
|
|
40443
40500
|
metadataUri: string;
|
|
40444
40501
|
royaltyRecipients?: Array<{
|
|
40445
40502
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -40569,7 +40626,6 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
40569
40626
|
authTokenType: number;
|
|
40570
40627
|
voucherCloneAddress: string;
|
|
40571
40628
|
active: boolean;
|
|
40572
|
-
contractURI: string;
|
|
40573
40629
|
metadataUri: string;
|
|
40574
40630
|
royaltyRecipients?: Array<{
|
|
40575
40631
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -40691,7 +40747,6 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
40691
40747
|
authTokenType: number;
|
|
40692
40748
|
voucherCloneAddress: string;
|
|
40693
40749
|
active: boolean;
|
|
40694
|
-
contractURI: string;
|
|
40695
40750
|
metadataUri: string;
|
|
40696
40751
|
royaltyRecipients?: Array<{
|
|
40697
40752
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -40931,7 +40986,6 @@ export type GetBundleMetadataEntityByIdQueryQuery = {
|
|
|
40931
40986
|
authTokenType: number;
|
|
40932
40987
|
voucherCloneAddress: string;
|
|
40933
40988
|
active: boolean;
|
|
40934
|
-
contractURI: string;
|
|
40935
40989
|
metadataUri: string;
|
|
40936
40990
|
royaltyRecipients?: Array<{
|
|
40937
40991
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -41234,7 +41288,6 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
41234
41288
|
authTokenType: number;
|
|
41235
41289
|
voucherCloneAddress: string;
|
|
41236
41290
|
active: boolean;
|
|
41237
|
-
contractURI: string;
|
|
41238
41291
|
metadataUri: string;
|
|
41239
41292
|
royaltyRecipients?: Array<{
|
|
41240
41293
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -41376,7 +41429,6 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
41376
41429
|
authTokenType: number;
|
|
41377
41430
|
voucherCloneAddress: string;
|
|
41378
41431
|
active: boolean;
|
|
41379
|
-
contractURI: string;
|
|
41380
41432
|
metadataUri: string;
|
|
41381
41433
|
royaltyRecipients?: Array<{
|
|
41382
41434
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -41459,9 +41511,13 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
41459
41511
|
id: string;
|
|
41460
41512
|
sellerId: string;
|
|
41461
41513
|
collectionIndex: string;
|
|
41462
|
-
collectionAddress: string;
|
|
41463
41514
|
externalIdHash: string;
|
|
41464
41515
|
externalId: string;
|
|
41516
|
+
collectionContract: {
|
|
41517
|
+
__typename?: "CollectionContract";
|
|
41518
|
+
address: string;
|
|
41519
|
+
contractUri: string;
|
|
41520
|
+
};
|
|
41465
41521
|
metadata?: {
|
|
41466
41522
|
__typename?: "NftContractMetadata";
|
|
41467
41523
|
id: string;
|
|
@@ -41593,7 +41649,6 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
41593
41649
|
authTokenType: number;
|
|
41594
41650
|
voucherCloneAddress: string;
|
|
41595
41651
|
active: boolean;
|
|
41596
|
-
contractURI: string;
|
|
41597
41652
|
metadataUri: string;
|
|
41598
41653
|
royaltyRecipients?: Array<{
|
|
41599
41654
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -41827,7 +41882,6 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
41827
41882
|
authTokenType: number;
|
|
41828
41883
|
voucherCloneAddress: string;
|
|
41829
41884
|
active: boolean;
|
|
41830
|
-
contractURI: string;
|
|
41831
41885
|
metadataUri: string;
|
|
41832
41886
|
royaltyRecipients?: Array<{
|
|
41833
41887
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -42203,7 +42257,6 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
42203
42257
|
authTokenType: number;
|
|
42204
42258
|
voucherCloneAddress: string;
|
|
42205
42259
|
active: boolean;
|
|
42206
|
-
contractURI: string;
|
|
42207
42260
|
metadataUri: string;
|
|
42208
42261
|
royaltyRecipients?: Array<{
|
|
42209
42262
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -42347,7 +42400,6 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
42347
42400
|
authTokenType: number;
|
|
42348
42401
|
voucherCloneAddress: string;
|
|
42349
42402
|
active: boolean;
|
|
42350
|
-
contractURI: string;
|
|
42351
42403
|
metadataUri: string;
|
|
42352
42404
|
royaltyRecipients?: Array<{
|
|
42353
42405
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -42477,7 +42529,6 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
42477
42529
|
authTokenType: number;
|
|
42478
42530
|
voucherCloneAddress: string;
|
|
42479
42531
|
active: boolean;
|
|
42480
|
-
contractURI: string;
|
|
42481
42532
|
metadataUri: string;
|
|
42482
42533
|
royaltyRecipients?: Array<{
|
|
42483
42534
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -42599,7 +42650,6 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
42599
42650
|
authTokenType: number;
|
|
42600
42651
|
voucherCloneAddress: string;
|
|
42601
42652
|
active: boolean;
|
|
42602
|
-
contractURI: string;
|
|
42603
42653
|
metadataUri: string;
|
|
42604
42654
|
royaltyRecipients?: Array<{
|
|
42605
42655
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -42839,7 +42889,6 @@ export type GetBundleMetadataEntitiesQueryQuery = {
|
|
|
42839
42889
|
authTokenType: number;
|
|
42840
42890
|
voucherCloneAddress: string;
|
|
42841
42891
|
active: boolean;
|
|
42842
|
-
contractURI: string;
|
|
42843
42892
|
metadataUri: string;
|
|
42844
42893
|
royaltyRecipients?: Array<{
|
|
42845
42894
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -43133,7 +43182,6 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
43133
43182
|
authTokenType: number;
|
|
43134
43183
|
voucherCloneAddress: string;
|
|
43135
43184
|
active: boolean;
|
|
43136
|
-
contractURI: string;
|
|
43137
43185
|
metadataUri: string;
|
|
43138
43186
|
royaltyRecipients?: Array<{
|
|
43139
43187
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -43275,7 +43323,6 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
43275
43323
|
authTokenType: number;
|
|
43276
43324
|
voucherCloneAddress: string;
|
|
43277
43325
|
active: boolean;
|
|
43278
|
-
contractURI: string;
|
|
43279
43326
|
metadataUri: string;
|
|
43280
43327
|
royaltyRecipients?: Array<{
|
|
43281
43328
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -43358,9 +43405,13 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
43358
43405
|
id: string;
|
|
43359
43406
|
sellerId: string;
|
|
43360
43407
|
collectionIndex: string;
|
|
43361
|
-
collectionAddress: string;
|
|
43362
43408
|
externalIdHash: string;
|
|
43363
43409
|
externalId: string;
|
|
43410
|
+
collectionContract: {
|
|
43411
|
+
__typename?: "CollectionContract";
|
|
43412
|
+
address: string;
|
|
43413
|
+
contractUri: string;
|
|
43414
|
+
};
|
|
43364
43415
|
metadata?: {
|
|
43365
43416
|
__typename?: "NftContractMetadata";
|
|
43366
43417
|
id: string;
|
|
@@ -43492,7 +43543,6 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
43492
43543
|
authTokenType: number;
|
|
43493
43544
|
voucherCloneAddress: string;
|
|
43494
43545
|
active: boolean;
|
|
43495
|
-
contractURI: string;
|
|
43496
43546
|
metadataUri: string;
|
|
43497
43547
|
royaltyRecipients?: Array<{
|
|
43498
43548
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -43726,7 +43776,6 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
43726
43776
|
authTokenType: number;
|
|
43727
43777
|
voucherCloneAddress: string;
|
|
43728
43778
|
active: boolean;
|
|
43729
|
-
contractURI: string;
|
|
43730
43779
|
metadataUri: string;
|
|
43731
43780
|
royaltyRecipients?: Array<{
|
|
43732
43781
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -44102,7 +44151,6 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
44102
44151
|
authTokenType: number;
|
|
44103
44152
|
voucherCloneAddress: string;
|
|
44104
44153
|
active: boolean;
|
|
44105
|
-
contractURI: string;
|
|
44106
44154
|
metadataUri: string;
|
|
44107
44155
|
royaltyRecipients?: Array<{
|
|
44108
44156
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -44246,7 +44294,6 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
44246
44294
|
authTokenType: number;
|
|
44247
44295
|
voucherCloneAddress: string;
|
|
44248
44296
|
active: boolean;
|
|
44249
|
-
contractURI: string;
|
|
44250
44297
|
metadataUri: string;
|
|
44251
44298
|
royaltyRecipients?: Array<{
|
|
44252
44299
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -44376,7 +44423,6 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
44376
44423
|
authTokenType: number;
|
|
44377
44424
|
voucherCloneAddress: string;
|
|
44378
44425
|
active: boolean;
|
|
44379
|
-
contractURI: string;
|
|
44380
44426
|
metadataUri: string;
|
|
44381
44427
|
royaltyRecipients?: Array<{
|
|
44382
44428
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -44498,7 +44544,6 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
44498
44544
|
authTokenType: number;
|
|
44499
44545
|
voucherCloneAddress: string;
|
|
44500
44546
|
active: boolean;
|
|
44501
|
-
contractURI: string;
|
|
44502
44547
|
metadataUri: string;
|
|
44503
44548
|
royaltyRecipients?: Array<{
|
|
44504
44549
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -44738,7 +44783,6 @@ export type BundleMetadataEntityFieldsFragment = {
|
|
|
44738
44783
|
authTokenType: number;
|
|
44739
44784
|
voucherCloneAddress: string;
|
|
44740
44785
|
active: boolean;
|
|
44741
|
-
contractURI: string;
|
|
44742
44786
|
metadataUri: string;
|
|
44743
44787
|
royaltyRecipients?: Array<{
|
|
44744
44788
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -45031,7 +45075,6 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
45031
45075
|
authTokenType: number;
|
|
45032
45076
|
voucherCloneAddress: string;
|
|
45033
45077
|
active: boolean;
|
|
45034
|
-
contractURI: string;
|
|
45035
45078
|
metadataUri: string;
|
|
45036
45079
|
royaltyRecipients?: Array<{
|
|
45037
45080
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -45173,7 +45216,6 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
45173
45216
|
authTokenType: number;
|
|
45174
45217
|
voucherCloneAddress: string;
|
|
45175
45218
|
active: boolean;
|
|
45176
|
-
contractURI: string;
|
|
45177
45219
|
metadataUri: string;
|
|
45178
45220
|
royaltyRecipients?: Array<{
|
|
45179
45221
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -45256,9 +45298,13 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
45256
45298
|
id: string;
|
|
45257
45299
|
sellerId: string;
|
|
45258
45300
|
collectionIndex: string;
|
|
45259
|
-
collectionAddress: string;
|
|
45260
45301
|
externalIdHash: string;
|
|
45261
45302
|
externalId: string;
|
|
45303
|
+
collectionContract: {
|
|
45304
|
+
__typename?: "CollectionContract";
|
|
45305
|
+
address: string;
|
|
45306
|
+
contractUri: string;
|
|
45307
|
+
};
|
|
45262
45308
|
metadata?: {
|
|
45263
45309
|
__typename?: "NftContractMetadata";
|
|
45264
45310
|
id: string;
|
|
@@ -45390,7 +45436,6 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
45390
45436
|
authTokenType: number;
|
|
45391
45437
|
voucherCloneAddress: string;
|
|
45392
45438
|
active: boolean;
|
|
45393
|
-
contractURI: string;
|
|
45394
45439
|
metadataUri: string;
|
|
45395
45440
|
royaltyRecipients?: Array<{
|
|
45396
45441
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -45624,7 +45669,6 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
45624
45669
|
authTokenType: number;
|
|
45625
45670
|
voucherCloneAddress: string;
|
|
45626
45671
|
active: boolean;
|
|
45627
|
-
contractURI: string;
|
|
45628
45672
|
metadataUri: string;
|
|
45629
45673
|
royaltyRecipients?: Array<{
|
|
45630
45674
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -46000,7 +46044,6 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
46000
46044
|
authTokenType: number;
|
|
46001
46045
|
voucherCloneAddress: string;
|
|
46002
46046
|
active: boolean;
|
|
46003
|
-
contractURI: string;
|
|
46004
46047
|
metadataUri: string;
|
|
46005
46048
|
royaltyRecipients?: Array<{
|
|
46006
46049
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -46144,7 +46187,6 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
46144
46187
|
authTokenType: number;
|
|
46145
46188
|
voucherCloneAddress: string;
|
|
46146
46189
|
active: boolean;
|
|
46147
|
-
contractURI: string;
|
|
46148
46190
|
metadataUri: string;
|
|
46149
46191
|
royaltyRecipients?: Array<{
|
|
46150
46192
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -46274,7 +46316,6 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
46274
46316
|
authTokenType: number;
|
|
46275
46317
|
voucherCloneAddress: string;
|
|
46276
46318
|
active: boolean;
|
|
46277
|
-
contractURI: string;
|
|
46278
46319
|
metadataUri: string;
|
|
46279
46320
|
royaltyRecipients?: Array<{
|
|
46280
46321
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -46396,7 +46437,6 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
46396
46437
|
authTokenType: number;
|
|
46397
46438
|
voucherCloneAddress: string;
|
|
46398
46439
|
active: boolean;
|
|
46399
|
-
contractURI: string;
|
|
46400
46440
|
metadataUri: string;
|
|
46401
46441
|
royaltyRecipients?: Array<{
|
|
46402
46442
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -46636,7 +46676,6 @@ export type BaseBundleMetadataEntityFieldsFragment = {
|
|
|
46636
46676
|
authTokenType: number;
|
|
46637
46677
|
voucherCloneAddress: string;
|
|
46638
46678
|
active: boolean;
|
|
46639
|
-
contractURI: string;
|
|
46640
46679
|
metadataUri: string;
|
|
46641
46680
|
royaltyRecipients?: Array<{
|
|
46642
46681
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -46964,7 +47003,6 @@ export type GetProductV1ProductsQueryQuery = {
|
|
|
46964
47003
|
authTokenType: number;
|
|
46965
47004
|
voucherCloneAddress: string;
|
|
46966
47005
|
active: boolean;
|
|
46967
|
-
contractURI: string;
|
|
46968
47006
|
metadataUri: string;
|
|
46969
47007
|
royaltyRecipients?: Array<{
|
|
46970
47008
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -47187,7 +47225,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
47187
47225
|
authTokenType: number;
|
|
47188
47226
|
voucherCloneAddress: string;
|
|
47189
47227
|
active: boolean;
|
|
47190
|
-
contractURI: string;
|
|
47191
47228
|
metadataUri: string;
|
|
47192
47229
|
royaltyRecipients?: Array<{
|
|
47193
47230
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -47329,7 +47366,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
47329
47366
|
authTokenType: number;
|
|
47330
47367
|
voucherCloneAddress: string;
|
|
47331
47368
|
active: boolean;
|
|
47332
|
-
contractURI: string;
|
|
47333
47369
|
metadataUri: string;
|
|
47334
47370
|
royaltyRecipients?: Array<{
|
|
47335
47371
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -47412,9 +47448,13 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
47412
47448
|
id: string;
|
|
47413
47449
|
sellerId: string;
|
|
47414
47450
|
collectionIndex: string;
|
|
47415
|
-
collectionAddress: string;
|
|
47416
47451
|
externalIdHash: string;
|
|
47417
47452
|
externalId: string;
|
|
47453
|
+
collectionContract: {
|
|
47454
|
+
__typename?: "CollectionContract";
|
|
47455
|
+
address: string;
|
|
47456
|
+
contractUri: string;
|
|
47457
|
+
};
|
|
47418
47458
|
metadata?: {
|
|
47419
47459
|
__typename?: "NftContractMetadata";
|
|
47420
47460
|
id: string;
|
|
@@ -47546,7 +47586,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
47546
47586
|
authTokenType: number;
|
|
47547
47587
|
voucherCloneAddress: string;
|
|
47548
47588
|
active: boolean;
|
|
47549
|
-
contractURI: string;
|
|
47550
47589
|
metadataUri: string;
|
|
47551
47590
|
royaltyRecipients?: Array<{
|
|
47552
47591
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -47780,7 +47819,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
47780
47819
|
authTokenType: number;
|
|
47781
47820
|
voucherCloneAddress: string;
|
|
47782
47821
|
active: boolean;
|
|
47783
|
-
contractURI: string;
|
|
47784
47822
|
metadataUri: string;
|
|
47785
47823
|
royaltyRecipients?: Array<{
|
|
47786
47824
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -48156,7 +48194,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
48156
48194
|
authTokenType: number;
|
|
48157
48195
|
voucherCloneAddress: string;
|
|
48158
48196
|
active: boolean;
|
|
48159
|
-
contractURI: string;
|
|
48160
48197
|
metadataUri: string;
|
|
48161
48198
|
royaltyRecipients?: Array<{
|
|
48162
48199
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -48300,7 +48337,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
48300
48337
|
authTokenType: number;
|
|
48301
48338
|
voucherCloneAddress: string;
|
|
48302
48339
|
active: boolean;
|
|
48303
|
-
contractURI: string;
|
|
48304
48340
|
metadataUri: string;
|
|
48305
48341
|
royaltyRecipients?: Array<{
|
|
48306
48342
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -48533,7 +48569,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
48533
48569
|
authTokenType: number;
|
|
48534
48570
|
voucherCloneAddress: string;
|
|
48535
48571
|
active: boolean;
|
|
48536
|
-
contractURI: string;
|
|
48537
48572
|
metadataUri: string;
|
|
48538
48573
|
royaltyRecipients?: Array<{
|
|
48539
48574
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -48675,7 +48710,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
48675
48710
|
authTokenType: number;
|
|
48676
48711
|
voucherCloneAddress: string;
|
|
48677
48712
|
active: boolean;
|
|
48678
|
-
contractURI: string;
|
|
48679
48713
|
metadataUri: string;
|
|
48680
48714
|
royaltyRecipients?: Array<{
|
|
48681
48715
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -48758,9 +48792,13 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
48758
48792
|
id: string;
|
|
48759
48793
|
sellerId: string;
|
|
48760
48794
|
collectionIndex: string;
|
|
48761
|
-
collectionAddress: string;
|
|
48762
48795
|
externalIdHash: string;
|
|
48763
48796
|
externalId: string;
|
|
48797
|
+
collectionContract: {
|
|
48798
|
+
__typename?: "CollectionContract";
|
|
48799
|
+
address: string;
|
|
48800
|
+
contractUri: string;
|
|
48801
|
+
};
|
|
48764
48802
|
metadata?: {
|
|
48765
48803
|
__typename?: "NftContractMetadata";
|
|
48766
48804
|
id: string;
|
|
@@ -48892,7 +48930,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
48892
48930
|
authTokenType: number;
|
|
48893
48931
|
voucherCloneAddress: string;
|
|
48894
48932
|
active: boolean;
|
|
48895
|
-
contractURI: string;
|
|
48896
48933
|
metadataUri: string;
|
|
48897
48934
|
royaltyRecipients?: Array<{
|
|
48898
48935
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -49126,7 +49163,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
49126
49163
|
authTokenType: number;
|
|
49127
49164
|
voucherCloneAddress: string;
|
|
49128
49165
|
active: boolean;
|
|
49129
|
-
contractURI: string;
|
|
49130
49166
|
metadataUri: string;
|
|
49131
49167
|
royaltyRecipients?: Array<{
|
|
49132
49168
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -49502,7 +49538,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
49502
49538
|
authTokenType: number;
|
|
49503
49539
|
voucherCloneAddress: string;
|
|
49504
49540
|
active: boolean;
|
|
49505
|
-
contractURI: string;
|
|
49506
49541
|
metadataUri: string;
|
|
49507
49542
|
royaltyRecipients?: Array<{
|
|
49508
49543
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -49646,7 +49681,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
49646
49681
|
authTokenType: number;
|
|
49647
49682
|
voucherCloneAddress: string;
|
|
49648
49683
|
active: boolean;
|
|
49649
|
-
contractURI: string;
|
|
49650
49684
|
metadataUri: string;
|
|
49651
49685
|
royaltyRecipients?: Array<{
|
|
49652
49686
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -49776,7 +49810,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
49776
49810
|
authTokenType: number;
|
|
49777
49811
|
voucherCloneAddress: string;
|
|
49778
49812
|
active: boolean;
|
|
49779
|
-
contractURI: string;
|
|
49780
49813
|
metadataUri: string;
|
|
49781
49814
|
royaltyRecipients?: Array<{
|
|
49782
49815
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -49898,7 +49931,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
49898
49931
|
authTokenType: number;
|
|
49899
49932
|
voucherCloneAddress: string;
|
|
49900
49933
|
active: boolean;
|
|
49901
|
-
contractURI: string;
|
|
49902
49934
|
metadataUri: string;
|
|
49903
49935
|
royaltyRecipients?: Array<{
|
|
49904
49936
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -50138,7 +50170,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
50138
50170
|
authTokenType: number;
|
|
50139
50171
|
voucherCloneAddress: string;
|
|
50140
50172
|
active: boolean;
|
|
50141
|
-
contractURI: string;
|
|
50142
50173
|
metadataUri: string;
|
|
50143
50174
|
royaltyRecipients?: Array<{
|
|
50144
50175
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -50413,7 +50444,6 @@ export type GetProductV1ProductsWithVariantsQueryQuery = {
|
|
|
50413
50444
|
authTokenType: number;
|
|
50414
50445
|
voucherCloneAddress: string;
|
|
50415
50446
|
active: boolean;
|
|
50416
|
-
contractURI: string;
|
|
50417
50447
|
metadataUri: string;
|
|
50418
50448
|
royaltyRecipients?: Array<{
|
|
50419
50449
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -50636,7 +50666,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
50636
50666
|
authTokenType: number;
|
|
50637
50667
|
voucherCloneAddress: string;
|
|
50638
50668
|
active: boolean;
|
|
50639
|
-
contractURI: string;
|
|
50640
50669
|
metadataUri: string;
|
|
50641
50670
|
royaltyRecipients?: Array<{
|
|
50642
50671
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -50778,7 +50807,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
50778
50807
|
authTokenType: number;
|
|
50779
50808
|
voucherCloneAddress: string;
|
|
50780
50809
|
active: boolean;
|
|
50781
|
-
contractURI: string;
|
|
50782
50810
|
metadataUri: string;
|
|
50783
50811
|
royaltyRecipients?: Array<{
|
|
50784
50812
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -50861,9 +50889,13 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
50861
50889
|
id: string;
|
|
50862
50890
|
sellerId: string;
|
|
50863
50891
|
collectionIndex: string;
|
|
50864
|
-
collectionAddress: string;
|
|
50865
50892
|
externalIdHash: string;
|
|
50866
50893
|
externalId: string;
|
|
50894
|
+
collectionContract: {
|
|
50895
|
+
__typename?: "CollectionContract";
|
|
50896
|
+
address: string;
|
|
50897
|
+
contractUri: string;
|
|
50898
|
+
};
|
|
50867
50899
|
metadata?: {
|
|
50868
50900
|
__typename?: "NftContractMetadata";
|
|
50869
50901
|
id: string;
|
|
@@ -50995,7 +51027,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
50995
51027
|
authTokenType: number;
|
|
50996
51028
|
voucherCloneAddress: string;
|
|
50997
51029
|
active: boolean;
|
|
50998
|
-
contractURI: string;
|
|
50999
51030
|
metadataUri: string;
|
|
51000
51031
|
royaltyRecipients?: Array<{
|
|
51001
51032
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -51229,7 +51260,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
51229
51260
|
authTokenType: number;
|
|
51230
51261
|
voucherCloneAddress: string;
|
|
51231
51262
|
active: boolean;
|
|
51232
|
-
contractURI: string;
|
|
51233
51263
|
metadataUri: string;
|
|
51234
51264
|
royaltyRecipients?: Array<{
|
|
51235
51265
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -51605,7 +51635,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
51605
51635
|
authTokenType: number;
|
|
51606
51636
|
voucherCloneAddress: string;
|
|
51607
51637
|
active: boolean;
|
|
51608
|
-
contractURI: string;
|
|
51609
51638
|
metadataUri: string;
|
|
51610
51639
|
royaltyRecipients?: Array<{
|
|
51611
51640
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -51749,7 +51778,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
51749
51778
|
authTokenType: number;
|
|
51750
51779
|
voucherCloneAddress: string;
|
|
51751
51780
|
active: boolean;
|
|
51752
|
-
contractURI: string;
|
|
51753
51781
|
metadataUri: string;
|
|
51754
51782
|
royaltyRecipients?: Array<{
|
|
51755
51783
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -51982,7 +52010,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
51982
52010
|
authTokenType: number;
|
|
51983
52011
|
voucherCloneAddress: string;
|
|
51984
52012
|
active: boolean;
|
|
51985
|
-
contractURI: string;
|
|
51986
52013
|
metadataUri: string;
|
|
51987
52014
|
royaltyRecipients?: Array<{
|
|
51988
52015
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -52124,7 +52151,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
52124
52151
|
authTokenType: number;
|
|
52125
52152
|
voucherCloneAddress: string;
|
|
52126
52153
|
active: boolean;
|
|
52127
|
-
contractURI: string;
|
|
52128
52154
|
metadataUri: string;
|
|
52129
52155
|
royaltyRecipients?: Array<{
|
|
52130
52156
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -52207,9 +52233,13 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
52207
52233
|
id: string;
|
|
52208
52234
|
sellerId: string;
|
|
52209
52235
|
collectionIndex: string;
|
|
52210
|
-
collectionAddress: string;
|
|
52211
52236
|
externalIdHash: string;
|
|
52212
52237
|
externalId: string;
|
|
52238
|
+
collectionContract: {
|
|
52239
|
+
__typename?: "CollectionContract";
|
|
52240
|
+
address: string;
|
|
52241
|
+
contractUri: string;
|
|
52242
|
+
};
|
|
52213
52243
|
metadata?: {
|
|
52214
52244
|
__typename?: "NftContractMetadata";
|
|
52215
52245
|
id: string;
|
|
@@ -52341,7 +52371,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
52341
52371
|
authTokenType: number;
|
|
52342
52372
|
voucherCloneAddress: string;
|
|
52343
52373
|
active: boolean;
|
|
52344
|
-
contractURI: string;
|
|
52345
52374
|
metadataUri: string;
|
|
52346
52375
|
royaltyRecipients?: Array<{
|
|
52347
52376
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -52575,7 +52604,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
52575
52604
|
authTokenType: number;
|
|
52576
52605
|
voucherCloneAddress: string;
|
|
52577
52606
|
active: boolean;
|
|
52578
|
-
contractURI: string;
|
|
52579
52607
|
metadataUri: string;
|
|
52580
52608
|
royaltyRecipients?: Array<{
|
|
52581
52609
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -52951,7 +52979,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
52951
52979
|
authTokenType: number;
|
|
52952
52980
|
voucherCloneAddress: string;
|
|
52953
52981
|
active: boolean;
|
|
52954
|
-
contractURI: string;
|
|
52955
52982
|
metadataUri: string;
|
|
52956
52983
|
royaltyRecipients?: Array<{
|
|
52957
52984
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -53095,7 +53122,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
53095
53122
|
authTokenType: number;
|
|
53096
53123
|
voucherCloneAddress: string;
|
|
53097
53124
|
active: boolean;
|
|
53098
|
-
contractURI: string;
|
|
53099
53125
|
metadataUri: string;
|
|
53100
53126
|
royaltyRecipients?: Array<{
|
|
53101
53127
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -53225,7 +53251,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
53225
53251
|
authTokenType: number;
|
|
53226
53252
|
voucherCloneAddress: string;
|
|
53227
53253
|
active: boolean;
|
|
53228
|
-
contractURI: string;
|
|
53229
53254
|
metadataUri: string;
|
|
53230
53255
|
royaltyRecipients?: Array<{
|
|
53231
53256
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -53347,7 +53372,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
53347
53372
|
authTokenType: number;
|
|
53348
53373
|
voucherCloneAddress: string;
|
|
53349
53374
|
active: boolean;
|
|
53350
|
-
contractURI: string;
|
|
53351
53375
|
metadataUri: string;
|
|
53352
53376
|
royaltyRecipients?: Array<{
|
|
53353
53377
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -53587,7 +53611,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
53587
53611
|
authTokenType: number;
|
|
53588
53612
|
voucherCloneAddress: string;
|
|
53589
53613
|
active: boolean;
|
|
53590
|
-
contractURI: string;
|
|
53591
53614
|
metadataUri: string;
|
|
53592
53615
|
royaltyRecipients?: Array<{
|
|
53593
53616
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -53862,7 +53885,6 @@ export type GetAllProductsWithNotVoidedVariantsQueryQuery = {
|
|
|
53862
53885
|
authTokenType: number;
|
|
53863
53886
|
voucherCloneAddress: string;
|
|
53864
53887
|
active: boolean;
|
|
53865
|
-
contractURI: string;
|
|
53866
53888
|
metadataUri: string;
|
|
53867
53889
|
royaltyRecipients?: Array<{
|
|
53868
53890
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -54097,7 +54119,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
54097
54119
|
authTokenType: number;
|
|
54098
54120
|
voucherCloneAddress: string;
|
|
54099
54121
|
active: boolean;
|
|
54100
|
-
contractURI: string;
|
|
54101
54122
|
metadataUri: string;
|
|
54102
54123
|
royaltyRecipients?: Array<{
|
|
54103
54124
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -54239,7 +54260,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
54239
54260
|
authTokenType: number;
|
|
54240
54261
|
voucherCloneAddress: string;
|
|
54241
54262
|
active: boolean;
|
|
54242
|
-
contractURI: string;
|
|
54243
54263
|
metadataUri: string;
|
|
54244
54264
|
royaltyRecipients?: Array<{
|
|
54245
54265
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -54322,9 +54342,13 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
54322
54342
|
id: string;
|
|
54323
54343
|
sellerId: string;
|
|
54324
54344
|
collectionIndex: string;
|
|
54325
|
-
collectionAddress: string;
|
|
54326
54345
|
externalIdHash: string;
|
|
54327
54346
|
externalId: string;
|
|
54347
|
+
collectionContract: {
|
|
54348
|
+
__typename?: "CollectionContract";
|
|
54349
|
+
address: string;
|
|
54350
|
+
contractUri: string;
|
|
54351
|
+
};
|
|
54328
54352
|
metadata?: {
|
|
54329
54353
|
__typename?: "NftContractMetadata";
|
|
54330
54354
|
id: string;
|
|
@@ -54456,7 +54480,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
54456
54480
|
authTokenType: number;
|
|
54457
54481
|
voucherCloneAddress: string;
|
|
54458
54482
|
active: boolean;
|
|
54459
|
-
contractURI: string;
|
|
54460
54483
|
metadataUri: string;
|
|
54461
54484
|
royaltyRecipients?: Array<{
|
|
54462
54485
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -54690,7 +54713,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
54690
54713
|
authTokenType: number;
|
|
54691
54714
|
voucherCloneAddress: string;
|
|
54692
54715
|
active: boolean;
|
|
54693
|
-
contractURI: string;
|
|
54694
54716
|
metadataUri: string;
|
|
54695
54717
|
royaltyRecipients?: Array<{
|
|
54696
54718
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -55066,7 +55088,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
55066
55088
|
authTokenType: number;
|
|
55067
55089
|
voucherCloneAddress: string;
|
|
55068
55090
|
active: boolean;
|
|
55069
|
-
contractURI: string;
|
|
55070
55091
|
metadataUri: string;
|
|
55071
55092
|
royaltyRecipients?: Array<{
|
|
55072
55093
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -55210,7 +55231,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
55210
55231
|
authTokenType: number;
|
|
55211
55232
|
voucherCloneAddress: string;
|
|
55212
55233
|
active: boolean;
|
|
55213
|
-
contractURI: string;
|
|
55214
55234
|
metadataUri: string;
|
|
55215
55235
|
royaltyRecipients?: Array<{
|
|
55216
55236
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -55340,7 +55360,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
55340
55360
|
authTokenType: number;
|
|
55341
55361
|
voucherCloneAddress: string;
|
|
55342
55362
|
active: boolean;
|
|
55343
|
-
contractURI: string;
|
|
55344
55363
|
metadataUri: string;
|
|
55345
55364
|
royaltyRecipients?: Array<{
|
|
55346
55365
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -55545,7 +55564,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
55545
55564
|
authTokenType: number;
|
|
55546
55565
|
voucherCloneAddress: string;
|
|
55547
55566
|
active: boolean;
|
|
55548
|
-
contractURI: string;
|
|
55549
55567
|
metadataUri: string;
|
|
55550
55568
|
royaltyRecipients?: Array<{
|
|
55551
55569
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -55689,7 +55707,6 @@ export type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
55689
55707
|
authTokenType: number;
|
|
55690
55708
|
voucherCloneAddress: string;
|
|
55691
55709
|
active: boolean;
|
|
55692
|
-
contractURI: string;
|
|
55693
55710
|
metadataUri: string;
|
|
55694
55711
|
royaltyRecipients?: Array<{
|
|
55695
55712
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -55896,7 +55913,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
55896
55913
|
authTokenType: number;
|
|
55897
55914
|
voucherCloneAddress: string;
|
|
55898
55915
|
active: boolean;
|
|
55899
|
-
contractURI: string;
|
|
55900
55916
|
metadataUri: string;
|
|
55901
55917
|
royaltyRecipients?: Array<{
|
|
55902
55918
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -56038,7 +56054,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
56038
56054
|
authTokenType: number;
|
|
56039
56055
|
voucherCloneAddress: string;
|
|
56040
56056
|
active: boolean;
|
|
56041
|
-
contractURI: string;
|
|
56042
56057
|
metadataUri: string;
|
|
56043
56058
|
royaltyRecipients?: Array<{
|
|
56044
56059
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -56121,9 +56136,13 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
56121
56136
|
id: string;
|
|
56122
56137
|
sellerId: string;
|
|
56123
56138
|
collectionIndex: string;
|
|
56124
|
-
collectionAddress: string;
|
|
56125
56139
|
externalIdHash: string;
|
|
56126
56140
|
externalId: string;
|
|
56141
|
+
collectionContract: {
|
|
56142
|
+
__typename?: "CollectionContract";
|
|
56143
|
+
address: string;
|
|
56144
|
+
contractUri: string;
|
|
56145
|
+
};
|
|
56127
56146
|
metadata?: {
|
|
56128
56147
|
__typename?: "NftContractMetadata";
|
|
56129
56148
|
id: string;
|
|
@@ -56255,7 +56274,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
56255
56274
|
authTokenType: number;
|
|
56256
56275
|
voucherCloneAddress: string;
|
|
56257
56276
|
active: boolean;
|
|
56258
|
-
contractURI: string;
|
|
56259
56277
|
metadataUri: string;
|
|
56260
56278
|
royaltyRecipients?: Array<{
|
|
56261
56279
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -56489,7 +56507,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
56489
56507
|
authTokenType: number;
|
|
56490
56508
|
voucherCloneAddress: string;
|
|
56491
56509
|
active: boolean;
|
|
56492
|
-
contractURI: string;
|
|
56493
56510
|
metadataUri: string;
|
|
56494
56511
|
royaltyRecipients?: Array<{
|
|
56495
56512
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -56865,7 +56882,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
56865
56882
|
authTokenType: number;
|
|
56866
56883
|
voucherCloneAddress: string;
|
|
56867
56884
|
active: boolean;
|
|
56868
|
-
contractURI: string;
|
|
56869
56885
|
metadataUri: string;
|
|
56870
56886
|
royaltyRecipients?: Array<{
|
|
56871
56887
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -57009,7 +57025,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
57009
57025
|
authTokenType: number;
|
|
57010
57026
|
voucherCloneAddress: string;
|
|
57011
57027
|
active: boolean;
|
|
57012
|
-
contractURI: string;
|
|
57013
57028
|
metadataUri: string;
|
|
57014
57029
|
royaltyRecipients?: Array<{
|
|
57015
57030
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -57139,7 +57154,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
57139
57154
|
authTokenType: number;
|
|
57140
57155
|
voucherCloneAddress: string;
|
|
57141
57156
|
active: boolean;
|
|
57142
|
-
contractURI: string;
|
|
57143
57157
|
metadataUri: string;
|
|
57144
57158
|
royaltyRecipients?: Array<{
|
|
57145
57159
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -57344,7 +57358,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
57344
57358
|
authTokenType: number;
|
|
57345
57359
|
voucherCloneAddress: string;
|
|
57346
57360
|
active: boolean;
|
|
57347
|
-
contractURI: string;
|
|
57348
57361
|
metadataUri: string;
|
|
57349
57362
|
royaltyRecipients?: Array<{
|
|
57350
57363
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -57488,7 +57501,6 @@ export type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
57488
57501
|
authTokenType: number;
|
|
57489
57502
|
voucherCloneAddress: string;
|
|
57490
57503
|
active: boolean;
|
|
57491
|
-
contractURI: string;
|
|
57492
57504
|
metadataUri: string;
|
|
57493
57505
|
royaltyRecipients?: Array<{
|
|
57494
57506
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -57686,7 +57698,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
57686
57698
|
authTokenType: number;
|
|
57687
57699
|
voucherCloneAddress: string;
|
|
57688
57700
|
active: boolean;
|
|
57689
|
-
contractURI: string;
|
|
57690
57701
|
metadataUri: string;
|
|
57691
57702
|
royaltyRecipients?: Array<{
|
|
57692
57703
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -57828,7 +57839,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
57828
57839
|
authTokenType: number;
|
|
57829
57840
|
voucherCloneAddress: string;
|
|
57830
57841
|
active: boolean;
|
|
57831
|
-
contractURI: string;
|
|
57832
57842
|
metadataUri: string;
|
|
57833
57843
|
royaltyRecipients?: Array<{
|
|
57834
57844
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -57911,9 +57921,13 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
57911
57921
|
id: string;
|
|
57912
57922
|
sellerId: string;
|
|
57913
57923
|
collectionIndex: string;
|
|
57914
|
-
collectionAddress: string;
|
|
57915
57924
|
externalIdHash: string;
|
|
57916
57925
|
externalId: string;
|
|
57926
|
+
collectionContract: {
|
|
57927
|
+
__typename?: "CollectionContract";
|
|
57928
|
+
address: string;
|
|
57929
|
+
contractUri: string;
|
|
57930
|
+
};
|
|
57917
57931
|
metadata?: {
|
|
57918
57932
|
__typename?: "NftContractMetadata";
|
|
57919
57933
|
id: string;
|
|
@@ -58045,7 +58059,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
58045
58059
|
authTokenType: number;
|
|
58046
58060
|
voucherCloneAddress: string;
|
|
58047
58061
|
active: boolean;
|
|
58048
|
-
contractURI: string;
|
|
58049
58062
|
metadataUri: string;
|
|
58050
58063
|
royaltyRecipients?: Array<{
|
|
58051
58064
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -58279,7 +58292,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
58279
58292
|
authTokenType: number;
|
|
58280
58293
|
voucherCloneAddress: string;
|
|
58281
58294
|
active: boolean;
|
|
58282
|
-
contractURI: string;
|
|
58283
58295
|
metadataUri: string;
|
|
58284
58296
|
royaltyRecipients?: Array<{
|
|
58285
58297
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -58655,7 +58667,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
58655
58667
|
authTokenType: number;
|
|
58656
58668
|
voucherCloneAddress: string;
|
|
58657
58669
|
active: boolean;
|
|
58658
|
-
contractURI: string;
|
|
58659
58670
|
metadataUri: string;
|
|
58660
58671
|
royaltyRecipients?: Array<{
|
|
58661
58672
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -58799,7 +58810,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
58799
58810
|
authTokenType: number;
|
|
58800
58811
|
voucherCloneAddress: string;
|
|
58801
58812
|
active: boolean;
|
|
58802
|
-
contractURI: string;
|
|
58803
58813
|
metadataUri: string;
|
|
58804
58814
|
royaltyRecipients?: Array<{
|
|
58805
58815
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -58929,7 +58939,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
58929
58939
|
authTokenType: number;
|
|
58930
58940
|
voucherCloneAddress: string;
|
|
58931
58941
|
active: boolean;
|
|
58932
|
-
contractURI: string;
|
|
58933
58942
|
metadataUri: string;
|
|
58934
58943
|
royaltyRecipients?: Array<{
|
|
58935
58944
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -59134,7 +59143,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
59134
59143
|
authTokenType: number;
|
|
59135
59144
|
voucherCloneAddress: string;
|
|
59136
59145
|
active: boolean;
|
|
59137
|
-
contractURI: string;
|
|
59138
59146
|
metadataUri: string;
|
|
59139
59147
|
royaltyRecipients?: Array<{
|
|
59140
59148
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -59278,7 +59286,6 @@ export type ProductV1MetadataEntityFieldsFragment = {
|
|
|
59278
59286
|
authTokenType: number;
|
|
59279
59287
|
voucherCloneAddress: string;
|
|
59280
59288
|
active: boolean;
|
|
59281
|
-
contractURI: string;
|
|
59282
59289
|
metadataUri: string;
|
|
59283
59290
|
royaltyRecipients?: Array<{
|
|
59284
59291
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -59475,7 +59482,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
59475
59482
|
authTokenType: number;
|
|
59476
59483
|
voucherCloneAddress: string;
|
|
59477
59484
|
active: boolean;
|
|
59478
|
-
contractURI: string;
|
|
59479
59485
|
metadataUri: string;
|
|
59480
59486
|
royaltyRecipients?: Array<{
|
|
59481
59487
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -59617,7 +59623,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
59617
59623
|
authTokenType: number;
|
|
59618
59624
|
voucherCloneAddress: string;
|
|
59619
59625
|
active: boolean;
|
|
59620
|
-
contractURI: string;
|
|
59621
59626
|
metadataUri: string;
|
|
59622
59627
|
royaltyRecipients?: Array<{
|
|
59623
59628
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -59700,9 +59705,13 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
59700
59705
|
id: string;
|
|
59701
59706
|
sellerId: string;
|
|
59702
59707
|
collectionIndex: string;
|
|
59703
|
-
collectionAddress: string;
|
|
59704
59708
|
externalIdHash: string;
|
|
59705
59709
|
externalId: string;
|
|
59710
|
+
collectionContract: {
|
|
59711
|
+
__typename?: "CollectionContract";
|
|
59712
|
+
address: string;
|
|
59713
|
+
contractUri: string;
|
|
59714
|
+
};
|
|
59706
59715
|
metadata?: {
|
|
59707
59716
|
__typename?: "NftContractMetadata";
|
|
59708
59717
|
id: string;
|
|
@@ -59834,7 +59843,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
59834
59843
|
authTokenType: number;
|
|
59835
59844
|
voucherCloneAddress: string;
|
|
59836
59845
|
active: boolean;
|
|
59837
|
-
contractURI: string;
|
|
59838
59846
|
metadataUri: string;
|
|
59839
59847
|
royaltyRecipients?: Array<{
|
|
59840
59848
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -60068,7 +60076,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
60068
60076
|
authTokenType: number;
|
|
60069
60077
|
voucherCloneAddress: string;
|
|
60070
60078
|
active: boolean;
|
|
60071
|
-
contractURI: string;
|
|
60072
60079
|
metadataUri: string;
|
|
60073
60080
|
royaltyRecipients?: Array<{
|
|
60074
60081
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -60444,7 +60451,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
60444
60451
|
authTokenType: number;
|
|
60445
60452
|
voucherCloneAddress: string;
|
|
60446
60453
|
active: boolean;
|
|
60447
|
-
contractURI: string;
|
|
60448
60454
|
metadataUri: string;
|
|
60449
60455
|
royaltyRecipients?: Array<{
|
|
60450
60456
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -60588,7 +60594,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
60588
60594
|
authTokenType: number;
|
|
60589
60595
|
voucherCloneAddress: string;
|
|
60590
60596
|
active: boolean;
|
|
60591
|
-
contractURI: string;
|
|
60592
60597
|
metadataUri: string;
|
|
60593
60598
|
royaltyRecipients?: Array<{
|
|
60594
60599
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -60718,7 +60723,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
60718
60723
|
authTokenType: number;
|
|
60719
60724
|
voucherCloneAddress: string;
|
|
60720
60725
|
active: boolean;
|
|
60721
|
-
contractURI: string;
|
|
60722
60726
|
metadataUri: string;
|
|
60723
60727
|
royaltyRecipients?: Array<{
|
|
60724
60728
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -60923,7 +60927,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
60923
60927
|
authTokenType: number;
|
|
60924
60928
|
voucherCloneAddress: string;
|
|
60925
60929
|
active: boolean;
|
|
60926
|
-
contractURI: string;
|
|
60927
60930
|
metadataUri: string;
|
|
60928
60931
|
royaltyRecipients?: Array<{
|
|
60929
60932
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -61067,7 +61070,6 @@ export type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
61067
61070
|
authTokenType: number;
|
|
61068
61071
|
voucherCloneAddress: string;
|
|
61069
61072
|
active: boolean;
|
|
61070
|
-
contractURI: string;
|
|
61071
61073
|
metadataUri: string;
|
|
61072
61074
|
royaltyRecipients?: Array<{
|
|
61073
61075
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -61283,7 +61285,6 @@ export type BaseProductV1ProductFieldsFragment = {
|
|
|
61283
61285
|
authTokenType: number;
|
|
61284
61286
|
voucherCloneAddress: string;
|
|
61285
61287
|
active: boolean;
|
|
61286
|
-
contractURI: string;
|
|
61287
61288
|
metadataUri: string;
|
|
61288
61289
|
royaltyRecipients?: Array<{
|
|
61289
61290
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -61496,7 +61497,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
61496
61497
|
authTokenType: number;
|
|
61497
61498
|
voucherCloneAddress: string;
|
|
61498
61499
|
active: boolean;
|
|
61499
|
-
contractURI: string;
|
|
61500
61500
|
metadataUri: string;
|
|
61501
61501
|
royaltyRecipients?: Array<{
|
|
61502
61502
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -61638,7 +61638,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
61638
61638
|
authTokenType: number;
|
|
61639
61639
|
voucherCloneAddress: string;
|
|
61640
61640
|
active: boolean;
|
|
61641
|
-
contractURI: string;
|
|
61642
61641
|
metadataUri: string;
|
|
61643
61642
|
royaltyRecipients?: Array<{
|
|
61644
61643
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -61721,9 +61720,13 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
61721
61720
|
id: string;
|
|
61722
61721
|
sellerId: string;
|
|
61723
61722
|
collectionIndex: string;
|
|
61724
|
-
collectionAddress: string;
|
|
61725
61723
|
externalIdHash: string;
|
|
61726
61724
|
externalId: string;
|
|
61725
|
+
collectionContract: {
|
|
61726
|
+
__typename?: "CollectionContract";
|
|
61727
|
+
address: string;
|
|
61728
|
+
contractUri: string;
|
|
61729
|
+
};
|
|
61727
61730
|
metadata?: {
|
|
61728
61731
|
__typename?: "NftContractMetadata";
|
|
61729
61732
|
id: string;
|
|
@@ -61855,7 +61858,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
61855
61858
|
authTokenType: number;
|
|
61856
61859
|
voucherCloneAddress: string;
|
|
61857
61860
|
active: boolean;
|
|
61858
|
-
contractURI: string;
|
|
61859
61861
|
metadataUri: string;
|
|
61860
61862
|
royaltyRecipients?: Array<{
|
|
61861
61863
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -62089,7 +62091,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
62089
62091
|
authTokenType: number;
|
|
62090
62092
|
voucherCloneAddress: string;
|
|
62091
62093
|
active: boolean;
|
|
62092
|
-
contractURI: string;
|
|
62093
62094
|
metadataUri: string;
|
|
62094
62095
|
royaltyRecipients?: Array<{
|
|
62095
62096
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -62465,7 +62466,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
62465
62466
|
authTokenType: number;
|
|
62466
62467
|
voucherCloneAddress: string;
|
|
62467
62468
|
active: boolean;
|
|
62468
|
-
contractURI: string;
|
|
62469
62469
|
metadataUri: string;
|
|
62470
62470
|
royaltyRecipients?: Array<{
|
|
62471
62471
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -62609,7 +62609,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
62609
62609
|
authTokenType: number;
|
|
62610
62610
|
voucherCloneAddress: string;
|
|
62611
62611
|
active: boolean;
|
|
62612
|
-
contractURI: string;
|
|
62613
62612
|
metadataUri: string;
|
|
62614
62613
|
royaltyRecipients?: Array<{
|
|
62615
62614
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -62842,7 +62841,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
62842
62841
|
authTokenType: number;
|
|
62843
62842
|
voucherCloneAddress: string;
|
|
62844
62843
|
active: boolean;
|
|
62845
|
-
contractURI: string;
|
|
62846
62844
|
metadataUri: string;
|
|
62847
62845
|
royaltyRecipients?: Array<{
|
|
62848
62846
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -62984,7 +62982,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
62984
62982
|
authTokenType: number;
|
|
62985
62983
|
voucherCloneAddress: string;
|
|
62986
62984
|
active: boolean;
|
|
62987
|
-
contractURI: string;
|
|
62988
62985
|
metadataUri: string;
|
|
62989
62986
|
royaltyRecipients?: Array<{
|
|
62990
62987
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -63067,9 +63064,13 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
63067
63064
|
id: string;
|
|
63068
63065
|
sellerId: string;
|
|
63069
63066
|
collectionIndex: string;
|
|
63070
|
-
collectionAddress: string;
|
|
63071
63067
|
externalIdHash: string;
|
|
63072
63068
|
externalId: string;
|
|
63069
|
+
collectionContract: {
|
|
63070
|
+
__typename?: "CollectionContract";
|
|
63071
|
+
address: string;
|
|
63072
|
+
contractUri: string;
|
|
63073
|
+
};
|
|
63073
63074
|
metadata?: {
|
|
63074
63075
|
__typename?: "NftContractMetadata";
|
|
63075
63076
|
id: string;
|
|
@@ -63201,7 +63202,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
63201
63202
|
authTokenType: number;
|
|
63202
63203
|
voucherCloneAddress: string;
|
|
63203
63204
|
active: boolean;
|
|
63204
|
-
contractURI: string;
|
|
63205
63205
|
metadataUri: string;
|
|
63206
63206
|
royaltyRecipients?: Array<{
|
|
63207
63207
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -63435,7 +63435,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
63435
63435
|
authTokenType: number;
|
|
63436
63436
|
voucherCloneAddress: string;
|
|
63437
63437
|
active: boolean;
|
|
63438
|
-
contractURI: string;
|
|
63439
63438
|
metadataUri: string;
|
|
63440
63439
|
royaltyRecipients?: Array<{
|
|
63441
63440
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -63811,7 +63810,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
63811
63810
|
authTokenType: number;
|
|
63812
63811
|
voucherCloneAddress: string;
|
|
63813
63812
|
active: boolean;
|
|
63814
|
-
contractURI: string;
|
|
63815
63813
|
metadataUri: string;
|
|
63816
63814
|
royaltyRecipients?: Array<{
|
|
63817
63815
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -63955,7 +63953,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
63955
63953
|
authTokenType: number;
|
|
63956
63954
|
voucherCloneAddress: string;
|
|
63957
63955
|
active: boolean;
|
|
63958
|
-
contractURI: string;
|
|
63959
63956
|
metadataUri: string;
|
|
63960
63957
|
royaltyRecipients?: Array<{
|
|
63961
63958
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -64085,7 +64082,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
64085
64082
|
authTokenType: number;
|
|
64086
64083
|
voucherCloneAddress: string;
|
|
64087
64084
|
active: boolean;
|
|
64088
|
-
contractURI: string;
|
|
64089
64085
|
metadataUri: string;
|
|
64090
64086
|
royaltyRecipients?: Array<{
|
|
64091
64087
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -64207,7 +64203,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
64207
64203
|
authTokenType: number;
|
|
64208
64204
|
voucherCloneAddress: string;
|
|
64209
64205
|
active: boolean;
|
|
64210
|
-
contractURI: string;
|
|
64211
64206
|
metadataUri: string;
|
|
64212
64207
|
royaltyRecipients?: Array<{
|
|
64213
64208
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -64447,7 +64442,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
64447
64442
|
authTokenType: number;
|
|
64448
64443
|
voucherCloneAddress: string;
|
|
64449
64444
|
active: boolean;
|
|
64450
|
-
contractURI: string;
|
|
64451
64445
|
metadataUri: string;
|
|
64452
64446
|
royaltyRecipients?: Array<{
|
|
64453
64447
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -64722,7 +64716,6 @@ export type BaseProductV1ProductWithVariantsFieldsFragment = {
|
|
|
64722
64716
|
authTokenType: number;
|
|
64723
64717
|
voucherCloneAddress: string;
|
|
64724
64718
|
active: boolean;
|
|
64725
|
-
contractURI: string;
|
|
64726
64719
|
metadataUri: string;
|
|
64727
64720
|
royaltyRecipients?: Array<{
|
|
64728
64721
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -64935,7 +64928,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
64935
64928
|
authTokenType: number;
|
|
64936
64929
|
voucherCloneAddress: string;
|
|
64937
64930
|
active: boolean;
|
|
64938
|
-
contractURI: string;
|
|
64939
64931
|
metadataUri: string;
|
|
64940
64932
|
royaltyRecipients?: Array<{
|
|
64941
64933
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -65077,7 +65069,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
65077
65069
|
authTokenType: number;
|
|
65078
65070
|
voucherCloneAddress: string;
|
|
65079
65071
|
active: boolean;
|
|
65080
|
-
contractURI: string;
|
|
65081
65072
|
metadataUri: string;
|
|
65082
65073
|
royaltyRecipients?: Array<{
|
|
65083
65074
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -65160,9 +65151,13 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
65160
65151
|
id: string;
|
|
65161
65152
|
sellerId: string;
|
|
65162
65153
|
collectionIndex: string;
|
|
65163
|
-
collectionAddress: string;
|
|
65164
65154
|
externalIdHash: string;
|
|
65165
65155
|
externalId: string;
|
|
65156
|
+
collectionContract: {
|
|
65157
|
+
__typename?: "CollectionContract";
|
|
65158
|
+
address: string;
|
|
65159
|
+
contractUri: string;
|
|
65160
|
+
};
|
|
65166
65161
|
metadata?: {
|
|
65167
65162
|
__typename?: "NftContractMetadata";
|
|
65168
65163
|
id: string;
|
|
@@ -65294,7 +65289,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
65294
65289
|
authTokenType: number;
|
|
65295
65290
|
voucherCloneAddress: string;
|
|
65296
65291
|
active: boolean;
|
|
65297
|
-
contractURI: string;
|
|
65298
65292
|
metadataUri: string;
|
|
65299
65293
|
royaltyRecipients?: Array<{
|
|
65300
65294
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -65528,7 +65522,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
65528
65522
|
authTokenType: number;
|
|
65529
65523
|
voucherCloneAddress: string;
|
|
65530
65524
|
active: boolean;
|
|
65531
|
-
contractURI: string;
|
|
65532
65525
|
metadataUri: string;
|
|
65533
65526
|
royaltyRecipients?: Array<{
|
|
65534
65527
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -65904,7 +65897,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
65904
65897
|
authTokenType: number;
|
|
65905
65898
|
voucherCloneAddress: string;
|
|
65906
65899
|
active: boolean;
|
|
65907
|
-
contractURI: string;
|
|
65908
65900
|
metadataUri: string;
|
|
65909
65901
|
royaltyRecipients?: Array<{
|
|
65910
65902
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -66048,7 +66040,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
66048
66040
|
authTokenType: number;
|
|
66049
66041
|
voucherCloneAddress: string;
|
|
66050
66042
|
active: boolean;
|
|
66051
|
-
contractURI: string;
|
|
66052
66043
|
metadataUri: string;
|
|
66053
66044
|
royaltyRecipients?: Array<{
|
|
66054
66045
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -66281,7 +66272,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
66281
66272
|
authTokenType: number;
|
|
66282
66273
|
voucherCloneAddress: string;
|
|
66283
66274
|
active: boolean;
|
|
66284
|
-
contractURI: string;
|
|
66285
66275
|
metadataUri: string;
|
|
66286
66276
|
royaltyRecipients?: Array<{
|
|
66287
66277
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -66423,7 +66413,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
66423
66413
|
authTokenType: number;
|
|
66424
66414
|
voucherCloneAddress: string;
|
|
66425
66415
|
active: boolean;
|
|
66426
|
-
contractURI: string;
|
|
66427
66416
|
metadataUri: string;
|
|
66428
66417
|
royaltyRecipients?: Array<{
|
|
66429
66418
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -66506,9 +66495,13 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
66506
66495
|
id: string;
|
|
66507
66496
|
sellerId: string;
|
|
66508
66497
|
collectionIndex: string;
|
|
66509
|
-
collectionAddress: string;
|
|
66510
66498
|
externalIdHash: string;
|
|
66511
66499
|
externalId: string;
|
|
66500
|
+
collectionContract: {
|
|
66501
|
+
__typename?: "CollectionContract";
|
|
66502
|
+
address: string;
|
|
66503
|
+
contractUri: string;
|
|
66504
|
+
};
|
|
66512
66505
|
metadata?: {
|
|
66513
66506
|
__typename?: "NftContractMetadata";
|
|
66514
66507
|
id: string;
|
|
@@ -66640,7 +66633,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
66640
66633
|
authTokenType: number;
|
|
66641
66634
|
voucherCloneAddress: string;
|
|
66642
66635
|
active: boolean;
|
|
66643
|
-
contractURI: string;
|
|
66644
66636
|
metadataUri: string;
|
|
66645
66637
|
royaltyRecipients?: Array<{
|
|
66646
66638
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -66874,7 +66866,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
66874
66866
|
authTokenType: number;
|
|
66875
66867
|
voucherCloneAddress: string;
|
|
66876
66868
|
active: boolean;
|
|
66877
|
-
contractURI: string;
|
|
66878
66869
|
metadataUri: string;
|
|
66879
66870
|
royaltyRecipients?: Array<{
|
|
66880
66871
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -67250,7 +67241,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
67250
67241
|
authTokenType: number;
|
|
67251
67242
|
voucherCloneAddress: string;
|
|
67252
67243
|
active: boolean;
|
|
67253
|
-
contractURI: string;
|
|
67254
67244
|
metadataUri: string;
|
|
67255
67245
|
royaltyRecipients?: Array<{
|
|
67256
67246
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -67394,7 +67384,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
67394
67384
|
authTokenType: number;
|
|
67395
67385
|
voucherCloneAddress: string;
|
|
67396
67386
|
active: boolean;
|
|
67397
|
-
contractURI: string;
|
|
67398
67387
|
metadataUri: string;
|
|
67399
67388
|
royaltyRecipients?: Array<{
|
|
67400
67389
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -67524,7 +67513,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
67524
67513
|
authTokenType: number;
|
|
67525
67514
|
voucherCloneAddress: string;
|
|
67526
67515
|
active: boolean;
|
|
67527
|
-
contractURI: string;
|
|
67528
67516
|
metadataUri: string;
|
|
67529
67517
|
royaltyRecipients?: Array<{
|
|
67530
67518
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -67646,7 +67634,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
67646
67634
|
authTokenType: number;
|
|
67647
67635
|
voucherCloneAddress: string;
|
|
67648
67636
|
active: boolean;
|
|
67649
|
-
contractURI: string;
|
|
67650
67637
|
metadataUri: string;
|
|
67651
67638
|
royaltyRecipients?: Array<{
|
|
67652
67639
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -67886,7 +67873,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
67886
67873
|
authTokenType: number;
|
|
67887
67874
|
voucherCloneAddress: string;
|
|
67888
67875
|
active: boolean;
|
|
67889
|
-
contractURI: string;
|
|
67890
67876
|
metadataUri: string;
|
|
67891
67877
|
royaltyRecipients?: Array<{
|
|
67892
67878
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -68161,7 +68147,6 @@ export type BaseProductV1ProductWithNotVoidedVariantsFieldsFragment = {
|
|
|
68161
68147
|
authTokenType: number;
|
|
68162
68148
|
voucherCloneAddress: string;
|
|
68163
68149
|
active: boolean;
|
|
68164
|
-
contractURI: string;
|
|
68165
68150
|
metadataUri: string;
|
|
68166
68151
|
royaltyRecipients?: Array<{
|
|
68167
68152
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -68339,7 +68324,6 @@ export type BaseProductV1SellerFieldsFragment = {
|
|
|
68339
68324
|
authTokenType: number;
|
|
68340
68325
|
voucherCloneAddress: string;
|
|
68341
68326
|
active: boolean;
|
|
68342
|
-
contractURI: string;
|
|
68343
68327
|
metadataUri: string;
|
|
68344
68328
|
royaltyRecipients?: Array<{
|
|
68345
68329
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -68584,7 +68568,6 @@ export type GetOfferByIdQueryQuery = {
|
|
|
68584
68568
|
authTokenType: number;
|
|
68585
68569
|
voucherCloneAddress: string;
|
|
68586
68570
|
active: boolean;
|
|
68587
|
-
contractURI: string;
|
|
68588
68571
|
metadataUri: string;
|
|
68589
68572
|
royaltyRecipients?: Array<{
|
|
68590
68573
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -68726,7 +68709,6 @@ export type GetOfferByIdQueryQuery = {
|
|
|
68726
68709
|
authTokenType: number;
|
|
68727
68710
|
voucherCloneAddress: string;
|
|
68728
68711
|
active: boolean;
|
|
68729
|
-
contractURI: string;
|
|
68730
68712
|
metadataUri: string;
|
|
68731
68713
|
royaltyRecipients?: Array<{
|
|
68732
68714
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -68809,9 +68791,13 @@ export type GetOfferByIdQueryQuery = {
|
|
|
68809
68791
|
id: string;
|
|
68810
68792
|
sellerId: string;
|
|
68811
68793
|
collectionIndex: string;
|
|
68812
|
-
collectionAddress: string;
|
|
68813
68794
|
externalIdHash: string;
|
|
68814
68795
|
externalId: string;
|
|
68796
|
+
collectionContract: {
|
|
68797
|
+
__typename?: "CollectionContract";
|
|
68798
|
+
address: string;
|
|
68799
|
+
contractUri: string;
|
|
68800
|
+
};
|
|
68815
68801
|
metadata?: {
|
|
68816
68802
|
__typename?: "NftContractMetadata";
|
|
68817
68803
|
id: string;
|
|
@@ -68943,7 +68929,6 @@ export type GetOfferByIdQueryQuery = {
|
|
|
68943
68929
|
authTokenType: number;
|
|
68944
68930
|
voucherCloneAddress: string;
|
|
68945
68931
|
active: boolean;
|
|
68946
|
-
contractURI: string;
|
|
68947
68932
|
metadataUri: string;
|
|
68948
68933
|
royaltyRecipients?: Array<{
|
|
68949
68934
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -69177,7 +69162,6 @@ export type GetOfferByIdQueryQuery = {
|
|
|
69177
69162
|
authTokenType: number;
|
|
69178
69163
|
voucherCloneAddress: string;
|
|
69179
69164
|
active: boolean;
|
|
69180
|
-
contractURI: string;
|
|
69181
69165
|
metadataUri: string;
|
|
69182
69166
|
royaltyRecipients?: Array<{
|
|
69183
69167
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -69553,7 +69537,6 @@ export type GetOfferByIdQueryQuery = {
|
|
|
69553
69537
|
authTokenType: number;
|
|
69554
69538
|
voucherCloneAddress: string;
|
|
69555
69539
|
active: boolean;
|
|
69556
|
-
contractURI: string;
|
|
69557
69540
|
metadataUri: string;
|
|
69558
69541
|
royaltyRecipients?: Array<{
|
|
69559
69542
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -69697,7 +69680,6 @@ export type GetOfferByIdQueryQuery = {
|
|
|
69697
69680
|
authTokenType: number;
|
|
69698
69681
|
voucherCloneAddress: string;
|
|
69699
69682
|
active: boolean;
|
|
69700
|
-
contractURI: string;
|
|
69701
69683
|
metadataUri: string;
|
|
69702
69684
|
royaltyRecipients?: Array<{
|
|
69703
69685
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -69906,7 +69888,6 @@ export type GetOffersQueryQuery = {
|
|
|
69906
69888
|
authTokenType: number;
|
|
69907
69889
|
voucherCloneAddress: string;
|
|
69908
69890
|
active: boolean;
|
|
69909
|
-
contractURI: string;
|
|
69910
69891
|
metadataUri: string;
|
|
69911
69892
|
royaltyRecipients?: Array<{
|
|
69912
69893
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -70048,7 +70029,6 @@ export type GetOffersQueryQuery = {
|
|
|
70048
70029
|
authTokenType: number;
|
|
70049
70030
|
voucherCloneAddress: string;
|
|
70050
70031
|
active: boolean;
|
|
70051
|
-
contractURI: string;
|
|
70052
70032
|
metadataUri: string;
|
|
70053
70033
|
royaltyRecipients?: Array<{
|
|
70054
70034
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -70131,9 +70111,13 @@ export type GetOffersQueryQuery = {
|
|
|
70131
70111
|
id: string;
|
|
70132
70112
|
sellerId: string;
|
|
70133
70113
|
collectionIndex: string;
|
|
70134
|
-
collectionAddress: string;
|
|
70135
70114
|
externalIdHash: string;
|
|
70136
70115
|
externalId: string;
|
|
70116
|
+
collectionContract: {
|
|
70117
|
+
__typename?: "CollectionContract";
|
|
70118
|
+
address: string;
|
|
70119
|
+
contractUri: string;
|
|
70120
|
+
};
|
|
70137
70121
|
metadata?: {
|
|
70138
70122
|
__typename?: "NftContractMetadata";
|
|
70139
70123
|
id: string;
|
|
@@ -70265,7 +70249,6 @@ export type GetOffersQueryQuery = {
|
|
|
70265
70249
|
authTokenType: number;
|
|
70266
70250
|
voucherCloneAddress: string;
|
|
70267
70251
|
active: boolean;
|
|
70268
|
-
contractURI: string;
|
|
70269
70252
|
metadataUri: string;
|
|
70270
70253
|
royaltyRecipients?: Array<{
|
|
70271
70254
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -70499,7 +70482,6 @@ export type GetOffersQueryQuery = {
|
|
|
70499
70482
|
authTokenType: number;
|
|
70500
70483
|
voucherCloneAddress: string;
|
|
70501
70484
|
active: boolean;
|
|
70502
|
-
contractURI: string;
|
|
70503
70485
|
metadataUri: string;
|
|
70504
70486
|
royaltyRecipients?: Array<{
|
|
70505
70487
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -70875,7 +70857,6 @@ export type GetOffersQueryQuery = {
|
|
|
70875
70857
|
authTokenType: number;
|
|
70876
70858
|
voucherCloneAddress: string;
|
|
70877
70859
|
active: boolean;
|
|
70878
|
-
contractURI: string;
|
|
70879
70860
|
metadataUri: string;
|
|
70880
70861
|
royaltyRecipients?: Array<{
|
|
70881
70862
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -71019,7 +71000,6 @@ export type GetOffersQueryQuery = {
|
|
|
71019
71000
|
authTokenType: number;
|
|
71020
71001
|
voucherCloneAddress: string;
|
|
71021
71002
|
active: boolean;
|
|
71022
|
-
contractURI: string;
|
|
71023
71003
|
metadataUri: string;
|
|
71024
71004
|
royaltyRecipients?: Array<{
|
|
71025
71005
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -71315,7 +71295,6 @@ export type OfferFieldsFragment = {
|
|
|
71315
71295
|
authTokenType: number;
|
|
71316
71296
|
voucherCloneAddress: string;
|
|
71317
71297
|
active: boolean;
|
|
71318
|
-
contractURI: string;
|
|
71319
71298
|
metadataUri: string;
|
|
71320
71299
|
royaltyRecipients?: Array<{
|
|
71321
71300
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -71457,7 +71436,6 @@ export type OfferFieldsFragment = {
|
|
|
71457
71436
|
authTokenType: number;
|
|
71458
71437
|
voucherCloneAddress: string;
|
|
71459
71438
|
active: boolean;
|
|
71460
|
-
contractURI: string;
|
|
71461
71439
|
metadataUri: string;
|
|
71462
71440
|
royaltyRecipients?: Array<{
|
|
71463
71441
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -71540,9 +71518,13 @@ export type OfferFieldsFragment = {
|
|
|
71540
71518
|
id: string;
|
|
71541
71519
|
sellerId: string;
|
|
71542
71520
|
collectionIndex: string;
|
|
71543
|
-
collectionAddress: string;
|
|
71544
71521
|
externalIdHash: string;
|
|
71545
71522
|
externalId: string;
|
|
71523
|
+
collectionContract: {
|
|
71524
|
+
__typename?: "CollectionContract";
|
|
71525
|
+
address: string;
|
|
71526
|
+
contractUri: string;
|
|
71527
|
+
};
|
|
71546
71528
|
metadata?: {
|
|
71547
71529
|
__typename?: "NftContractMetadata";
|
|
71548
71530
|
id: string;
|
|
@@ -71674,7 +71656,6 @@ export type OfferFieldsFragment = {
|
|
|
71674
71656
|
authTokenType: number;
|
|
71675
71657
|
voucherCloneAddress: string;
|
|
71676
71658
|
active: boolean;
|
|
71677
|
-
contractURI: string;
|
|
71678
71659
|
metadataUri: string;
|
|
71679
71660
|
royaltyRecipients?: Array<{
|
|
71680
71661
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -71908,7 +71889,6 @@ export type OfferFieldsFragment = {
|
|
|
71908
71889
|
authTokenType: number;
|
|
71909
71890
|
voucherCloneAddress: string;
|
|
71910
71891
|
active: boolean;
|
|
71911
|
-
contractURI: string;
|
|
71912
71892
|
metadataUri: string;
|
|
71913
71893
|
royaltyRecipients?: Array<{
|
|
71914
71894
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -72284,7 +72264,6 @@ export type OfferFieldsFragment = {
|
|
|
72284
72264
|
authTokenType: number;
|
|
72285
72265
|
voucherCloneAddress: string;
|
|
72286
72266
|
active: boolean;
|
|
72287
|
-
contractURI: string;
|
|
72288
72267
|
metadataUri: string;
|
|
72289
72268
|
royaltyRecipients?: Array<{
|
|
72290
72269
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -72428,7 +72407,6 @@ export type OfferFieldsFragment = {
|
|
|
72428
72407
|
authTokenType: number;
|
|
72429
72408
|
voucherCloneAddress: string;
|
|
72430
72409
|
active: boolean;
|
|
72431
|
-
contractURI: string;
|
|
72432
72410
|
metadataUri: string;
|
|
72433
72411
|
royaltyRecipients?: Array<{
|
|
72434
72412
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -72638,7 +72616,6 @@ export type BaseOfferFieldsFragment = {
|
|
|
72638
72616
|
authTokenType: number;
|
|
72639
72617
|
voucherCloneAddress: string;
|
|
72640
72618
|
active: boolean;
|
|
72641
|
-
contractURI: string;
|
|
72642
72619
|
metadataUri: string;
|
|
72643
72620
|
royaltyRecipients?: Array<{
|
|
72644
72621
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -72721,9 +72698,13 @@ export type BaseOfferFieldsFragment = {
|
|
|
72721
72698
|
id: string;
|
|
72722
72699
|
sellerId: string;
|
|
72723
72700
|
collectionIndex: string;
|
|
72724
|
-
collectionAddress: string;
|
|
72725
72701
|
externalIdHash: string;
|
|
72726
72702
|
externalId: string;
|
|
72703
|
+
collectionContract: {
|
|
72704
|
+
__typename?: "CollectionContract";
|
|
72705
|
+
address: string;
|
|
72706
|
+
contractUri: string;
|
|
72707
|
+
};
|
|
72727
72708
|
metadata?: {
|
|
72728
72709
|
__typename?: "NftContractMetadata";
|
|
72729
72710
|
id: string;
|
|
@@ -72855,7 +72836,6 @@ export type BaseOfferFieldsFragment = {
|
|
|
72855
72836
|
authTokenType: number;
|
|
72856
72837
|
voucherCloneAddress: string;
|
|
72857
72838
|
active: boolean;
|
|
72858
|
-
contractURI: string;
|
|
72859
72839
|
metadataUri: string;
|
|
72860
72840
|
royaltyRecipients?: Array<{
|
|
72861
72841
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -73089,7 +73069,6 @@ export type BaseOfferFieldsFragment = {
|
|
|
73089
73069
|
authTokenType: number;
|
|
73090
73070
|
voucherCloneAddress: string;
|
|
73091
73071
|
active: boolean;
|
|
73092
|
-
contractURI: string;
|
|
73093
73072
|
metadataUri: string;
|
|
73094
73073
|
royaltyRecipients?: Array<{
|
|
73095
73074
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -73465,7 +73444,6 @@ export type BaseOfferFieldsFragment = {
|
|
|
73465
73444
|
authTokenType: number;
|
|
73466
73445
|
voucherCloneAddress: string;
|
|
73467
73446
|
active: boolean;
|
|
73468
|
-
contractURI: string;
|
|
73469
73447
|
metadataUri: string;
|
|
73470
73448
|
royaltyRecipients?: Array<{
|
|
73471
73449
|
__typename?: "RoyaltyRecipientXSeller";
|
|
@@ -73609,7 +73587,6 @@ export type BaseOfferFieldsFragment = {
|
|
|
73609
73587
|
authTokenType: number;
|
|
73610
73588
|
voucherCloneAddress: string;
|
|
73611
73589
|
active: boolean;
|
|
73612
|
-
contractURI: string;
|
|
73613
73590
|
metadataUri: string;
|
|
73614
73591
|
royaltyRecipients?: Array<{
|
|
73615
73592
|
__typename?: "RoyaltyRecipientXSeller";
|