@nexusmutual/sdk 1.12.0-rc.5 → 1.12.0-rc.6

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/index.d.mts CHANGED
@@ -340,7 +340,7 @@ declare const stakingPoolDetailsSchema: z.ZodObject<{
340
340
  poolName: string;
341
341
  poolDescription: string;
342
342
  }>;
343
- declare const claimProofSchema: z.ZodObject<{
343
+ declare const claimProofSchema: z.ZodDiscriminatedUnion<"version", [z.ZodObject<{
344
344
  version: z.ZodLiteral<"1.0">;
345
345
  coverId: z.ZodNumber;
346
346
  affectedChain: z.ZodString;
@@ -367,7 +367,51 @@ declare const claimProofSchema: z.ZodObject<{
367
367
  incidentTransactionHashes?: string[] | undefined;
368
368
  incidentEvidenceLinks?: string[] | undefined;
369
369
  attachedFilesHashes?: string[] | undefined;
370
- }>;
370
+ }>, z.ZodObject<{
371
+ version: z.ZodLiteral<"2.0">;
372
+ coverId: z.ZodNumber;
373
+ affectedChain: z.ZodString;
374
+ affectedAddresses: z.ZodArray<z.ZodObject<{
375
+ address: z.ZodString;
376
+ proof: z.ZodString;
377
+ isVerified: z.ZodBoolean;
378
+ }, "strip", z.ZodTypeAny, {
379
+ address: string;
380
+ proof: string;
381
+ isVerified: boolean;
382
+ }, {
383
+ address: string;
384
+ proof: string;
385
+ isVerified: boolean;
386
+ }>, "many">;
387
+ incidentDescription: z.ZodString;
388
+ attachedFilesHashes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
389
+ }, "strip", z.ZodTypeAny, {
390
+ version: "2.0";
391
+ coverId: number;
392
+ affectedChain: string;
393
+ affectedAddresses: {
394
+ address: string;
395
+ proof: string;
396
+ isVerified: boolean;
397
+ }[];
398
+ incidentDescription: string;
399
+ attachedFilesHashes?: string[] | undefined;
400
+ }, {
401
+ version: "2.0";
402
+ coverId: number;
403
+ affectedChain: string;
404
+ affectedAddresses: {
405
+ address: string;
406
+ proof: string;
407
+ isVerified: boolean;
408
+ }[];
409
+ incidentDescription: string;
410
+ attachedFilesHashes?: string[] | undefined;
411
+ }>]>;
412
+ /** @deprecated
413
+ * use assessmentReasonSchema instead
414
+ */
371
415
  declare const assessmentCriteriaAnswersSchema: z.ZodObject<{
372
416
  version: z.ZodLiteral<"1.0">;
373
417
  answers: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodString>, Record<string, string>, Record<string, string>>;
@@ -378,6 +422,16 @@ declare const assessmentCriteriaAnswersSchema: z.ZodObject<{
378
422
  version: "1.0";
379
423
  answers: Record<string, string>;
380
424
  }>;
425
+ declare const assessmentReasonSchema: z.ZodObject<{
426
+ version: z.ZodLiteral<"1.0">;
427
+ reason: z.ZodString;
428
+ }, "strip", z.ZodTypeAny, {
429
+ version: "1.0";
430
+ reason: string;
431
+ }, {
432
+ version: "1.0";
433
+ reason: string;
434
+ }>;
381
435
  declare const governanceProposalSchema: z.ZodObject<{
382
436
  version: z.ZodLiteral<"1.0">;
383
437
  proposal: z.ZodString;
@@ -398,6 +452,16 @@ declare const governanceCategorySchema: z.ZodObject<{
398
452
  version: "1.0";
399
453
  category: string;
400
454
  }>;
455
+ declare const fileSchema: z.ZodObject<{
456
+ version: z.ZodLiteral<"1.0">;
457
+ file: z.ZodAny;
458
+ }, "strip", z.ZodTypeAny, {
459
+ version: "1.0";
460
+ file?: any;
461
+ }, {
462
+ version: "1.0";
463
+ file?: any;
464
+ }>;
401
465
 
402
466
  declare enum ContentType {
403
467
  coverValidators = "coverValidators",
@@ -411,8 +475,10 @@ declare enum ContentType {
411
475
  stakingPoolDetails = "stakingPoolDetails",
412
476
  claimProof = "claimProof",
413
477
  assessmentCriteriaAnswers = "assessmentCriteriaAnswers",
478
+ assessmentReason = "assessmentReason",
414
479
  governanceProposal = "governanceProposal",
415
- governanceCategory = "governanceCategory"
480
+ governanceCategory = "governanceCategory",
481
+ file = "file"
416
482
  }
417
483
  type CoverValidators = z.infer<typeof coverValidatorsSchema>;
418
484
  type CoverQuotaShare = z.infer<typeof coverQuotaShareSchema>;
@@ -427,8 +493,10 @@ type ClaimProof = z.infer<typeof claimProofSchema>;
427
493
  type AssessmentCriteriaAnswers = z.infer<typeof assessmentCriteriaAnswersSchema>;
428
494
  type GovernanceProposal = z.infer<typeof governanceProposalSchema>;
429
495
  type GovernanceCategory = z.infer<typeof governanceCategorySchema>;
430
- type IPFSContentTypes = CoverValidators | CoverQuotaShare | CoverAumCoverAmountPercentage | CoverWalletAddress | CoverWalletAddresses | CoverFreeText | CoverDesignatedWallets | DefiPassContent | StakingPoolDetails | ClaimProof | AssessmentCriteriaAnswers | GovernanceProposal | GovernanceCategory;
431
- type IPFSTypeContentTuple = [type: ContentType.coverValidators, content: CoverValidators] | [type: ContentType.coverQuotaShare, content: CoverQuotaShare] | [type: ContentType.coverAumCoverAmountPercentage, content: CoverAumCoverAmountPercentage] | [type: ContentType.coverWalletAddress, content: CoverWalletAddress] | [type: ContentType.coverWalletAddresses, content: CoverWalletAddresses] | [type: ContentType.coverFreeText, content: CoverFreeText] | [type: ContentType.coverDesignatedWallets, content: CoverDesignatedWallets] | [type: ContentType.defiPassContent, content: DefiPassContent] | [type: ContentType.stakingPoolDetails, content: StakingPoolDetails] | [type: ContentType.claimProof, content: ClaimProof] | [type: ContentType.assessmentCriteriaAnswers, content: AssessmentCriteriaAnswers] | [type: ContentType.governanceProposal, content: GovernanceProposal] | [type: ContentType.governanceCategory, content: GovernanceCategory];
496
+ type File = z.infer<typeof fileSchema>;
497
+ type AssessmentReason = z.infer<typeof assessmentReasonSchema>;
498
+ type IPFSContentTypes = CoverValidators | CoverQuotaShare | CoverAumCoverAmountPercentage | CoverWalletAddress | CoverWalletAddresses | CoverFreeText | CoverDesignatedWallets | DefiPassContent | StakingPoolDetails | ClaimProof | AssessmentCriteriaAnswers | AssessmentReason | GovernanceProposal | GovernanceCategory | File;
499
+ type IPFSTypeContentTuple = [type: ContentType.coverValidators, content: CoverValidators] | [type: ContentType.coverQuotaShare, content: CoverQuotaShare] | [type: ContentType.coverAumCoverAmountPercentage, content: CoverAumCoverAmountPercentage] | [type: ContentType.coverWalletAddress, content: CoverWalletAddress] | [type: ContentType.coverWalletAddresses, content: CoverWalletAddresses] | [type: ContentType.coverFreeText, content: CoverFreeText] | [type: ContentType.coverDesignatedWallets, content: CoverDesignatedWallets] | [type: ContentType.defiPassContent, content: DefiPassContent] | [type: ContentType.stakingPoolDetails, content: StakingPoolDetails] | [type: ContentType.claimProof, content: ClaimProof] | [type: ContentType.assessmentCriteriaAnswers, content: AssessmentCriteriaAnswers] | [type: ContentType.assessmentReason, content: AssessmentReason] | [type: ContentType.governanceProposal, content: GovernanceProposal] | [type: ContentType.governanceCategory, content: GovernanceCategory] | [type: ContentType.file, content: File];
432
500
  declare const IPFS_CONTENT_TYPE_BY_PRODUCT_TYPE: Record<ProductTypes, ContentType | undefined>;
433
501
  interface IPFSContentForProductType {
434
502
  [ProductTypes.ethSlashing]: CoverValidators;
@@ -611,16 +679,45 @@ declare class Ipfs extends NexusSDKBase {
611
679
  incidentTransactionHashes?: string[] | undefined;
612
680
  incidentEvidenceLinks?: string[] | undefined;
613
681
  attachedFilesHashes?: string[] | undefined;
682
+ } | {
683
+ version: "2.0";
684
+ coverId: number;
685
+ affectedChain: string;
686
+ affectedAddresses: {
687
+ address: string;
688
+ proof: string;
689
+ isVerified: boolean;
690
+ }[];
691
+ incidentDescription: string;
692
+ attachedFilesHashes?: string[] | undefined;
614
693
  } | {
615
694
  version: "1.0";
616
695
  answers: Record<string, string>;
696
+ } | {
697
+ version: "1.0";
698
+ reason: string;
617
699
  } | {
618
700
  version: "1.0";
619
701
  proposal: string;
620
702
  } | {
621
703
  version: "1.0";
622
704
  category: string;
705
+ } | {
706
+ version: "1.0";
707
+ file?: any;
623
708
  };
709
+ /**
710
+ * Convert IPFS CID to 32-byte hex string
711
+ * @param ipfsCid IPFS CID to convert
712
+ * @returns 32-byte hex string
713
+ */
714
+ get32BytesIPFSHash(ipfsCid: string): string;
715
+ /**
716
+ * Convert 32-byte hex string back to IPFS hash
717
+ * @param bytes 32-byte hex string
718
+ * @returns IPFS CID
719
+ */
720
+ getIPFSCidFromHexBytes(bytes: string): string;
624
721
  }
625
722
 
626
723
  /**
@@ -1645,7 +1742,7 @@ var products = [
1645
1742
  "cbBTC"
1646
1743
  ],
1647
1744
  isPrivate: false,
1648
- timestamp: 1738243583,
1745
+ timestamp: 1726758407,
1649
1746
  minPrice: 60
1650
1747
  },
1651
1748
  {
@@ -3280,7 +3377,7 @@ var products = [
3280
3377
  "cbBTC"
3281
3378
  ],
3282
3379
  isPrivate: false,
3283
- timestamp: 1753877075,
3380
+ timestamp: 1742481059,
3284
3381
  minPrice: 100
3285
3382
  },
3286
3383
  {
@@ -3654,7 +3751,7 @@ var products = [
3654
3751
  "ETH"
3655
3752
  ],
3656
3753
  isPrivate: false,
3657
- timestamp: 1731583079,
3754
+ timestamp: 1758283931,
3658
3755
  minPrice: 100
3659
3756
  },
3660
3757
  {
@@ -3905,7 +4002,7 @@ var products = [
3905
4002
  "cbBTC"
3906
4003
  ],
3907
4004
  isPrivate: true,
3908
- timestamp: 1752834371,
4005
+ timestamp: 1736430671,
3909
4006
  minPrice: 100
3910
4007
  },
3911
4008
  {
@@ -4201,7 +4298,7 @@ var products = [
4201
4298
  "cbBTC"
4202
4299
  ],
4203
4300
  isPrivate: false,
4204
- timestamp: 1726227311,
4301
+ timestamp: 1734557999,
4205
4302
  minPrice: 100
4206
4303
  },
4207
4304
  {
@@ -4368,7 +4465,7 @@ var products = [
4368
4465
  "cbBTC"
4369
4466
  ],
4370
4467
  isPrivate: false,
4371
- timestamp: 1758283931,
4468
+ timestamp: 1749739367,
4372
4469
  minPrice: 100
4373
4470
  },
4374
4471
  {
@@ -4387,7 +4484,7 @@ var products = [
4387
4484
  "cbBTC"
4388
4485
  ],
4389
4486
  isPrivate: false,
4390
- timestamp: 1758283931,
4487
+ timestamp: 1734557999,
4391
4488
  minPrice: 100
4392
4489
  },
4393
4490
  {
@@ -4474,7 +4571,7 @@ var products = [
4474
4571
  "ETH"
4475
4572
  ],
4476
4573
  isPrivate: true,
4477
- timestamp: 1758811223,
4574
+ timestamp: 1753877075,
4478
4575
  minPrice: 100
4479
4576
  },
4480
4577
  {
@@ -4527,7 +4624,7 @@ var products = [
4527
4624
  "USDC"
4528
4625
  ],
4529
4626
  isPrivate: false,
4530
- timestamp: 1758283931,
4627
+ timestamp: 1734557999,
4531
4628
  minPrice: 100
4532
4629
  },
4533
4630
  {
@@ -4726,7 +4823,7 @@ var products = [
4726
4823
  "ETH"
4727
4824
  ],
4728
4825
  isPrivate: false,
4729
- timestamp: 1734557999,
4826
+ timestamp: 1758283931,
4730
4827
  minPrice: 100
4731
4828
  },
4732
4829
  {
@@ -4765,7 +4862,7 @@ var products = [
4765
4862
  "cbBTC"
4766
4863
  ],
4767
4864
  isPrivate: false,
4768
- timestamp: 1741267523,
4865
+ timestamp: 1751550659,
4769
4866
  minPrice: 100
4770
4867
  },
4771
4868
  {
@@ -4953,7 +5050,7 @@ var products = [
4953
5050
  "cbBTC"
4954
5051
  ],
4955
5052
  isPrivate: false,
4956
- timestamp: 1758283931,
5053
+ timestamp: 1734557999,
4957
5054
  minPrice: 100
4958
5055
  },
4959
5056
  {
@@ -4973,7 +5070,7 @@ var products = [
4973
5070
  "cbBTC"
4974
5071
  ],
4975
5072
  isPrivate: false,
4976
- timestamp: 1724341943,
5073
+ timestamp: 1734557999,
4977
5074
  minPrice: 100
4978
5075
  },
4979
5076
  {
@@ -5012,7 +5109,7 @@ var products = [
5012
5109
  "cbBTC"
5013
5110
  ],
5014
5111
  isPrivate: false,
5015
- timestamp: 1758283931,
5112
+ timestamp: 1734557999,
5016
5113
  minPrice: 100
5017
5114
  },
5018
5115
  {
@@ -5070,7 +5167,7 @@ var products = [
5070
5167
  "cbBTC"
5071
5168
  ],
5072
5169
  isPrivate: true,
5073
- timestamp: 1740672395,
5170
+ timestamp: 1728564167,
5074
5171
  minPrice: 275
5075
5172
  },
5076
5173
  {
@@ -5089,7 +5186,7 @@ var products = [
5089
5186
  "cbBTC"
5090
5187
  ],
5091
5188
  isPrivate: false,
5092
- timestamp: 1736430671,
5189
+ timestamp: 1741267523,
5093
5190
  minPrice: 100
5094
5191
  },
5095
5192
  {
@@ -5108,7 +5205,7 @@ var products = [
5108
5205
  "cbBTC"
5109
5206
  ],
5110
5207
  isPrivate: false,
5111
- timestamp: 1757486507,
5208
+ timestamp: 1759930091,
5112
5209
  minPrice: 100
5113
5210
  },
5114
5211
  {
@@ -5241,7 +5338,7 @@ var products = [
5241
5338
  "USDC"
5242
5339
  ],
5243
5340
  isPrivate: false,
5244
- timestamp: 1726758407,
5341
+ timestamp: 1734557999,
5245
5342
  minPrice: 100
5246
5343
  },
5247
5344
  {
@@ -5258,7 +5355,7 @@ var products = [
5258
5355
  "USDC"
5259
5356
  ],
5260
5357
  isPrivate: false,
5261
- timestamp: 1726758407,
5358
+ timestamp: 1734557999,
5262
5359
  minPrice: 100
5263
5360
  },
5264
5361
  {
@@ -5274,7 +5371,7 @@ var products = [
5274
5371
  "USDC"
5275
5372
  ],
5276
5373
  isPrivate: false,
5277
- timestamp: 1726758407,
5374
+ timestamp: 1738243583,
5278
5375
  minPrice: 10
5279
5376
  },
5280
5377
  {
@@ -5324,7 +5421,7 @@ var products = [
5324
5421
  "USDC"
5325
5422
  ],
5326
5423
  isPrivate: false,
5327
- timestamp: 1738243583,
5424
+ timestamp: 1731583079,
5328
5425
  minPrice: 25
5329
5426
  },
5330
5427
  {
@@ -5341,7 +5438,7 @@ var products = [
5341
5438
  "cbBTC"
5342
5439
  ],
5343
5440
  isPrivate: false,
5344
- timestamp: 1758283931,
5441
+ timestamp: 1734557999,
5345
5442
  minPrice: 100
5346
5443
  },
5347
5444
  {
@@ -5396,7 +5493,7 @@ var products = [
5396
5493
  "cbBTC"
5397
5494
  ],
5398
5495
  isPrivate: false,
5399
- timestamp: 1740672395,
5496
+ timestamp: 1739537399,
5400
5497
  minPrice: 49
5401
5498
  },
5402
5499
  {
@@ -5415,7 +5512,7 @@ var products = [
5415
5512
  "cbBTC"
5416
5513
  ],
5417
5514
  isPrivate: false,
5418
- timestamp: 1740672395,
5515
+ timestamp: 1739537399,
5419
5516
  minPrice: 225
5420
5517
  },
5421
5518
  {
@@ -5434,7 +5531,7 @@ var products = [
5434
5531
  "cbBTC"
5435
5532
  ],
5436
5533
  isPrivate: false,
5437
- timestamp: 1740672395,
5534
+ timestamp: 1733326763,
5438
5535
  minPrice: 300
5439
5536
  },
5440
5537
  {
@@ -5453,7 +5550,7 @@ var products = [
5453
5550
  "cbBTC"
5454
5551
  ],
5455
5552
  isPrivate: false,
5456
- timestamp: 1734557999,
5553
+ timestamp: 1758283931,
5457
5554
  minPrice: 100
5458
5555
  },
5459
5556
  {
@@ -5490,7 +5587,7 @@ var products = [
5490
5587
  "cbBTC"
5491
5588
  ],
5492
5589
  isPrivate: true,
5493
- timestamp: 1747837547,
5590
+ timestamp: 1758283931,
5494
5591
  minPrice: 100
5495
5592
  },
5496
5593
  {
@@ -5509,7 +5606,7 @@ var products = [
5509
5606
  "cbBTC"
5510
5607
  ],
5511
5608
  isPrivate: false,
5512
- timestamp: 1736430671,
5609
+ timestamp: 1758283931,
5513
5610
  minPrice: 100
5514
5611
  },
5515
5612
  {
@@ -5673,7 +5770,7 @@ var products = [
5673
5770
  "cbBTC"
5674
5771
  ],
5675
5772
  isPrivate: true,
5676
- timestamp: 1739969915,
5773
+ timestamp: 1740672395,
5677
5774
  minPrice: 505
5678
5775
  },
5679
5776
  {
@@ -5690,7 +5787,7 @@ var products = [
5690
5787
  "USDC"
5691
5788
  ],
5692
5789
  isPrivate: false,
5693
- timestamp: 1744902863,
5790
+ timestamp: 1757074607,
5694
5791
  minPrice: 50
5695
5792
  },
5696
5793
  {
@@ -5775,7 +5872,7 @@ var products = [
5775
5872
  "ETH"
5776
5873
  ],
5777
5874
  isPrivate: false,
5778
- timestamp: 1757074607,
5875
+ timestamp: 1747055891,
5779
5876
  minPrice: 100
5780
5877
  },
5781
5878
  {
@@ -5809,7 +5906,7 @@ var products = [
5809
5906
  "cbBTC"
5810
5907
  ],
5811
5908
  isPrivate: false,
5812
- timestamp: 1747055891,
5909
+ timestamp: 1739447471,
5813
5910
  minPrice: 75
5814
5911
  },
5815
5912
  {
@@ -5828,7 +5925,7 @@ var products = [
5828
5925
  "cbBTC"
5829
5926
  ],
5830
5927
  isPrivate: false,
5831
- timestamp: 1758283931,
5928
+ timestamp: 1739447471,
5832
5929
  minPrice: 100
5833
5930
  },
5834
5931
  {
@@ -5847,7 +5944,7 @@ var products = [
5847
5944
  "cbBTC"
5848
5945
  ],
5849
5946
  isPrivate: false,
5850
- timestamp: 1739537399,
5947
+ timestamp: 1739447471,
5851
5948
  minPrice: 50
5852
5949
  },
5853
5950
  {
@@ -5904,7 +6001,7 @@ var products = [
5904
6001
  "cbBTC"
5905
6002
  ],
5906
6003
  isPrivate: true,
5907
- timestamp: 1745946671,
6004
+ timestamp: 1739969915,
5908
6005
  minPrice: 225
5909
6006
  },
5910
6007
  {
@@ -6144,7 +6241,7 @@ var products = [
6144
6241
  "USDC"
6145
6242
  ],
6146
6243
  isPrivate: false,
6147
- timestamp: 1742481059,
6244
+ timestamp: 1747055891,
6148
6245
  minPrice: 75
6149
6246
  },
6150
6247
  {
@@ -6178,7 +6275,7 @@ var products = [
6178
6275
  "USDC"
6179
6276
  ],
6180
6277
  isPrivate: false,
6181
- timestamp: 1758283931,
6278
+ timestamp: 1747055891,
6182
6279
  minPrice: 100
6183
6280
  },
6184
6281
  {
@@ -6197,7 +6294,7 @@ var products = [
6197
6294
  "cbBTC"
6198
6295
  ],
6199
6296
  isPrivate: false,
6200
- timestamp: 1749739367,
6297
+ timestamp: 1747055891,
6201
6298
  minPrice: 100
6202
6299
  },
6203
6300
  {
@@ -6252,7 +6349,7 @@ var products = [
6252
6349
  "USDC"
6253
6350
  ],
6254
6351
  isPrivate: true,
6255
- timestamp: 1743670835,
6352
+ timestamp: 1743603467,
6256
6353
  minPrice: 1586
6257
6354
  },
6258
6355
  {
@@ -6361,7 +6458,7 @@ var products = [
6361
6458
  "cbBTC"
6362
6459
  ],
6363
6460
  isPrivate: false,
6364
- timestamp: 1753877075,
6461
+ timestamp: 1747055891,
6365
6462
  minPrice: 300
6366
6463
  },
6367
6464
  {
@@ -6487,7 +6584,7 @@ var products = [
6487
6584
  "cbBTC"
6488
6585
  ],
6489
6586
  isPrivate: false,
6490
- timestamp: 1751550659,
6587
+ timestamp: 1748970347,
6491
6588
  minPrice: 100
6492
6589
  },
6493
6590
  {
@@ -6523,7 +6620,7 @@ var products = [
6523
6620
  "cbBTC"
6524
6621
  ],
6525
6622
  isPrivate: false,
6526
- timestamp: 1750162583,
6623
+ timestamp: 1751550659,
6527
6624
  minPrice: 100
6528
6625
  },
6529
6626
  {
@@ -6577,7 +6674,7 @@ var products = [
6577
6674
  "USDC"
6578
6675
  ],
6579
6676
  isPrivate: false,
6580
- timestamp: 1757074607,
6677
+ timestamp: 1752150803,
6581
6678
  minPrice: 50
6582
6679
  },
6583
6680
  {
@@ -6594,7 +6691,7 @@ var products = [
6594
6691
  "USDC"
6595
6692
  ],
6596
6693
  isPrivate: false,
6597
- timestamp: 1757074607,
6694
+ timestamp: 1754552351,
6598
6695
  minPrice: 50
6599
6696
  },
6600
6697
  {
@@ -6665,7 +6762,7 @@ var products = [
6665
6762
  "cbBTC"
6666
6763
  ],
6667
6764
  isPrivate: false,
6668
- timestamp: 1752834371,
6765
+ timestamp: 1758283931,
6669
6766
  minPrice: 100
6670
6767
  },
6671
6768
  {
@@ -6717,7 +6814,7 @@ var products = [
6717
6814
  "USDC"
6718
6815
  ],
6719
6816
  isPrivate: false,
6720
- timestamp: 1753877075,
6817
+ timestamp: 1757074607,
6721
6818
  minPrice: 50
6722
6819
  },
6723
6820
  {
@@ -6768,7 +6865,7 @@ var products = [
6768
6865
  "USDC"
6769
6866
  ],
6770
6867
  isPrivate: false,
6771
- timestamp: 1753877075,
6868
+ timestamp: 1758283931,
6772
6869
  minPrice: 100
6773
6870
  },
6774
6871
  {
@@ -7009,7 +7106,7 @@ var products = [
7009
7106
  "cbBTC"
7010
7107
  ],
7011
7108
  isPrivate: true,
7012
- timestamp: 1757486507,
7109
+ timestamp: 1759764875,
7013
7110
  minPrice: 100
7014
7111
  },
7015
7112
  {
@@ -43186,4 +43283,4 @@ declare const nexusSdk: {
43186
43283
  }];
43187
43284
  };
43188
43285
 
43189
- export { Address, ApiResponse, AssessmentCriteriaAnswers, BUY_COVER_COMMISSION_DESTINATION_BY_PRODUCT_TYPE, BUY_COVER_COMMISSION_RATIO_BY_PRODUCT_TYPE, BuyCoverInput, BuyCoverParams, COMMISSION_DENOMINATOR, CRYPTO_COVER_COMMISSION_RATIO, Capacity, ClaimProof, ContentType, CoverAsset, CoverAumCoverAmountPercentage, CoverDesignatedWallets, CoverFreeText, CoverQuotaShare, CoverRouterProductCapacityResponse, CoverRouterQuoteResponse, CoverValidators, CoverWalletAddress, CoverWalletAddresses, DEFAULT_COMMISSION_RATIO, DEFAULT_SLIPPAGE, DEFI_PASS_COMMISSION_RATIO, DefiPassContent, ErrorApiResponse, ErrorResponse, FUND_PORTFOLIO_COMMISSION_RATIO, FloatString, GENERALISED_FUND_PORTFOLIO_COMMISSION_RATIO, GetQuoteAndBuyCoverInputsParams, GetQuoteApiResponse, GetQuoteResponse, GovernanceCategory, GovernanceProposal, IMMUNEFI_ADDRESS, IPFSContentForProductType, IPFSContentTypes, IPFSTypeContentTuple, IPFSUploadServiceResponse, IPFS_CONTENT_TYPE_BY_PRODUCT_TYPE, IntString, Integer, Ipfs, LEVERAGED_LIQUIDATION_COMMISSION_RATIO, LogoFileName, LogoName, MAXIMUM_COVER_PERIOD, MINIMUM_COVER_PERIOD, NEXUS_MUTUAL_COVER_COMMISSION_RATIO, NEXUS_MUTUAL_DAO_TREASURY_ADDRESS, NO_COMMISSION, NO_COMMISSION_DESTINATION, NexusSDK, NexusSDKConfig, PaymentAsset, PoolAllocationRequest, PoolCapacity, ProductCategoryEnum, ProductTypes, Quote, QuoteDisplayInfo, QuoteParams, Reserves, SHERLOCK_BUG_BOUNTY_COMMISSION_RATIO, SLIPPAGE_DENOMINATOR, SPEARBIT_CANTINA_ADDRESS, StakingPoolDetails, Swap, TARGET_PRICE_DENOMINATOR, TRM_COMMISSION_RATIO, allLogoFileNames, allLogoNames, allPrivateProductsIds, categoryLabelByEnum, nexusSdk as default, productCategoryMap, productTypes, products };
43286
+ export { Address, ApiResponse, AssessmentCriteriaAnswers, AssessmentReason, BUY_COVER_COMMISSION_DESTINATION_BY_PRODUCT_TYPE, BUY_COVER_COMMISSION_RATIO_BY_PRODUCT_TYPE, BuyCoverInput, BuyCoverParams, COMMISSION_DENOMINATOR, CRYPTO_COVER_COMMISSION_RATIO, Capacity, ClaimProof, ContentType, CoverAsset, CoverAumCoverAmountPercentage, CoverDesignatedWallets, CoverFreeText, CoverQuotaShare, CoverRouterProductCapacityResponse, CoverRouterQuoteResponse, CoverValidators, CoverWalletAddress, CoverWalletAddresses, DEFAULT_COMMISSION_RATIO, DEFAULT_SLIPPAGE, DEFI_PASS_COMMISSION_RATIO, DefiPassContent, ErrorApiResponse, ErrorResponse, FUND_PORTFOLIO_COMMISSION_RATIO, File, FloatString, GENERALISED_FUND_PORTFOLIO_COMMISSION_RATIO, GetQuoteAndBuyCoverInputsParams, GetQuoteApiResponse, GetQuoteResponse, GovernanceCategory, GovernanceProposal, IMMUNEFI_ADDRESS, IPFSContentForProductType, IPFSContentTypes, IPFSTypeContentTuple, IPFSUploadServiceResponse, IPFS_CONTENT_TYPE_BY_PRODUCT_TYPE, IntString, Integer, Ipfs, LEVERAGED_LIQUIDATION_COMMISSION_RATIO, LogoFileName, LogoName, MAXIMUM_COVER_PERIOD, MINIMUM_COVER_PERIOD, NEXUS_MUTUAL_COVER_COMMISSION_RATIO, NEXUS_MUTUAL_DAO_TREASURY_ADDRESS, NO_COMMISSION, NO_COMMISSION_DESTINATION, NexusSDK, NexusSDKConfig, PaymentAsset, PoolAllocationRequest, PoolCapacity, ProductCategoryEnum, ProductTypes, Quote, QuoteDisplayInfo, QuoteParams, Reserves, SHERLOCK_BUG_BOUNTY_COMMISSION_RATIO, SLIPPAGE_DENOMINATOR, SPEARBIT_CANTINA_ADDRESS, StakingPoolDetails, Swap, TARGET_PRICE_DENOMINATOR, TRM_COMMISSION_RATIO, allLogoFileNames, allLogoNames, allPrivateProductsIds, categoryLabelByEnum, nexusSdk as default, productCategoryMap, productTypes, products };