@nexusmutual/sdk 1.6.0 → 1.6.1-rc.1

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/README.md CHANGED
@@ -48,9 +48,9 @@ Copy the `.env.example` file into `.env` and populate with the required values.
48
48
  npm build
49
49
  ```
50
50
 
51
- ## IPFS Upload Utils
51
+ ## IPFS Upload
52
52
 
53
- Use the `uploadIPFSContent` function from `src/ipfs/uploadIPFSContent.ts` to upload the content to IPFS. The function takes the following parameters:
53
+ Use the `uploadIPFSContent` method in `Ipfs` class to upload the content to IPFS. The function takes the following parameters:
54
54
 
55
55
  - `type`: The type of the content. Based on ContentType enum.
56
56
  - `content`: The content to be uploaded to IPFS as IPFSContentTypes.
@@ -60,81 +60,159 @@ The function returns the IPFS hash of the uploaded content.
60
60
  ### Example
61
61
 
62
62
  ```typescript
63
- import { uploadIPFSContent, ContentType, IPFSContentTypes } from '@nexusmutual/sdk';
63
+ import { Ipfs } from '@nexusmutual/sdk';
64
64
 
65
65
  const content: IPFSContentTypes = {
66
66
  version: '2.0',
67
67
  walletAddresses: ['0x1234567890'],
68
68
  };
69
69
 
70
- const ipfsHash = await uploadIPFSContent([ContentType.coverWalletAddresses, content]);
70
+ const ipfs = new Ipfs(config: NexusSDKConfig = {});
71
+ const ipfsHash = await ipfs.uploadIPFSContent([ContentType.coverWalletAddresses, content]);
71
72
 
72
73
  console.log(ipfsHash);
73
74
  ```
74
75
 
75
- ## getQuoteAndBuyCoverInputs
76
+ ## Quote
76
77
 
77
- Use the `getQuoteAndBuyCoverInputs` function from `src/cover/getQuoteAndBuyCoverInputs.ts` to get the inputs required to get a quote and buy cover. The function has 2 overloads. One allows you to pass an IPFS Cid for the cover metadata, and the other allows you to pass the cover metadata directly. The function returns the inputs required to get a quote and buy cover.
78
+ Use the `NexusSDK` or `Quote` class directly to get the inputs required to get a quote and buy cover.
78
79
 
79
- ### Example
80
+ ```typescript
81
+ interface NexusSDKConfig {
82
+ apiUrl?: string;
83
+ }
84
+ ```
85
+ ```typescript
86
+ const nexusSDK = new NexusSDK(config: NexusSDKConfig = {}, ipfs?: Ipfs)
87
+ ````
80
88
 
81
- 1st overload:
89
+ ```typescript
90
+ const quote = new Quote(config: NexusSDKConfig = {}, ipfs?: Ipfs)
91
+ ````
82
92
 
93
+ ### Params
83
94
  ```typescript
84
- import { CoverAsset, getQuoteAndBuyCoverInputs } from '@nexusmutual/sdk';
95
+ export interface GetQuoteAndBuyCoverInputsParams {
96
+ /**
97
+ * ID of the product to buy cover for
98
+ */
99
+ productId: number;
100
+
101
+ /**
102
+ * Amount of cover to buy, as a string
103
+ */
104
+ amount: string;
105
+
106
+ /**
107
+ * Cover period in days
108
+ */
109
+ period: number;
110
+
111
+ /**
112
+ * Asset to use for cover
113
+ * Must be a valid CoverAsset enum value
114
+ */
115
+ coverAsset: number;
116
+
117
+ /**
118
+ * Address of the cover buyer
119
+ * Must be a valid Ethereum address
120
+ */
121
+ buyerAddress: string;
122
+
123
+ /**
124
+ * ID of the cover to edit
125
+ */
126
+ coverId?: number;
127
+
128
+ /**
129
+ * Optional slippage tolerance percentage
130
+ * Value between 0-1 (defaults to 0.001 ~ 0.1%)
131
+ */
132
+ slippage?: number;
133
+
134
+ /**
135
+ * Optional IPFS CID string or content object to upload
136
+ */
137
+ ipfsCidOrContent?: string | Record<string, unknown>;
138
+
139
+ /**
140
+ * Optional commission ratio
141
+ */
142
+ commissionRatio?: number;
143
+
144
+ /**
145
+ * Optional address of the commission receiver
146
+ */
147
+ commissionDestination?: string;
148
+
149
+ /**
150
+ * Asset to use for cover payment
151
+ * Must be a valid PaymentAsset enum value
152
+ */
153
+ paymentAsset?: number;
154
+ }
155
+ ```
156
+
157
+ ### Example 1
158
+
159
+ ```typescript
160
+ import { NexusSDK } from '@nexusmutual/sdk';
85
161
 
86
162
  const productId = 247; // Elite Cover Product - Nexus Mutual Cover Product Type
87
- const coverAmount = '100';
88
- const coverPeriod = 30;
163
+ const amount = '100';
164
+ const period = 30;
89
165
  const coverAsset = CoverAsset.ETH;
166
+ const paymentAsset = CoverAsset.ETH;
90
167
  const buyerAddress = '0x95222290dd7278aa3ddd389cc1e1d165cc4bafe5';
91
- const ipfsCid = 'QmXUzXDMbeKSCewUie34vPD7mCAGnshi4ULRy4h7DLmoRS';
168
+ const ipfsCidOrContent = 'QmXUzXDMbeKSCewUie34vPD7mCAGnshi4ULRy4h7DLmoRS';
169
+
170
+ const nexusSDK = new NexusSDK();
92
171
 
93
- const quoteAndBuyCoverInputs = await getQuoteAndBuyCoverInputs(
172
+ const { result, error } = await nexusSDK.quote.getQuoteAndBuyCoverInputs({
94
173
  productId,
95
- coverAmount,
96
- coverPeriod,
174
+ amount,
175
+ period,
97
176
  coverAsset,
177
+ paymentAsset,
98
178
  buyerAddress,
99
- undefined,
100
- ipfsCid,
101
- );
179
+ ipfsCidOrContent,
180
+ });
102
181
 
103
- console.log(quoteAndBuyCoverInputs);
182
+ console.log(result);
104
183
  ```
105
184
 
106
- 2nd overload:
185
+ ### Example 2
107
186
 
108
187
  ```typescript
109
- import { CoverAsset, getQuoteAndBuyCoverInputs, IPFSContentTypes } from '@nexusmutual/sdk';
188
+ import { Quote } from '@nexusmutual/sdk';
110
189
 
111
190
  const productId = 247; // Elite Cover Product - Nexus Mutual Cover Product Type
112
- const coverAmount = '100';
113
- const coverPeriod = 30;
191
+ const amount = '100';
192
+ const period = 30;
114
193
  const coverAsset = CoverAsset.ETH;
194
+ const paymentAsset = CoverAsset.ETH;
115
195
  const buyerAddress = '0x95222290dd7278aa3ddd389cc1e1d165cc4bafe5';
116
- const ipfsContent: IPFSContentTypes = {
117
- version: '2.0',
118
- walletAddresses: ['0x1234567890123456789012345678901234567890'],
119
- };
196
+ const ipfsCidOrContent = 'QmXUzXDMbeKSCewUie34vPD7mCAGnshi4ULRy4h7DLmoRS';
197
+
198
+ const quote = new Quote();
120
199
 
121
- const quoteAndBuyCoverInputs = await getQuoteAndBuyCoverInputs(
200
+ const { result, error } = await quote.getQuoteAndBuyCoverInputs({
122
201
  productId,
123
- coverAmount,
124
- coverPeriod,
202
+ amount,
203
+ period,
125
204
  coverAsset,
205
+ paymentAsset,
126
206
  buyerAddress,
127
- undefined,
128
- ipfsContent,
129
- );
207
+ ipfsCidOrContent,
208
+ });
130
209
 
131
- console.log(quoteAndBuyCoverInputs);
210
+ console.log(result);
132
211
  ```
133
212
 
134
- If the productId's type needs an IPFS upload, you can pass the `ipfsContent` param and the function will upload the content to IPFS and use the IPFS hash returned for the buy cover inputs `ipfsData` param. If you pass the `ipfsCid` param, the function will use the IPFS hash directly.
213
+ If the productId's type needs an IPFS upload, you can pass the `ipfsCidOrContent` param and the function will upload the content to IPFS and use the IPFS hash returned or you can pass the hash if you manually uploaded.
135
214
 
136
- The `ipfsCid` param must be a valid IPFS Cid.
137
- The `ipfsContent` param must be a valid `IPFSContentTypes` - the allowed types can be found in `src/types/ipfs.ts`.
215
+ The `ipfsCidOrContent` param must be a valid IPFS Cid or a valid `IPFSContentTypes` - the allowed types can be found in `src/types/ipfs.ts`.
138
216
 
139
217
  ### Product Types and IPFS Content Mapping
140
218
 
@@ -2429,7 +2429,7 @@
2429
2429
  "cbBTC"
2430
2430
  ],
2431
2431
  "isPrivate": false,
2432
- "timestamp": 1739447471,
2432
+ "timestamp": 1753877075,
2433
2433
  "minPrice": 100
2434
2434
  },
2435
2435
  {
@@ -3853,7 +3853,7 @@
3853
3853
  "ETH"
3854
3854
  ],
3855
3855
  "isPrivate": false,
3856
- "timestamp": 1734557999,
3856
+ "timestamp": 1731583079,
3857
3857
  "minPrice": 100
3858
3858
  },
3859
3859
  {
@@ -4040,7 +4040,7 @@
4040
4040
  "USDC"
4041
4041
  ],
4042
4042
  "isPrivate": false,
4043
- "timestamp": 1723127459,
4043
+ "timestamp": 1722950807,
4044
4044
  "minPrice": 100
4045
4045
  },
4046
4046
  {
@@ -4115,7 +4115,7 @@
4115
4115
  "cbBTC"
4116
4116
  ],
4117
4117
  "isPrivate": false,
4118
- "timestamp": 1724341943,
4118
+ "timestamp": 1734557999,
4119
4119
  "minPrice": 100
4120
4120
  },
4121
4121
  {
@@ -4134,7 +4134,7 @@
4134
4134
  "cbBTC"
4135
4135
  ],
4136
4136
  "isPrivate": false,
4137
- "timestamp": 1734557999,
4137
+ "timestamp": 1726227311,
4138
4138
  "minPrice": 100
4139
4139
  },
4140
4140
  {
@@ -4210,7 +4210,7 @@
4210
4210
  "cbBTC"
4211
4211
  ],
4212
4212
  "isPrivate": false,
4213
- "timestamp": 1749739367,
4213
+ "timestamp": 1751550659,
4214
4214
  "minPrice": 100
4215
4215
  },
4216
4216
  {
@@ -4229,7 +4229,7 @@
4229
4229
  "cbBTC"
4230
4230
  ],
4231
4231
  "isPrivate": false,
4232
- "timestamp": 1749739367,
4232
+ "timestamp": 1753877075,
4233
4233
  "minPrice": 100
4234
4234
  },
4235
4235
  {
@@ -4509,7 +4509,7 @@
4509
4509
  "cbBTC"
4510
4510
  ],
4511
4511
  "isPrivate": false,
4512
- "timestamp": 1740672395,
4512
+ "timestamp": 1733326763,
4513
4513
  "minPrice": 49
4514
4514
  },
4515
4515
  {
@@ -4528,7 +4528,7 @@
4528
4528
  "cbBTC"
4529
4529
  ],
4530
4530
  "isPrivate": false,
4531
- "timestamp": 1740672395,
4531
+ "timestamp": 1733326763,
4532
4532
  "minPrice": 225
4533
4533
  },
4534
4534
  {
@@ -4547,7 +4547,7 @@
4547
4547
  "cbBTC"
4548
4548
  ],
4549
4549
  "isPrivate": false,
4550
- "timestamp": 1749739367,
4550
+ "timestamp": 1753877075,
4551
4551
  "minPrice": 310
4552
4552
  },
4553
4553
  {
@@ -4797,7 +4797,7 @@
4797
4797
  "USDC"
4798
4798
  ],
4799
4799
  "isPrivate": false,
4800
- "timestamp": 1747055891,
4800
+ "timestamp": 1744902863,
4801
4801
  "minPrice": 50
4802
4802
  },
4803
4803
  {
@@ -5028,7 +5028,7 @@
5028
5028
  "ETH"
5029
5029
  ],
5030
5030
  "isPrivate": true,
5031
- "timestamp": 1740672395,
5031
+ "timestamp": 1741267523,
5032
5032
  "minPrice": 95
5033
5033
  },
5034
5034
  {
@@ -5248,7 +5248,7 @@
5248
5248
  "USDC"
5249
5249
  ],
5250
5250
  "isPrivate": false,
5251
- "timestamp": 1747055891,
5251
+ "timestamp": 1742481059,
5252
5252
  "minPrice": 100
5253
5253
  },
5254
5254
  {
@@ -5320,7 +5320,7 @@
5320
5320
  "cbBTC"
5321
5321
  ],
5322
5322
  "isPrivate": false,
5323
- "timestamp": 1751550659,
5323
+ "timestamp": 1743519947,
5324
5324
  "minPrice": 100
5325
5325
  },
5326
5326
  {
@@ -5356,7 +5356,7 @@
5356
5356
  "USDC"
5357
5357
  ],
5358
5358
  "isPrivate": true,
5359
- "timestamp": 1743670835,
5359
+ "timestamp": 1743603467,
5360
5360
  "minPrice": 1586
5361
5361
  },
5362
5362
  {
@@ -5463,7 +5463,7 @@
5463
5463
  "cbBTC"
5464
5464
  ],
5465
5465
  "isPrivate": false,
5466
- "timestamp": 1747055891,
5466
+ "timestamp": 1751550659,
5467
5467
  "minPrice": 309
5468
5468
  },
5469
5469
  {
@@ -5620,7 +5620,7 @@
5620
5620
  "cbBTC"
5621
5621
  ],
5622
5622
  "isPrivate": false,
5623
- "timestamp": 1750162583,
5623
+ "timestamp": 1751550659,
5624
5624
  "minPrice": 100
5625
5625
  },
5626
5626
  {
package/dist/index.d.mts CHANGED
@@ -3278,7 +3278,7 @@ var products = [
3278
3278
  "cbBTC"
3279
3279
  ],
3280
3280
  isPrivate: false,
3281
- timestamp: 1739447471,
3281
+ timestamp: 1753877075,
3282
3282
  minPrice: 100
3283
3283
  },
3284
3284
  {
@@ -4724,7 +4724,7 @@ var products = [
4724
4724
  "ETH"
4725
4725
  ],
4726
4726
  isPrivate: false,
4727
- timestamp: 1734557999,
4727
+ timestamp: 1731583079,
4728
4728
  minPrice: 100
4729
4729
  },
4730
4730
  {
@@ -4916,7 +4916,7 @@ var products = [
4916
4916
  "USDC"
4917
4917
  ],
4918
4918
  isPrivate: false,
4919
- timestamp: 1723127459,
4919
+ timestamp: 1722950807,
4920
4920
  minPrice: 100
4921
4921
  },
4922
4922
  {
@@ -4991,7 +4991,7 @@ var products = [
4991
4991
  "cbBTC"
4992
4992
  ],
4993
4993
  isPrivate: false,
4994
- timestamp: 1724341943,
4994
+ timestamp: 1734557999,
4995
4995
  minPrice: 100
4996
4996
  },
4997
4997
  {
@@ -5010,7 +5010,7 @@ var products = [
5010
5010
  "cbBTC"
5011
5011
  ],
5012
5012
  isPrivate: false,
5013
- timestamp: 1734557999,
5013
+ timestamp: 1726227311,
5014
5014
  minPrice: 100
5015
5015
  },
5016
5016
  {
@@ -5087,7 +5087,7 @@ var products = [
5087
5087
  "cbBTC"
5088
5088
  ],
5089
5089
  isPrivate: false,
5090
- timestamp: 1749739367,
5090
+ timestamp: 1751550659,
5091
5091
  minPrice: 100
5092
5092
  },
5093
5093
  {
@@ -5106,7 +5106,7 @@ var products = [
5106
5106
  "cbBTC"
5107
5107
  ],
5108
5108
  isPrivate: false,
5109
- timestamp: 1749739367,
5109
+ timestamp: 1753877075,
5110
5110
  minPrice: 100
5111
5111
  },
5112
5112
  {
@@ -5394,7 +5394,7 @@ var products = [
5394
5394
  "cbBTC"
5395
5395
  ],
5396
5396
  isPrivate: false,
5397
- timestamp: 1740672395,
5397
+ timestamp: 1733326763,
5398
5398
  minPrice: 49
5399
5399
  },
5400
5400
  {
@@ -5413,7 +5413,7 @@ var products = [
5413
5413
  "cbBTC"
5414
5414
  ],
5415
5415
  isPrivate: false,
5416
- timestamp: 1740672395,
5416
+ timestamp: 1733326763,
5417
5417
  minPrice: 225
5418
5418
  },
5419
5419
  {
@@ -5432,7 +5432,7 @@ var products = [
5432
5432
  "cbBTC"
5433
5433
  ],
5434
5434
  isPrivate: false,
5435
- timestamp: 1749739367,
5435
+ timestamp: 1753877075,
5436
5436
  minPrice: 310
5437
5437
  },
5438
5438
  {
@@ -5688,7 +5688,7 @@ var products = [
5688
5688
  "USDC"
5689
5689
  ],
5690
5690
  isPrivate: false,
5691
- timestamp: 1747055891,
5691
+ timestamp: 1744902863,
5692
5692
  minPrice: 50
5693
5693
  },
5694
5694
  {
@@ -5919,7 +5919,7 @@ var products = [
5919
5919
  "ETH"
5920
5920
  ],
5921
5921
  isPrivate: true,
5922
- timestamp: 1740672395,
5922
+ timestamp: 1741267523,
5923
5923
  minPrice: 95
5924
5924
  },
5925
5925
  {
@@ -6142,7 +6142,7 @@ var products = [
6142
6142
  "USDC"
6143
6143
  ],
6144
6144
  isPrivate: false,
6145
- timestamp: 1747055891,
6145
+ timestamp: 1742481059,
6146
6146
  minPrice: 100
6147
6147
  },
6148
6148
  {
@@ -6214,7 +6214,7 @@ var products = [
6214
6214
  "cbBTC"
6215
6215
  ],
6216
6216
  isPrivate: false,
6217
- timestamp: 1751550659,
6217
+ timestamp: 1743519947,
6218
6218
  minPrice: 100
6219
6219
  },
6220
6220
  {
@@ -6250,7 +6250,7 @@ var products = [
6250
6250
  "USDC"
6251
6251
  ],
6252
6252
  isPrivate: true,
6253
- timestamp: 1743670835,
6253
+ timestamp: 1743603467,
6254
6254
  minPrice: 1586
6255
6255
  },
6256
6256
  {
@@ -6359,7 +6359,7 @@ var products = [
6359
6359
  "cbBTC"
6360
6360
  ],
6361
6361
  isPrivate: false,
6362
- timestamp: 1747055891,
6362
+ timestamp: 1751550659,
6363
6363
  minPrice: 309
6364
6364
  },
6365
6365
  {
@@ -6521,7 +6521,7 @@ var products = [
6521
6521
  "cbBTC"
6522
6522
  ],
6523
6523
  isPrivate: false,
6524
- timestamp: 1750162583,
6524
+ timestamp: 1751550659,
6525
6525
  minPrice: 100
6526
6526
  },
6527
6527
  {
package/dist/index.d.ts CHANGED
@@ -3278,7 +3278,7 @@ var products = [
3278
3278
  "cbBTC"
3279
3279
  ],
3280
3280
  isPrivate: false,
3281
- timestamp: 1739447471,
3281
+ timestamp: 1753877075,
3282
3282
  minPrice: 100
3283
3283
  },
3284
3284
  {
@@ -4724,7 +4724,7 @@ var products = [
4724
4724
  "ETH"
4725
4725
  ],
4726
4726
  isPrivate: false,
4727
- timestamp: 1734557999,
4727
+ timestamp: 1731583079,
4728
4728
  minPrice: 100
4729
4729
  },
4730
4730
  {
@@ -4916,7 +4916,7 @@ var products = [
4916
4916
  "USDC"
4917
4917
  ],
4918
4918
  isPrivate: false,
4919
- timestamp: 1723127459,
4919
+ timestamp: 1722950807,
4920
4920
  minPrice: 100
4921
4921
  },
4922
4922
  {
@@ -4991,7 +4991,7 @@ var products = [
4991
4991
  "cbBTC"
4992
4992
  ],
4993
4993
  isPrivate: false,
4994
- timestamp: 1724341943,
4994
+ timestamp: 1734557999,
4995
4995
  minPrice: 100
4996
4996
  },
4997
4997
  {
@@ -5010,7 +5010,7 @@ var products = [
5010
5010
  "cbBTC"
5011
5011
  ],
5012
5012
  isPrivate: false,
5013
- timestamp: 1734557999,
5013
+ timestamp: 1726227311,
5014
5014
  minPrice: 100
5015
5015
  },
5016
5016
  {
@@ -5087,7 +5087,7 @@ var products = [
5087
5087
  "cbBTC"
5088
5088
  ],
5089
5089
  isPrivate: false,
5090
- timestamp: 1749739367,
5090
+ timestamp: 1751550659,
5091
5091
  minPrice: 100
5092
5092
  },
5093
5093
  {
@@ -5106,7 +5106,7 @@ var products = [
5106
5106
  "cbBTC"
5107
5107
  ],
5108
5108
  isPrivate: false,
5109
- timestamp: 1749739367,
5109
+ timestamp: 1753877075,
5110
5110
  minPrice: 100
5111
5111
  },
5112
5112
  {
@@ -5394,7 +5394,7 @@ var products = [
5394
5394
  "cbBTC"
5395
5395
  ],
5396
5396
  isPrivate: false,
5397
- timestamp: 1740672395,
5397
+ timestamp: 1733326763,
5398
5398
  minPrice: 49
5399
5399
  },
5400
5400
  {
@@ -5413,7 +5413,7 @@ var products = [
5413
5413
  "cbBTC"
5414
5414
  ],
5415
5415
  isPrivate: false,
5416
- timestamp: 1740672395,
5416
+ timestamp: 1733326763,
5417
5417
  minPrice: 225
5418
5418
  },
5419
5419
  {
@@ -5432,7 +5432,7 @@ var products = [
5432
5432
  "cbBTC"
5433
5433
  ],
5434
5434
  isPrivate: false,
5435
- timestamp: 1749739367,
5435
+ timestamp: 1753877075,
5436
5436
  minPrice: 310
5437
5437
  },
5438
5438
  {
@@ -5688,7 +5688,7 @@ var products = [
5688
5688
  "USDC"
5689
5689
  ],
5690
5690
  isPrivate: false,
5691
- timestamp: 1747055891,
5691
+ timestamp: 1744902863,
5692
5692
  minPrice: 50
5693
5693
  },
5694
5694
  {
@@ -5919,7 +5919,7 @@ var products = [
5919
5919
  "ETH"
5920
5920
  ],
5921
5921
  isPrivate: true,
5922
- timestamp: 1740672395,
5922
+ timestamp: 1741267523,
5923
5923
  minPrice: 95
5924
5924
  },
5925
5925
  {
@@ -6142,7 +6142,7 @@ var products = [
6142
6142
  "USDC"
6143
6143
  ],
6144
6144
  isPrivate: false,
6145
- timestamp: 1747055891,
6145
+ timestamp: 1742481059,
6146
6146
  minPrice: 100
6147
6147
  },
6148
6148
  {
@@ -6214,7 +6214,7 @@ var products = [
6214
6214
  "cbBTC"
6215
6215
  ],
6216
6216
  isPrivate: false,
6217
- timestamp: 1751550659,
6217
+ timestamp: 1743519947,
6218
6218
  minPrice: 100
6219
6219
  },
6220
6220
  {
@@ -6250,7 +6250,7 @@ var products = [
6250
6250
  "USDC"
6251
6251
  ],
6252
6252
  isPrivate: true,
6253
- timestamp: 1743670835,
6253
+ timestamp: 1743603467,
6254
6254
  minPrice: 1586
6255
6255
  },
6256
6256
  {
@@ -6359,7 +6359,7 @@ var products = [
6359
6359
  "cbBTC"
6360
6360
  ],
6361
6361
  isPrivate: false,
6362
- timestamp: 1747055891,
6362
+ timestamp: 1751550659,
6363
6363
  minPrice: 309
6364
6364
  },
6365
6365
  {
@@ -6521,7 +6521,7 @@ var products = [
6521
6521
  "cbBTC"
6522
6522
  ],
6523
6523
  isPrivate: false,
6524
- timestamp: 1750162583,
6524
+ timestamp: 1751550659,
6525
6525
  minPrice: 100
6526
6526
  },
6527
6527
  {