@bosonprotocol/core-sdk 1.18.0-alpha.6 → 1.18.0-alpha.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/subgraph.d.ts +201 -0
- package/dist/cjs/subgraph.d.ts.map +1 -1
- package/dist/cjs/subgraph.js +4 -0
- package/dist/cjs/subgraph.js.map +1 -1
- package/dist/esm/subgraph.d.ts +201 -0
- package/dist/esm/subgraph.d.ts.map +1 -1
- package/dist/esm/subgraph.js +4 -0
- package/dist/esm/subgraph.js.map +1 -1
- package/package.json +3 -3
- package/src/accounts/queries.graphql +2 -0
- package/src/subgraph.ts +203 -0
package/dist/cjs/subgraph.d.ts
CHANGED
|
@@ -6002,12 +6002,15 @@ export declare type Seller = Account & {
|
|
|
6002
6002
|
authTokenId: Scalars["BigInt"];
|
|
6003
6003
|
authTokenType: Scalars["Int"];
|
|
6004
6004
|
clerk: Scalars["Bytes"];
|
|
6005
|
+
contractURI: Scalars["String"];
|
|
6005
6006
|
exchanges: Array<Exchange>;
|
|
6006
6007
|
funds: Array<FundsEntity>;
|
|
6007
6008
|
id: Scalars["ID"];
|
|
6008
6009
|
logs: Array<EventLog>;
|
|
6009
6010
|
offers: Array<Offer>;
|
|
6010
6011
|
operator: Scalars["Bytes"];
|
|
6012
|
+
/** Percentage as integer, to get decimals divide by 10000. E.g. 1 = 0.01%, 10000 = 100% */
|
|
6013
|
+
royaltyPercentage: Scalars["BigInt"];
|
|
6011
6014
|
sellerId: Scalars["BigInt"];
|
|
6012
6015
|
treasury: Scalars["Bytes"];
|
|
6013
6016
|
voucherCloneAddress: Scalars["Bytes"];
|
|
@@ -6075,6 +6078,26 @@ export declare type Seller_Filter = {
|
|
|
6075
6078
|
clerk_not?: InputMaybe<Scalars["Bytes"]>;
|
|
6076
6079
|
clerk_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
6077
6080
|
clerk_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
6081
|
+
contractURI?: InputMaybe<Scalars["String"]>;
|
|
6082
|
+
contractURI_contains?: InputMaybe<Scalars["String"]>;
|
|
6083
|
+
contractURI_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
6084
|
+
contractURI_ends_with?: InputMaybe<Scalars["String"]>;
|
|
6085
|
+
contractURI_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
6086
|
+
contractURI_gt?: InputMaybe<Scalars["String"]>;
|
|
6087
|
+
contractURI_gte?: InputMaybe<Scalars["String"]>;
|
|
6088
|
+
contractURI_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
6089
|
+
contractURI_lt?: InputMaybe<Scalars["String"]>;
|
|
6090
|
+
contractURI_lte?: InputMaybe<Scalars["String"]>;
|
|
6091
|
+
contractURI_not?: InputMaybe<Scalars["String"]>;
|
|
6092
|
+
contractURI_not_contains?: InputMaybe<Scalars["String"]>;
|
|
6093
|
+
contractURI_not_contains_nocase?: InputMaybe<Scalars["String"]>;
|
|
6094
|
+
contractURI_not_ends_with?: InputMaybe<Scalars["String"]>;
|
|
6095
|
+
contractURI_not_ends_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
6096
|
+
contractURI_not_in?: InputMaybe<Array<Scalars["String"]>>;
|
|
6097
|
+
contractURI_not_starts_with?: InputMaybe<Scalars["String"]>;
|
|
6098
|
+
contractURI_not_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
6099
|
+
contractURI_starts_with?: InputMaybe<Scalars["String"]>;
|
|
6100
|
+
contractURI_starts_with_nocase?: InputMaybe<Scalars["String"]>;
|
|
6078
6101
|
exchanges_?: InputMaybe<Exchange_Filter>;
|
|
6079
6102
|
funds_?: InputMaybe<FundsEntity_Filter>;
|
|
6080
6103
|
id?: InputMaybe<Scalars["ID"]>;
|
|
@@ -6092,6 +6115,14 @@ export declare type Seller_Filter = {
|
|
|
6092
6115
|
operator_not?: InputMaybe<Scalars["Bytes"]>;
|
|
6093
6116
|
operator_not_contains?: InputMaybe<Scalars["Bytes"]>;
|
|
6094
6117
|
operator_not_in?: InputMaybe<Array<Scalars["Bytes"]>>;
|
|
6118
|
+
royaltyPercentage?: InputMaybe<Scalars["BigInt"]>;
|
|
6119
|
+
royaltyPercentage_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
6120
|
+
royaltyPercentage_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
6121
|
+
royaltyPercentage_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
6122
|
+
royaltyPercentage_lt?: InputMaybe<Scalars["BigInt"]>;
|
|
6123
|
+
royaltyPercentage_lte?: InputMaybe<Scalars["BigInt"]>;
|
|
6124
|
+
royaltyPercentage_not?: InputMaybe<Scalars["BigInt"]>;
|
|
6125
|
+
royaltyPercentage_not_in?: InputMaybe<Array<Scalars["BigInt"]>>;
|
|
6095
6126
|
sellerId?: InputMaybe<Scalars["BigInt"]>;
|
|
6096
6127
|
sellerId_gt?: InputMaybe<Scalars["BigInt"]>;
|
|
6097
6128
|
sellerId_gte?: InputMaybe<Scalars["BigInt"]>;
|
|
@@ -6119,12 +6150,14 @@ export declare enum Seller_OrderBy {
|
|
|
6119
6150
|
AuthTokenId = "authTokenId",
|
|
6120
6151
|
AuthTokenType = "authTokenType",
|
|
6121
6152
|
Clerk = "clerk",
|
|
6153
|
+
ContractUri = "contractURI",
|
|
6122
6154
|
Exchanges = "exchanges",
|
|
6123
6155
|
Funds = "funds",
|
|
6124
6156
|
Id = "id",
|
|
6125
6157
|
Logs = "logs",
|
|
6126
6158
|
Offers = "offers",
|
|
6127
6159
|
Operator = "operator",
|
|
6160
|
+
RoyaltyPercentage = "royaltyPercentage",
|
|
6128
6161
|
SellerId = "sellerId",
|
|
6129
6162
|
Treasury = "treasury",
|
|
6130
6163
|
VoucherCloneAddress = "voucherCloneAddress"
|
|
@@ -6760,6 +6793,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
6760
6793
|
authTokenType: number;
|
|
6761
6794
|
voucherCloneAddress: string;
|
|
6762
6795
|
active: boolean;
|
|
6796
|
+
contractURI: string;
|
|
6797
|
+
royaltyPercentage: string;
|
|
6763
6798
|
funds?: Array<{
|
|
6764
6799
|
__typename?: "FundsEntity";
|
|
6765
6800
|
id: string;
|
|
@@ -6811,6 +6846,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
6811
6846
|
authTokenType: number;
|
|
6812
6847
|
voucherCloneAddress: string;
|
|
6813
6848
|
active: boolean;
|
|
6849
|
+
contractURI: string;
|
|
6850
|
+
royaltyPercentage: string;
|
|
6814
6851
|
};
|
|
6815
6852
|
exchangeToken: {
|
|
6816
6853
|
__typename?: "ExchangeToken";
|
|
@@ -7000,6 +7037,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
7000
7037
|
authTokenType: number;
|
|
7001
7038
|
voucherCloneAddress: string;
|
|
7002
7039
|
active: boolean;
|
|
7040
|
+
contractURI: string;
|
|
7041
|
+
royaltyPercentage: string;
|
|
7003
7042
|
};
|
|
7004
7043
|
};
|
|
7005
7044
|
exchangePolicy: {
|
|
@@ -7074,6 +7113,8 @@ export declare type GetSellerByIdQueryQuery = {
|
|
|
7074
7113
|
authTokenType: number;
|
|
7075
7114
|
voucherCloneAddress: string;
|
|
7076
7115
|
active: boolean;
|
|
7116
|
+
contractURI: string;
|
|
7117
|
+
royaltyPercentage: string;
|
|
7077
7118
|
};
|
|
7078
7119
|
}>;
|
|
7079
7120
|
logs?: Array<{
|
|
@@ -7224,6 +7265,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
7224
7265
|
authTokenType: number;
|
|
7225
7266
|
voucherCloneAddress: string;
|
|
7226
7267
|
active: boolean;
|
|
7268
|
+
contractURI: string;
|
|
7269
|
+
royaltyPercentage: string;
|
|
7227
7270
|
funds?: Array<{
|
|
7228
7271
|
__typename?: "FundsEntity";
|
|
7229
7272
|
id: string;
|
|
@@ -7275,6 +7318,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
7275
7318
|
authTokenType: number;
|
|
7276
7319
|
voucherCloneAddress: string;
|
|
7277
7320
|
active: boolean;
|
|
7321
|
+
contractURI: string;
|
|
7322
|
+
royaltyPercentage: string;
|
|
7278
7323
|
};
|
|
7279
7324
|
exchangeToken: {
|
|
7280
7325
|
__typename?: "ExchangeToken";
|
|
@@ -7464,6 +7509,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
7464
7509
|
authTokenType: number;
|
|
7465
7510
|
voucherCloneAddress: string;
|
|
7466
7511
|
active: boolean;
|
|
7512
|
+
contractURI: string;
|
|
7513
|
+
royaltyPercentage: string;
|
|
7467
7514
|
};
|
|
7468
7515
|
};
|
|
7469
7516
|
exchangePolicy: {
|
|
@@ -7538,6 +7585,8 @@ export declare type GetSellersQueryQuery = {
|
|
|
7538
7585
|
authTokenType: number;
|
|
7539
7586
|
voucherCloneAddress: string;
|
|
7540
7587
|
active: boolean;
|
|
7588
|
+
contractURI: string;
|
|
7589
|
+
royaltyPercentage: string;
|
|
7541
7590
|
};
|
|
7542
7591
|
}>;
|
|
7543
7592
|
logs?: Array<{
|
|
@@ -7732,6 +7781,8 @@ export declare type GetBuyerByIdQueryQuery = {
|
|
|
7732
7781
|
authTokenType: number;
|
|
7733
7782
|
voucherCloneAddress: string;
|
|
7734
7783
|
active: boolean;
|
|
7784
|
+
contractURI: string;
|
|
7785
|
+
royaltyPercentage: string;
|
|
7735
7786
|
};
|
|
7736
7787
|
}>;
|
|
7737
7788
|
logs?: Array<{
|
|
@@ -7936,6 +7987,8 @@ export declare type GetBuyersQueryQuery = {
|
|
|
7936
7987
|
authTokenType: number;
|
|
7937
7988
|
voucherCloneAddress: string;
|
|
7938
7989
|
active: boolean;
|
|
7990
|
+
contractURI: string;
|
|
7991
|
+
royaltyPercentage: string;
|
|
7939
7992
|
};
|
|
7940
7993
|
}>;
|
|
7941
7994
|
logs?: Array<{
|
|
@@ -8107,6 +8160,8 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
8107
8160
|
authTokenType: number;
|
|
8108
8161
|
voucherCloneAddress: string;
|
|
8109
8162
|
active: boolean;
|
|
8163
|
+
contractURI: string;
|
|
8164
|
+
royaltyPercentage: string;
|
|
8110
8165
|
};
|
|
8111
8166
|
exchangeToken: {
|
|
8112
8167
|
__typename?: "ExchangeToken";
|
|
@@ -8296,6 +8351,8 @@ export declare type GetDisputeResolverByIdQueryQuery = {
|
|
|
8296
8351
|
authTokenType: number;
|
|
8297
8352
|
voucherCloneAddress: string;
|
|
8298
8353
|
active: boolean;
|
|
8354
|
+
contractURI: string;
|
|
8355
|
+
royaltyPercentage: string;
|
|
8299
8356
|
};
|
|
8300
8357
|
};
|
|
8301
8358
|
exchangePolicy: {
|
|
@@ -8512,6 +8569,8 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
8512
8569
|
authTokenType: number;
|
|
8513
8570
|
voucherCloneAddress: string;
|
|
8514
8571
|
active: boolean;
|
|
8572
|
+
contractURI: string;
|
|
8573
|
+
royaltyPercentage: string;
|
|
8515
8574
|
};
|
|
8516
8575
|
exchangeToken: {
|
|
8517
8576
|
__typename?: "ExchangeToken";
|
|
@@ -8701,6 +8760,8 @@ export declare type GetDisputeResolversQueryQuery = {
|
|
|
8701
8760
|
authTokenType: number;
|
|
8702
8761
|
voucherCloneAddress: string;
|
|
8703
8762
|
active: boolean;
|
|
8763
|
+
contractURI: string;
|
|
8764
|
+
royaltyPercentage: string;
|
|
8704
8765
|
};
|
|
8705
8766
|
};
|
|
8706
8767
|
exchangePolicy: {
|
|
@@ -8859,6 +8920,8 @@ export declare type SellerFieldsFragment = {
|
|
|
8859
8920
|
authTokenType: number;
|
|
8860
8921
|
voucherCloneAddress: string;
|
|
8861
8922
|
active: boolean;
|
|
8923
|
+
contractURI: string;
|
|
8924
|
+
royaltyPercentage: string;
|
|
8862
8925
|
funds?: Array<{
|
|
8863
8926
|
__typename?: "FundsEntity";
|
|
8864
8927
|
id: string;
|
|
@@ -8910,6 +8973,8 @@ export declare type SellerFieldsFragment = {
|
|
|
8910
8973
|
authTokenType: number;
|
|
8911
8974
|
voucherCloneAddress: string;
|
|
8912
8975
|
active: boolean;
|
|
8976
|
+
contractURI: string;
|
|
8977
|
+
royaltyPercentage: string;
|
|
8913
8978
|
};
|
|
8914
8979
|
exchangeToken: {
|
|
8915
8980
|
__typename?: "ExchangeToken";
|
|
@@ -9099,6 +9164,8 @@ export declare type SellerFieldsFragment = {
|
|
|
9099
9164
|
authTokenType: number;
|
|
9100
9165
|
voucherCloneAddress: string;
|
|
9101
9166
|
active: boolean;
|
|
9167
|
+
contractURI: string;
|
|
9168
|
+
royaltyPercentage: string;
|
|
9102
9169
|
};
|
|
9103
9170
|
};
|
|
9104
9171
|
exchangePolicy: {
|
|
@@ -9173,6 +9240,8 @@ export declare type SellerFieldsFragment = {
|
|
|
9173
9240
|
authTokenType: number;
|
|
9174
9241
|
voucherCloneAddress: string;
|
|
9175
9242
|
active: boolean;
|
|
9243
|
+
contractURI: string;
|
|
9244
|
+
royaltyPercentage: string;
|
|
9176
9245
|
};
|
|
9177
9246
|
}>;
|
|
9178
9247
|
logs?: Array<{
|
|
@@ -9289,6 +9358,8 @@ export declare type BaseSellerFieldsFragment = {
|
|
|
9289
9358
|
authTokenType: number;
|
|
9290
9359
|
voucherCloneAddress: string;
|
|
9291
9360
|
active: boolean;
|
|
9361
|
+
contractURI: string;
|
|
9362
|
+
royaltyPercentage: string;
|
|
9292
9363
|
};
|
|
9293
9364
|
export declare type BuyerFieldsFragment = {
|
|
9294
9365
|
__typename?: "Buyer";
|
|
@@ -9355,6 +9426,8 @@ export declare type BuyerFieldsFragment = {
|
|
|
9355
9426
|
authTokenType: number;
|
|
9356
9427
|
voucherCloneAddress: string;
|
|
9357
9428
|
active: boolean;
|
|
9429
|
+
contractURI: string;
|
|
9430
|
+
royaltyPercentage: string;
|
|
9358
9431
|
};
|
|
9359
9432
|
}>;
|
|
9360
9433
|
logs?: Array<{
|
|
@@ -9514,6 +9587,8 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
9514
9587
|
authTokenType: number;
|
|
9515
9588
|
voucherCloneAddress: string;
|
|
9516
9589
|
active: boolean;
|
|
9590
|
+
contractURI: string;
|
|
9591
|
+
royaltyPercentage: string;
|
|
9517
9592
|
};
|
|
9518
9593
|
exchangeToken: {
|
|
9519
9594
|
__typename?: "ExchangeToken";
|
|
@@ -9703,6 +9778,8 @@ export declare type DisputeResolverFieldsFragment = {
|
|
|
9703
9778
|
authTokenType: number;
|
|
9704
9779
|
voucherCloneAddress: string;
|
|
9705
9780
|
active: boolean;
|
|
9781
|
+
contractURI: string;
|
|
9782
|
+
royaltyPercentage: string;
|
|
9706
9783
|
};
|
|
9707
9784
|
};
|
|
9708
9785
|
exchangePolicy: {
|
|
@@ -9970,6 +10047,8 @@ export declare type GetDisputeByIdQueryQuery = {
|
|
|
9970
10047
|
authTokenType: number;
|
|
9971
10048
|
voucherCloneAddress: string;
|
|
9972
10049
|
active: boolean;
|
|
10050
|
+
contractURI: string;
|
|
10051
|
+
royaltyPercentage: string;
|
|
9973
10052
|
};
|
|
9974
10053
|
};
|
|
9975
10054
|
seller: {
|
|
@@ -9983,6 +10062,8 @@ export declare type GetDisputeByIdQueryQuery = {
|
|
|
9983
10062
|
authTokenType: number;
|
|
9984
10063
|
voucherCloneAddress: string;
|
|
9985
10064
|
active: boolean;
|
|
10065
|
+
contractURI: string;
|
|
10066
|
+
royaltyPercentage: string;
|
|
9986
10067
|
};
|
|
9987
10068
|
buyer: {
|
|
9988
10069
|
__typename?: "Buyer";
|
|
@@ -10061,6 +10142,8 @@ export declare type GetDisputesQueryQuery = {
|
|
|
10061
10142
|
authTokenType: number;
|
|
10062
10143
|
voucherCloneAddress: string;
|
|
10063
10144
|
active: boolean;
|
|
10145
|
+
contractURI: string;
|
|
10146
|
+
royaltyPercentage: string;
|
|
10064
10147
|
};
|
|
10065
10148
|
};
|
|
10066
10149
|
seller: {
|
|
@@ -10074,6 +10157,8 @@ export declare type GetDisputesQueryQuery = {
|
|
|
10074
10157
|
authTokenType: number;
|
|
10075
10158
|
voucherCloneAddress: string;
|
|
10076
10159
|
active: boolean;
|
|
10160
|
+
contractURI: string;
|
|
10161
|
+
royaltyPercentage: string;
|
|
10077
10162
|
};
|
|
10078
10163
|
buyer: {
|
|
10079
10164
|
__typename?: "Buyer";
|
|
@@ -10143,6 +10228,8 @@ export declare type DisputeFieldsFragment = {
|
|
|
10143
10228
|
authTokenType: number;
|
|
10144
10229
|
voucherCloneAddress: string;
|
|
10145
10230
|
active: boolean;
|
|
10231
|
+
contractURI: string;
|
|
10232
|
+
royaltyPercentage: string;
|
|
10146
10233
|
};
|
|
10147
10234
|
};
|
|
10148
10235
|
seller: {
|
|
@@ -10156,6 +10243,8 @@ export declare type DisputeFieldsFragment = {
|
|
|
10156
10243
|
authTokenType: number;
|
|
10157
10244
|
voucherCloneAddress: string;
|
|
10158
10245
|
active: boolean;
|
|
10246
|
+
contractURI: string;
|
|
10247
|
+
royaltyPercentage: string;
|
|
10159
10248
|
};
|
|
10160
10249
|
buyer: {
|
|
10161
10250
|
__typename?: "Buyer";
|
|
@@ -10245,6 +10334,8 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
10245
10334
|
authTokenType: number;
|
|
10246
10335
|
voucherCloneAddress: string;
|
|
10247
10336
|
active: boolean;
|
|
10337
|
+
contractURI: string;
|
|
10338
|
+
royaltyPercentage: string;
|
|
10248
10339
|
};
|
|
10249
10340
|
exchangeToken: {
|
|
10250
10341
|
__typename?: "ExchangeToken";
|
|
@@ -10434,6 +10525,8 @@ export declare type GetExchangeTokenByIdQueryQuery = {
|
|
|
10434
10525
|
authTokenType: number;
|
|
10435
10526
|
voucherCloneAddress: string;
|
|
10436
10527
|
active: boolean;
|
|
10528
|
+
contractURI: string;
|
|
10529
|
+
royaltyPercentage: string;
|
|
10437
10530
|
};
|
|
10438
10531
|
};
|
|
10439
10532
|
exchangePolicy: {
|
|
@@ -10535,6 +10628,8 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
10535
10628
|
authTokenType: number;
|
|
10536
10629
|
voucherCloneAddress: string;
|
|
10537
10630
|
active: boolean;
|
|
10631
|
+
contractURI: string;
|
|
10632
|
+
royaltyPercentage: string;
|
|
10538
10633
|
};
|
|
10539
10634
|
exchangeToken: {
|
|
10540
10635
|
__typename?: "ExchangeToken";
|
|
@@ -10724,6 +10819,8 @@ export declare type GetExchangeTokensQueryQuery = {
|
|
|
10724
10819
|
authTokenType: number;
|
|
10725
10820
|
voucherCloneAddress: string;
|
|
10726
10821
|
active: boolean;
|
|
10822
|
+
contractURI: string;
|
|
10823
|
+
royaltyPercentage: string;
|
|
10727
10824
|
};
|
|
10728
10825
|
};
|
|
10729
10826
|
exchangePolicy: {
|
|
@@ -10804,6 +10901,8 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
10804
10901
|
authTokenType: number;
|
|
10805
10902
|
voucherCloneAddress: string;
|
|
10806
10903
|
active: boolean;
|
|
10904
|
+
contractURI: string;
|
|
10905
|
+
royaltyPercentage: string;
|
|
10807
10906
|
};
|
|
10808
10907
|
exchangeToken: {
|
|
10809
10908
|
__typename?: "ExchangeToken";
|
|
@@ -10993,6 +11092,8 @@ export declare type ExchangeTokenFieldsFragment = {
|
|
|
10993
11092
|
authTokenType: number;
|
|
10994
11093
|
voucherCloneAddress: string;
|
|
10995
11094
|
active: boolean;
|
|
11095
|
+
contractURI: string;
|
|
11096
|
+
royaltyPercentage: string;
|
|
10996
11097
|
};
|
|
10997
11098
|
};
|
|
10998
11099
|
exchangePolicy: {
|
|
@@ -11311,6 +11412,8 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
11311
11412
|
authTokenType: number;
|
|
11312
11413
|
voucherCloneAddress: string;
|
|
11313
11414
|
active: boolean;
|
|
11415
|
+
contractURI: string;
|
|
11416
|
+
royaltyPercentage: string;
|
|
11314
11417
|
};
|
|
11315
11418
|
exchangeToken: {
|
|
11316
11419
|
__typename?: "ExchangeToken";
|
|
@@ -11500,6 +11603,8 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
11500
11603
|
authTokenType: number;
|
|
11501
11604
|
voucherCloneAddress: string;
|
|
11502
11605
|
active: boolean;
|
|
11606
|
+
contractURI: string;
|
|
11607
|
+
royaltyPercentage: string;
|
|
11503
11608
|
};
|
|
11504
11609
|
};
|
|
11505
11610
|
exchangePolicy: {
|
|
@@ -11560,6 +11665,8 @@ export declare type GetExchangeByIdQueryQuery = {
|
|
|
11560
11665
|
authTokenType: number;
|
|
11561
11666
|
voucherCloneAddress: string;
|
|
11562
11667
|
active: boolean;
|
|
11668
|
+
contractURI: string;
|
|
11669
|
+
royaltyPercentage: string;
|
|
11563
11670
|
};
|
|
11564
11671
|
} | null;
|
|
11565
11672
|
};
|
|
@@ -11623,6 +11730,8 @@ export declare type GetExchangesQueryQuery = {
|
|
|
11623
11730
|
authTokenType: number;
|
|
11624
11731
|
voucherCloneAddress: string;
|
|
11625
11732
|
active: boolean;
|
|
11733
|
+
contractURI: string;
|
|
11734
|
+
royaltyPercentage: string;
|
|
11626
11735
|
};
|
|
11627
11736
|
exchangeToken: {
|
|
11628
11737
|
__typename?: "ExchangeToken";
|
|
@@ -11812,6 +11921,8 @@ export declare type GetExchangesQueryQuery = {
|
|
|
11812
11921
|
authTokenType: number;
|
|
11813
11922
|
voucherCloneAddress: string;
|
|
11814
11923
|
active: boolean;
|
|
11924
|
+
contractURI: string;
|
|
11925
|
+
royaltyPercentage: string;
|
|
11815
11926
|
};
|
|
11816
11927
|
};
|
|
11817
11928
|
exchangePolicy: {
|
|
@@ -11872,6 +11983,8 @@ export declare type GetExchangesQueryQuery = {
|
|
|
11872
11983
|
authTokenType: number;
|
|
11873
11984
|
voucherCloneAddress: string;
|
|
11874
11985
|
active: boolean;
|
|
11986
|
+
contractURI: string;
|
|
11987
|
+
royaltyPercentage: string;
|
|
11875
11988
|
};
|
|
11876
11989
|
}>;
|
|
11877
11990
|
};
|
|
@@ -11926,6 +12039,8 @@ export declare type ExchangeFieldsFragment = {
|
|
|
11926
12039
|
authTokenType: number;
|
|
11927
12040
|
voucherCloneAddress: string;
|
|
11928
12041
|
active: boolean;
|
|
12042
|
+
contractURI: string;
|
|
12043
|
+
royaltyPercentage: string;
|
|
11929
12044
|
};
|
|
11930
12045
|
exchangeToken: {
|
|
11931
12046
|
__typename?: "ExchangeToken";
|
|
@@ -12115,6 +12230,8 @@ export declare type ExchangeFieldsFragment = {
|
|
|
12115
12230
|
authTokenType: number;
|
|
12116
12231
|
voucherCloneAddress: string;
|
|
12117
12232
|
active: boolean;
|
|
12233
|
+
contractURI: string;
|
|
12234
|
+
royaltyPercentage: string;
|
|
12118
12235
|
};
|
|
12119
12236
|
};
|
|
12120
12237
|
exchangePolicy: {
|
|
@@ -12175,6 +12292,8 @@ export declare type ExchangeFieldsFragment = {
|
|
|
12175
12292
|
authTokenType: number;
|
|
12176
12293
|
voucherCloneAddress: string;
|
|
12177
12294
|
active: boolean;
|
|
12295
|
+
contractURI: string;
|
|
12296
|
+
royaltyPercentage: string;
|
|
12178
12297
|
};
|
|
12179
12298
|
};
|
|
12180
12299
|
export declare type BaseExchangeFieldsFragment = {
|
|
@@ -12223,6 +12342,8 @@ export declare type BaseExchangeFieldsFragment = {
|
|
|
12223
12342
|
authTokenType: number;
|
|
12224
12343
|
voucherCloneAddress: string;
|
|
12225
12344
|
active: boolean;
|
|
12345
|
+
contractURI: string;
|
|
12346
|
+
royaltyPercentage: string;
|
|
12226
12347
|
};
|
|
12227
12348
|
};
|
|
12228
12349
|
export declare type GetFundsByIdQueryVariables = Exact<{
|
|
@@ -12358,6 +12479,8 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12358
12479
|
authTokenType: number;
|
|
12359
12480
|
voucherCloneAddress: string;
|
|
12360
12481
|
active: boolean;
|
|
12482
|
+
contractURI: string;
|
|
12483
|
+
royaltyPercentage: string;
|
|
12361
12484
|
};
|
|
12362
12485
|
exchangeToken: {
|
|
12363
12486
|
__typename?: "ExchangeToken";
|
|
@@ -12547,6 +12670,8 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12547
12670
|
authTokenType: number;
|
|
12548
12671
|
voucherCloneAddress: string;
|
|
12549
12672
|
active: boolean;
|
|
12673
|
+
contractURI: string;
|
|
12674
|
+
royaltyPercentage: string;
|
|
12550
12675
|
};
|
|
12551
12676
|
};
|
|
12552
12677
|
exchangePolicy: {
|
|
@@ -12586,6 +12711,8 @@ export declare type GetBaseMetadataEntityByIdQueryQuery = {
|
|
|
12586
12711
|
authTokenType: number;
|
|
12587
12712
|
voucherCloneAddress: string;
|
|
12588
12713
|
active: boolean;
|
|
12714
|
+
contractURI: string;
|
|
12715
|
+
royaltyPercentage: string;
|
|
12589
12716
|
};
|
|
12590
12717
|
exchangeToken: {
|
|
12591
12718
|
__typename?: "ExchangeToken";
|
|
@@ -12665,6 +12792,8 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12665
12792
|
authTokenType: number;
|
|
12666
12793
|
voucherCloneAddress: string;
|
|
12667
12794
|
active: boolean;
|
|
12795
|
+
contractURI: string;
|
|
12796
|
+
royaltyPercentage: string;
|
|
12668
12797
|
};
|
|
12669
12798
|
exchangeToken: {
|
|
12670
12799
|
__typename?: "ExchangeToken";
|
|
@@ -12854,6 +12983,8 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12854
12983
|
authTokenType: number;
|
|
12855
12984
|
voucherCloneAddress: string;
|
|
12856
12985
|
active: boolean;
|
|
12986
|
+
contractURI: string;
|
|
12987
|
+
royaltyPercentage: string;
|
|
12857
12988
|
};
|
|
12858
12989
|
};
|
|
12859
12990
|
exchangePolicy: {
|
|
@@ -12893,6 +13024,8 @@ export declare type GetBaseMetadataEntitiesQueryQuery = {
|
|
|
12893
13024
|
authTokenType: number;
|
|
12894
13025
|
voucherCloneAddress: string;
|
|
12895
13026
|
active: boolean;
|
|
13027
|
+
contractURI: string;
|
|
13028
|
+
royaltyPercentage: string;
|
|
12896
13029
|
};
|
|
12897
13030
|
exchangeToken: {
|
|
12898
13031
|
__typename?: "ExchangeToken";
|
|
@@ -12963,6 +13096,8 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
12963
13096
|
authTokenType: number;
|
|
12964
13097
|
voucherCloneAddress: string;
|
|
12965
13098
|
active: boolean;
|
|
13099
|
+
contractURI: string;
|
|
13100
|
+
royaltyPercentage: string;
|
|
12966
13101
|
};
|
|
12967
13102
|
exchangeToken: {
|
|
12968
13103
|
__typename?: "ExchangeToken";
|
|
@@ -13152,6 +13287,8 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
13152
13287
|
authTokenType: number;
|
|
13153
13288
|
voucherCloneAddress: string;
|
|
13154
13289
|
active: boolean;
|
|
13290
|
+
contractURI: string;
|
|
13291
|
+
royaltyPercentage: string;
|
|
13155
13292
|
};
|
|
13156
13293
|
};
|
|
13157
13294
|
exchangePolicy: {
|
|
@@ -13191,6 +13328,8 @@ export declare type BaseMetadataEntityFieldsFragment = {
|
|
|
13191
13328
|
authTokenType: number;
|
|
13192
13329
|
voucherCloneAddress: string;
|
|
13193
13330
|
active: boolean;
|
|
13331
|
+
contractURI: string;
|
|
13332
|
+
royaltyPercentage: string;
|
|
13194
13333
|
};
|
|
13195
13334
|
exchangeToken: {
|
|
13196
13335
|
__typename?: "ExchangeToken";
|
|
@@ -13260,6 +13399,8 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13260
13399
|
authTokenType: number;
|
|
13261
13400
|
voucherCloneAddress: string;
|
|
13262
13401
|
active: boolean;
|
|
13402
|
+
contractURI: string;
|
|
13403
|
+
royaltyPercentage: string;
|
|
13263
13404
|
};
|
|
13264
13405
|
exchangeToken: {
|
|
13265
13406
|
__typename?: "ExchangeToken";
|
|
@@ -13449,6 +13590,8 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13449
13590
|
authTokenType: number;
|
|
13450
13591
|
voucherCloneAddress: string;
|
|
13451
13592
|
active: boolean;
|
|
13593
|
+
contractURI: string;
|
|
13594
|
+
royaltyPercentage: string;
|
|
13452
13595
|
};
|
|
13453
13596
|
};
|
|
13454
13597
|
exchangePolicy: {
|
|
@@ -13488,6 +13631,8 @@ export declare type BaseBaseMetadataEntityFieldsFragment = {
|
|
|
13488
13631
|
authTokenType: number;
|
|
13489
13632
|
voucherCloneAddress: string;
|
|
13490
13633
|
active: boolean;
|
|
13634
|
+
contractURI: string;
|
|
13635
|
+
royaltyPercentage: string;
|
|
13491
13636
|
};
|
|
13492
13637
|
exchangeToken: {
|
|
13493
13638
|
__typename?: "ExchangeToken";
|
|
@@ -13598,6 +13743,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13598
13743
|
authTokenType: number;
|
|
13599
13744
|
voucherCloneAddress: string;
|
|
13600
13745
|
active: boolean;
|
|
13746
|
+
contractURI: string;
|
|
13747
|
+
royaltyPercentage: string;
|
|
13601
13748
|
};
|
|
13602
13749
|
exchangeToken: {
|
|
13603
13750
|
__typename?: "ExchangeToken";
|
|
@@ -13787,6 +13934,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13787
13934
|
authTokenType: number;
|
|
13788
13935
|
voucherCloneAddress: string;
|
|
13789
13936
|
active: boolean;
|
|
13937
|
+
contractURI: string;
|
|
13938
|
+
royaltyPercentage: string;
|
|
13790
13939
|
};
|
|
13791
13940
|
};
|
|
13792
13941
|
exchangePolicy: {
|
|
@@ -13826,6 +13975,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13826
13975
|
authTokenType: number;
|
|
13827
13976
|
voucherCloneAddress: string;
|
|
13828
13977
|
active: boolean;
|
|
13978
|
+
contractURI: string;
|
|
13979
|
+
royaltyPercentage: string;
|
|
13829
13980
|
};
|
|
13830
13981
|
exchangeToken: {
|
|
13831
13982
|
__typename?: "ExchangeToken";
|
|
@@ -13953,6 +14104,8 @@ export declare type GetProductV1MetadataEntityByIdQueryQuery = {
|
|
|
13953
14104
|
authTokenType: number;
|
|
13954
14105
|
voucherCloneAddress: string;
|
|
13955
14106
|
active: boolean;
|
|
14107
|
+
contractURI: string;
|
|
14108
|
+
royaltyPercentage: string;
|
|
13956
14109
|
};
|
|
13957
14110
|
};
|
|
13958
14111
|
exchangePolicy: {
|
|
@@ -14036,6 +14189,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14036
14189
|
authTokenType: number;
|
|
14037
14190
|
voucherCloneAddress: string;
|
|
14038
14191
|
active: boolean;
|
|
14192
|
+
contractURI: string;
|
|
14193
|
+
royaltyPercentage: string;
|
|
14039
14194
|
};
|
|
14040
14195
|
exchangeToken: {
|
|
14041
14196
|
__typename?: "ExchangeToken";
|
|
@@ -14225,6 +14380,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14225
14380
|
authTokenType: number;
|
|
14226
14381
|
voucherCloneAddress: string;
|
|
14227
14382
|
active: boolean;
|
|
14383
|
+
contractURI: string;
|
|
14384
|
+
royaltyPercentage: string;
|
|
14228
14385
|
};
|
|
14229
14386
|
};
|
|
14230
14387
|
exchangePolicy: {
|
|
@@ -14264,6 +14421,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14264
14421
|
authTokenType: number;
|
|
14265
14422
|
voucherCloneAddress: string;
|
|
14266
14423
|
active: boolean;
|
|
14424
|
+
contractURI: string;
|
|
14425
|
+
royaltyPercentage: string;
|
|
14267
14426
|
};
|
|
14268
14427
|
exchangeToken: {
|
|
14269
14428
|
__typename?: "ExchangeToken";
|
|
@@ -14391,6 +14550,8 @@ export declare type GetProductV1MetadataEntitiesQueryQuery = {
|
|
|
14391
14550
|
authTokenType: number;
|
|
14392
14551
|
voucherCloneAddress: string;
|
|
14393
14552
|
active: boolean;
|
|
14553
|
+
contractURI: string;
|
|
14554
|
+
royaltyPercentage: string;
|
|
14394
14555
|
};
|
|
14395
14556
|
};
|
|
14396
14557
|
exchangePolicy: {
|
|
@@ -14465,6 +14626,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14465
14626
|
authTokenType: number;
|
|
14466
14627
|
voucherCloneAddress: string;
|
|
14467
14628
|
active: boolean;
|
|
14629
|
+
contractURI: string;
|
|
14630
|
+
royaltyPercentage: string;
|
|
14468
14631
|
};
|
|
14469
14632
|
exchangeToken: {
|
|
14470
14633
|
__typename?: "ExchangeToken";
|
|
@@ -14654,6 +14817,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14654
14817
|
authTokenType: number;
|
|
14655
14818
|
voucherCloneAddress: string;
|
|
14656
14819
|
active: boolean;
|
|
14820
|
+
contractURI: string;
|
|
14821
|
+
royaltyPercentage: string;
|
|
14657
14822
|
};
|
|
14658
14823
|
};
|
|
14659
14824
|
exchangePolicy: {
|
|
@@ -14693,6 +14858,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14693
14858
|
authTokenType: number;
|
|
14694
14859
|
voucherCloneAddress: string;
|
|
14695
14860
|
active: boolean;
|
|
14861
|
+
contractURI: string;
|
|
14862
|
+
royaltyPercentage: string;
|
|
14696
14863
|
};
|
|
14697
14864
|
exchangeToken: {
|
|
14698
14865
|
__typename?: "ExchangeToken";
|
|
@@ -14820,6 +14987,8 @@ export declare type ProductV1MetadataEntityFieldsFragment = {
|
|
|
14820
14987
|
authTokenType: number;
|
|
14821
14988
|
voucherCloneAddress: string;
|
|
14822
14989
|
active: boolean;
|
|
14990
|
+
contractURI: string;
|
|
14991
|
+
royaltyPercentage: string;
|
|
14823
14992
|
};
|
|
14824
14993
|
};
|
|
14825
14994
|
exchangePolicy: {
|
|
@@ -14893,6 +15062,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
14893
15062
|
authTokenType: number;
|
|
14894
15063
|
voucherCloneAddress: string;
|
|
14895
15064
|
active: boolean;
|
|
15065
|
+
contractURI: string;
|
|
15066
|
+
royaltyPercentage: string;
|
|
14896
15067
|
};
|
|
14897
15068
|
exchangeToken: {
|
|
14898
15069
|
__typename?: "ExchangeToken";
|
|
@@ -15082,6 +15253,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15082
15253
|
authTokenType: number;
|
|
15083
15254
|
voucherCloneAddress: string;
|
|
15084
15255
|
active: boolean;
|
|
15256
|
+
contractURI: string;
|
|
15257
|
+
royaltyPercentage: string;
|
|
15085
15258
|
};
|
|
15086
15259
|
};
|
|
15087
15260
|
exchangePolicy: {
|
|
@@ -15121,6 +15294,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15121
15294
|
authTokenType: number;
|
|
15122
15295
|
voucherCloneAddress: string;
|
|
15123
15296
|
active: boolean;
|
|
15297
|
+
contractURI: string;
|
|
15298
|
+
royaltyPercentage: string;
|
|
15124
15299
|
};
|
|
15125
15300
|
exchangeToken: {
|
|
15126
15301
|
__typename?: "ExchangeToken";
|
|
@@ -15248,6 +15423,8 @@ export declare type BaseProductV1MetadataEntityFieldsFragment = {
|
|
|
15248
15423
|
authTokenType: number;
|
|
15249
15424
|
voucherCloneAddress: string;
|
|
15250
15425
|
active: boolean;
|
|
15426
|
+
contractURI: string;
|
|
15427
|
+
royaltyPercentage: string;
|
|
15251
15428
|
};
|
|
15252
15429
|
};
|
|
15253
15430
|
exchangePolicy: {
|
|
@@ -15411,6 +15588,8 @@ export declare type BaseProductV1SellerFieldsFragment = {
|
|
|
15411
15588
|
authTokenType: number;
|
|
15412
15589
|
voucherCloneAddress: string;
|
|
15413
15590
|
active: boolean;
|
|
15591
|
+
contractURI: string;
|
|
15592
|
+
royaltyPercentage: string;
|
|
15414
15593
|
};
|
|
15415
15594
|
};
|
|
15416
15595
|
export declare type BaseProductV1SellerContactLinkFieldsFragment = {
|
|
@@ -15573,6 +15752,8 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
15573
15752
|
authTokenType: number;
|
|
15574
15753
|
voucherCloneAddress: string;
|
|
15575
15754
|
active: boolean;
|
|
15755
|
+
contractURI: string;
|
|
15756
|
+
royaltyPercentage: string;
|
|
15576
15757
|
};
|
|
15577
15758
|
}>;
|
|
15578
15759
|
seller: {
|
|
@@ -15586,6 +15767,8 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
15586
15767
|
authTokenType: number;
|
|
15587
15768
|
voucherCloneAddress: string;
|
|
15588
15769
|
active: boolean;
|
|
15770
|
+
contractURI: string;
|
|
15771
|
+
royaltyPercentage: string;
|
|
15589
15772
|
};
|
|
15590
15773
|
exchangeToken: {
|
|
15591
15774
|
__typename?: "ExchangeToken";
|
|
@@ -15775,6 +15958,8 @@ export declare type GetOfferByIdQueryQuery = {
|
|
|
15775
15958
|
authTokenType: number;
|
|
15776
15959
|
voucherCloneAddress: string;
|
|
15777
15960
|
active: boolean;
|
|
15961
|
+
contractURI: string;
|
|
15962
|
+
royaltyPercentage: string;
|
|
15778
15963
|
};
|
|
15779
15964
|
};
|
|
15780
15965
|
exchangePolicy: {
|
|
@@ -15891,6 +16076,8 @@ export declare type GetOffersQueryQuery = {
|
|
|
15891
16076
|
authTokenType: number;
|
|
15892
16077
|
voucherCloneAddress: string;
|
|
15893
16078
|
active: boolean;
|
|
16079
|
+
contractURI: string;
|
|
16080
|
+
royaltyPercentage: string;
|
|
15894
16081
|
};
|
|
15895
16082
|
}>;
|
|
15896
16083
|
seller: {
|
|
@@ -15904,6 +16091,8 @@ export declare type GetOffersQueryQuery = {
|
|
|
15904
16091
|
authTokenType: number;
|
|
15905
16092
|
voucherCloneAddress: string;
|
|
15906
16093
|
active: boolean;
|
|
16094
|
+
contractURI: string;
|
|
16095
|
+
royaltyPercentage: string;
|
|
15907
16096
|
};
|
|
15908
16097
|
exchangeToken: {
|
|
15909
16098
|
__typename?: "ExchangeToken";
|
|
@@ -16093,6 +16282,8 @@ export declare type GetOffersQueryQuery = {
|
|
|
16093
16282
|
authTokenType: number;
|
|
16094
16283
|
voucherCloneAddress: string;
|
|
16095
16284
|
active: boolean;
|
|
16285
|
+
contractURI: string;
|
|
16286
|
+
royaltyPercentage: string;
|
|
16096
16287
|
};
|
|
16097
16288
|
};
|
|
16098
16289
|
exchangePolicy: {
|
|
@@ -16194,6 +16385,8 @@ export declare type OfferFieldsFragment = {
|
|
|
16194
16385
|
authTokenType: number;
|
|
16195
16386
|
voucherCloneAddress: string;
|
|
16196
16387
|
active: boolean;
|
|
16388
|
+
contractURI: string;
|
|
16389
|
+
royaltyPercentage: string;
|
|
16197
16390
|
};
|
|
16198
16391
|
}>;
|
|
16199
16392
|
seller: {
|
|
@@ -16207,6 +16400,8 @@ export declare type OfferFieldsFragment = {
|
|
|
16207
16400
|
authTokenType: number;
|
|
16208
16401
|
voucherCloneAddress: string;
|
|
16209
16402
|
active: boolean;
|
|
16403
|
+
contractURI: string;
|
|
16404
|
+
royaltyPercentage: string;
|
|
16210
16405
|
};
|
|
16211
16406
|
exchangeToken: {
|
|
16212
16407
|
__typename?: "ExchangeToken";
|
|
@@ -16396,6 +16591,8 @@ export declare type OfferFieldsFragment = {
|
|
|
16396
16591
|
authTokenType: number;
|
|
16397
16592
|
voucherCloneAddress: string;
|
|
16398
16593
|
active: boolean;
|
|
16594
|
+
contractURI: string;
|
|
16595
|
+
royaltyPercentage: string;
|
|
16399
16596
|
};
|
|
16400
16597
|
};
|
|
16401
16598
|
exchangePolicy: {
|
|
@@ -16461,6 +16658,8 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
16461
16658
|
authTokenType: number;
|
|
16462
16659
|
voucherCloneAddress: string;
|
|
16463
16660
|
active: boolean;
|
|
16661
|
+
contractURI: string;
|
|
16662
|
+
royaltyPercentage: string;
|
|
16464
16663
|
};
|
|
16465
16664
|
exchangeToken: {
|
|
16466
16665
|
__typename?: "ExchangeToken";
|
|
@@ -16650,6 +16849,8 @@ export declare type BaseOfferFieldsFragment = {
|
|
|
16650
16849
|
authTokenType: number;
|
|
16651
16850
|
voucherCloneAddress: string;
|
|
16652
16851
|
active: boolean;
|
|
16852
|
+
contractURI: string;
|
|
16853
|
+
royaltyPercentage: string;
|
|
16653
16854
|
};
|
|
16654
16855
|
};
|
|
16655
16856
|
exchangePolicy: {
|