@nexusmutual/sdk 1.26.0 → 1.27.0
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/data/products.json +23 -23
- package/dist/data/version.json +1 -1
- package/dist/index.d.mts +42 -27
- package/dist/index.d.ts +42 -27
- package/dist/index.js +31 -24
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +31 -24
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -466,6 +466,16 @@ declare const fileSchema: z.ZodObject<{
|
|
|
466
466
|
version: "1.0";
|
|
467
467
|
file: string;
|
|
468
468
|
}>;
|
|
469
|
+
declare const productAnnexSchema: z.ZodObject<{
|
|
470
|
+
version: z.ZodLiteral<"1.0">;
|
|
471
|
+
annex: z.ZodString;
|
|
472
|
+
}, "strip", z.ZodTypeAny, {
|
|
473
|
+
annex: string;
|
|
474
|
+
version: "1.0";
|
|
475
|
+
}, {
|
|
476
|
+
annex: string;
|
|
477
|
+
version: "1.0";
|
|
478
|
+
}>;
|
|
469
479
|
|
|
470
480
|
declare enum ContentType {
|
|
471
481
|
coverValidators = "coverValidators",
|
|
@@ -482,7 +492,8 @@ declare enum ContentType {
|
|
|
482
492
|
assessmentReason = "assessmentReason",
|
|
483
493
|
governanceProposal = "governanceProposal",
|
|
484
494
|
governanceCategory = "governanceCategory",
|
|
485
|
-
file = "file"
|
|
495
|
+
file = "file",
|
|
496
|
+
productAnnex = "productAnnex"
|
|
486
497
|
}
|
|
487
498
|
type CoverValidators = z.infer<typeof coverValidatorsSchema>;
|
|
488
499
|
type CoverQuotaShare = z.infer<typeof coverQuotaShareSchema>;
|
|
@@ -499,8 +510,9 @@ type GovernanceProposal = z.infer<typeof governanceProposalSchema>;
|
|
|
499
510
|
type GovernanceCategory = z.infer<typeof governanceCategorySchema>;
|
|
500
511
|
type File = z.infer<typeof fileSchema>;
|
|
501
512
|
type AssessmentReason = z.infer<typeof assessmentReasonSchema>;
|
|
502
|
-
type
|
|
503
|
-
type
|
|
513
|
+
type ProductAnnex = z.infer<typeof productAnnexSchema>;
|
|
514
|
+
type IPFSContentTypes = CoverValidators | CoverQuotaShare | CoverAumCoverAmountPercentage | CoverWalletAddress | CoverWalletAddresses | CoverFreeText | CoverDesignatedWallets | DefiPassContent | StakingPoolDetails | ClaimProof | AssessmentCriteriaAnswers | AssessmentReason | GovernanceProposal | GovernanceCategory | File | ProductAnnex;
|
|
515
|
+
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] | [type: ContentType.productAnnex, content: ProductAnnex];
|
|
504
516
|
declare const IPFS_CONTENT_TYPE_BY_PRODUCT_TYPE: Record<ProductTypes, ContentType | undefined>;
|
|
505
517
|
interface IPFSContentForProductType {
|
|
506
518
|
[ProductTypes.ethSlashing]: CoverValidators;
|
|
@@ -712,6 +724,9 @@ declare class Ipfs extends NexusSDKBase {
|
|
|
712
724
|
} | {
|
|
713
725
|
version: "1.0";
|
|
714
726
|
file: string;
|
|
727
|
+
} | {
|
|
728
|
+
annex: string;
|
|
729
|
+
version: "1.0";
|
|
715
730
|
};
|
|
716
731
|
/**
|
|
717
732
|
* Convert IPFS CID to 32-byte hex string
|
|
@@ -3381,7 +3396,7 @@ var products = [
|
|
|
3381
3396
|
"cbBTC"
|
|
3382
3397
|
],
|
|
3383
3398
|
isPrivate: false,
|
|
3384
|
-
timestamp:
|
|
3399
|
+
timestamp: 1754552351,
|
|
3385
3400
|
minPrice: 100
|
|
3386
3401
|
},
|
|
3387
3402
|
{
|
|
@@ -3878,7 +3893,7 @@ var products = [
|
|
|
3878
3893
|
"cbBTC"
|
|
3879
3894
|
],
|
|
3880
3895
|
isPrivate: false,
|
|
3881
|
-
timestamp:
|
|
3896
|
+
timestamp: 1733753135,
|
|
3882
3897
|
minPrice: 100
|
|
3883
3898
|
},
|
|
3884
3899
|
{
|
|
@@ -4862,7 +4877,7 @@ var products = [
|
|
|
4862
4877
|
"cbBTC"
|
|
4863
4878
|
],
|
|
4864
4879
|
isPrivate: false,
|
|
4865
|
-
timestamp:
|
|
4880
|
+
timestamp: 1762356047,
|
|
4866
4881
|
minPrice: 100
|
|
4867
4882
|
},
|
|
4868
4883
|
{
|
|
@@ -5186,7 +5201,7 @@ var products = [
|
|
|
5186
5201
|
"cbBTC"
|
|
5187
5202
|
],
|
|
5188
5203
|
isPrivate: false,
|
|
5189
|
-
timestamp:
|
|
5204
|
+
timestamp: 1762356047,
|
|
5190
5205
|
minPrice: 100
|
|
5191
5206
|
},
|
|
5192
5207
|
{
|
|
@@ -5205,7 +5220,7 @@ var products = [
|
|
|
5205
5220
|
"cbBTC"
|
|
5206
5221
|
],
|
|
5207
5222
|
isPrivate: false,
|
|
5208
|
-
timestamp:
|
|
5223
|
+
timestamp: 1762356047,
|
|
5209
5224
|
minPrice: 100
|
|
5210
5225
|
},
|
|
5211
5226
|
{
|
|
@@ -5587,7 +5602,7 @@ var products = [
|
|
|
5587
5602
|
"cbBTC"
|
|
5588
5603
|
],
|
|
5589
5604
|
isPrivate: true,
|
|
5590
|
-
timestamp:
|
|
5605
|
+
timestamp: 1761314531,
|
|
5591
5606
|
minPrice: 100
|
|
5592
5607
|
},
|
|
5593
5608
|
{
|
|
@@ -5787,7 +5802,7 @@ var products = [
|
|
|
5787
5802
|
"USDC"
|
|
5788
5803
|
],
|
|
5789
5804
|
isPrivate: false,
|
|
5790
|
-
timestamp:
|
|
5805
|
+
timestamp: 1757074607,
|
|
5791
5806
|
minPrice: 50
|
|
5792
5807
|
},
|
|
5793
5808
|
{
|
|
@@ -5821,7 +5836,7 @@ var products = [
|
|
|
5821
5836
|
"USDC"
|
|
5822
5837
|
],
|
|
5823
5838
|
isPrivate: false,
|
|
5824
|
-
timestamp:
|
|
5839
|
+
timestamp: 1759764875,
|
|
5825
5840
|
minPrice: 50
|
|
5826
5841
|
},
|
|
5827
5842
|
{
|
|
@@ -5855,7 +5870,7 @@ var products = [
|
|
|
5855
5870
|
"ETH"
|
|
5856
5871
|
],
|
|
5857
5872
|
isPrivate: false,
|
|
5858
|
-
timestamp:
|
|
5873
|
+
timestamp: 1757074607,
|
|
5859
5874
|
minPrice: 100
|
|
5860
5875
|
},
|
|
5861
5876
|
{
|
|
@@ -5872,7 +5887,7 @@ var products = [
|
|
|
5872
5887
|
"ETH"
|
|
5873
5888
|
],
|
|
5874
5889
|
isPrivate: false,
|
|
5875
|
-
timestamp:
|
|
5890
|
+
timestamp: 1757074607,
|
|
5876
5891
|
minPrice: 100
|
|
5877
5892
|
},
|
|
5878
5893
|
{
|
|
@@ -5944,7 +5959,7 @@ var products = [
|
|
|
5944
5959
|
"cbBTC"
|
|
5945
5960
|
],
|
|
5946
5961
|
isPrivate: false,
|
|
5947
|
-
timestamp:
|
|
5962
|
+
timestamp: 1739537399,
|
|
5948
5963
|
minPrice: 50
|
|
5949
5964
|
},
|
|
5950
5965
|
{
|
|
@@ -5963,7 +5978,7 @@ var products = [
|
|
|
5963
5978
|
"cbBTC"
|
|
5964
5979
|
],
|
|
5965
5980
|
isPrivate: false,
|
|
5966
|
-
timestamp:
|
|
5981
|
+
timestamp: 1739537399,
|
|
5967
5982
|
minPrice: 235
|
|
5968
5983
|
},
|
|
5969
5984
|
{
|
|
@@ -5982,7 +5997,7 @@ var products = [
|
|
|
5982
5997
|
"cbBTC"
|
|
5983
5998
|
],
|
|
5984
5999
|
isPrivate: false,
|
|
5985
|
-
timestamp:
|
|
6000
|
+
timestamp: 1739537399,
|
|
5986
6001
|
minPrice: 380
|
|
5987
6002
|
},
|
|
5988
6003
|
{
|
|
@@ -6294,7 +6309,7 @@ var products = [
|
|
|
6294
6309
|
"cbBTC"
|
|
6295
6310
|
],
|
|
6296
6311
|
isPrivate: false,
|
|
6297
|
-
timestamp:
|
|
6312
|
+
timestamp: 1762356047,
|
|
6298
6313
|
minPrice: 100
|
|
6299
6314
|
},
|
|
6300
6315
|
{
|
|
@@ -6349,7 +6364,7 @@ var products = [
|
|
|
6349
6364
|
"USDC"
|
|
6350
6365
|
],
|
|
6351
6366
|
isPrivate: true,
|
|
6352
|
-
timestamp:
|
|
6367
|
+
timestamp: 1743670835,
|
|
6353
6368
|
minPrice: 1586
|
|
6354
6369
|
},
|
|
6355
6370
|
{
|
|
@@ -6691,7 +6706,7 @@ var products = [
|
|
|
6691
6706
|
"USDC"
|
|
6692
6707
|
],
|
|
6693
6708
|
isPrivate: false,
|
|
6694
|
-
timestamp:
|
|
6709
|
+
timestamp: 1757074607,
|
|
6695
6710
|
minPrice: 50
|
|
6696
6711
|
},
|
|
6697
6712
|
{
|
|
@@ -6725,7 +6740,7 @@ var products = [
|
|
|
6725
6740
|
"USDC"
|
|
6726
6741
|
],
|
|
6727
6742
|
isPrivate: false,
|
|
6728
|
-
timestamp:
|
|
6743
|
+
timestamp: 1757074607,
|
|
6729
6744
|
minPrice: 300
|
|
6730
6745
|
},
|
|
6731
6746
|
{
|
|
@@ -6762,7 +6777,7 @@ var products = [
|
|
|
6762
6777
|
"cbBTC"
|
|
6763
6778
|
],
|
|
6764
6779
|
isPrivate: false,
|
|
6765
|
-
timestamp:
|
|
6780
|
+
timestamp: 1762356047,
|
|
6766
6781
|
minPrice: 100
|
|
6767
6782
|
},
|
|
6768
6783
|
{
|
|
@@ -6814,7 +6829,7 @@ var products = [
|
|
|
6814
6829
|
"USDC"
|
|
6815
6830
|
],
|
|
6816
6831
|
isPrivate: false,
|
|
6817
|
-
timestamp:
|
|
6832
|
+
timestamp: 1757074607,
|
|
6818
6833
|
minPrice: 50
|
|
6819
6834
|
},
|
|
6820
6835
|
{
|
|
@@ -6865,7 +6880,7 @@ var products = [
|
|
|
6865
6880
|
"USDC"
|
|
6866
6881
|
],
|
|
6867
6882
|
isPrivate: false,
|
|
6868
|
-
timestamp:
|
|
6883
|
+
timestamp: 1762356047,
|
|
6869
6884
|
minPrice: 100
|
|
6870
6885
|
},
|
|
6871
6886
|
{
|
|
@@ -6957,7 +6972,7 @@ var products = [
|
|
|
6957
6972
|
"USDC"
|
|
6958
6973
|
],
|
|
6959
6974
|
isPrivate: false,
|
|
6960
|
-
timestamp:
|
|
6975
|
+
timestamp: 1755778907,
|
|
6961
6976
|
minPrice: 100
|
|
6962
6977
|
},
|
|
6963
6978
|
{
|
|
@@ -7211,7 +7226,7 @@ var products = [
|
|
|
7211
7226
|
"ETH"
|
|
7212
7227
|
],
|
|
7213
7228
|
isPrivate: true,
|
|
7214
|
-
timestamp:
|
|
7229
|
+
timestamp: 1763029895,
|
|
7215
7230
|
minPrice: 50
|
|
7216
7231
|
},
|
|
7217
7232
|
{
|
|
@@ -7437,7 +7452,7 @@ var products = [
|
|
|
7437
7452
|
"ETH"
|
|
7438
7453
|
],
|
|
7439
7454
|
isPrivate: true,
|
|
7440
|
-
timestamp:
|
|
7455
|
+
timestamp: 1761842555,
|
|
7441
7456
|
minPrice: 50
|
|
7442
7457
|
},
|
|
7443
7458
|
{
|
|
@@ -43972,4 +43987,4 @@ declare const nexusSdk: {
|
|
|
43972
43987
|
}];
|
|
43973
43988
|
};
|
|
43974
43989
|
|
|
43975
|
-
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, GENERALIZED_FUND_PORTFOLIO_COMMISSION_RATIO, GetQuoteAndBuyCoverInputsParams, GetQuoteApiResponse, GetQuoteResponse, GovernanceCategory, GovernanceProposal, IMMUNEFI_ADDRESS, IPFSContentForProductType, IPFSContentTypes, IPFSTypeContentTuple, IPFSUploadServiceResponse, IPFS_CONTENT_TYPE_BY_PRODUCT_TYPE, IntString, Integer, Ipfs, KIDNAP_AND_RANSOM_COVER_COMMISSION_RATIO, LEVERAGED_LIQUIDATION_COMMISSION_RATIO, LogoFileName, LogoName, MAXIMUM_COVER_PERIOD, MINIMUM_COVER_PERIOD, NEXUS_MUTUAL_COVER_COMMISSION_RATIO, NEXUS_MUTUAL_DAO_TREASURY_ADDRESS, NON_EVM_PROTOCOL_COMMISSION_RATIO, 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 };
|
|
43990
|
+
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, GENERALIZED_FUND_PORTFOLIO_COMMISSION_RATIO, GetQuoteAndBuyCoverInputsParams, GetQuoteApiResponse, GetQuoteResponse, GovernanceCategory, GovernanceProposal, IMMUNEFI_ADDRESS, IPFSContentForProductType, IPFSContentTypes, IPFSTypeContentTuple, IPFSUploadServiceResponse, IPFS_CONTENT_TYPE_BY_PRODUCT_TYPE, IntString, Integer, Ipfs, KIDNAP_AND_RANSOM_COVER_COMMISSION_RATIO, LEVERAGED_LIQUIDATION_COMMISSION_RATIO, LogoFileName, LogoName, MAXIMUM_COVER_PERIOD, MINIMUM_COVER_PERIOD, NEXUS_MUTUAL_COVER_COMMISSION_RATIO, NEXUS_MUTUAL_DAO_TREASURY_ADDRESS, NON_EVM_PROTOCOL_COMMISSION_RATIO, NO_COMMISSION, NO_COMMISSION_DESTINATION, NexusSDK, NexusSDKConfig, PaymentAsset, PoolAllocationRequest, PoolCapacity, ProductAnnex, 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 };
|
package/dist/index.js
CHANGED
|
@@ -24406,9 +24406,13 @@ var fileSchema = import_zod.z.object({
|
|
|
24406
24406
|
version: import_zod.z.literal(VERSION_1_0),
|
|
24407
24407
|
file: import_zod.z.string()
|
|
24408
24408
|
});
|
|
24409
|
+
var productAnnexSchema = import_zod.z.object({
|
|
24410
|
+
version: import_zod.z.literal(VERSION_1_0),
|
|
24411
|
+
annex: import_zod.z.string()
|
|
24412
|
+
});
|
|
24409
24413
|
|
|
24410
24414
|
// generated/version.json
|
|
24411
|
-
var version27 = "1.
|
|
24415
|
+
var version27 = "1.27.0";
|
|
24412
24416
|
|
|
24413
24417
|
// src/nexus-sdk-base.ts
|
|
24414
24418
|
var import_axios = __toESM(require("axios"));
|
|
@@ -24478,6 +24482,7 @@ var ContentType = /* @__PURE__ */ ((ContentType2) => {
|
|
|
24478
24482
|
ContentType2["governanceProposal"] = "governanceProposal";
|
|
24479
24483
|
ContentType2["governanceCategory"] = "governanceCategory";
|
|
24480
24484
|
ContentType2["file"] = "file";
|
|
24485
|
+
ContentType2["productAnnex"] = "productAnnex";
|
|
24481
24486
|
return ContentType2;
|
|
24482
24487
|
})(ContentType || {});
|
|
24483
24488
|
var IPFS_CONTENT_TYPE_BY_PRODUCT_TYPE = {
|
|
@@ -24594,6 +24599,8 @@ var Ipfs = class extends NexusSDKBase {
|
|
|
24594
24599
|
return fileSchema.parse(content);
|
|
24595
24600
|
case "assessmentReason" /* assessmentReason */:
|
|
24596
24601
|
return assessmentReasonSchema.parse(content);
|
|
24602
|
+
case "productAnnex" /* productAnnex */:
|
|
24603
|
+
return productAnnexSchema.parse(content);
|
|
24597
24604
|
default:
|
|
24598
24605
|
throw new Error(`Invalid content type: ${type}`);
|
|
24599
24606
|
}
|
|
@@ -27303,7 +27310,7 @@ var products_default = [
|
|
|
27303
27310
|
"cbBTC"
|
|
27304
27311
|
],
|
|
27305
27312
|
isPrivate: false,
|
|
27306
|
-
timestamp:
|
|
27313
|
+
timestamp: 1754552351,
|
|
27307
27314
|
minPrice: 100
|
|
27308
27315
|
},
|
|
27309
27316
|
{
|
|
@@ -27788,7 +27795,7 @@ var products_default = [
|
|
|
27788
27795
|
"cbBTC"
|
|
27789
27796
|
],
|
|
27790
27797
|
isPrivate: false,
|
|
27791
|
-
timestamp:
|
|
27798
|
+
timestamp: 1733753135,
|
|
27792
27799
|
minPrice: 100
|
|
27793
27800
|
},
|
|
27794
27801
|
{
|
|
@@ -28762,7 +28769,7 @@ var products_default = [
|
|
|
28762
28769
|
"cbBTC"
|
|
28763
28770
|
],
|
|
28764
28771
|
isPrivate: false,
|
|
28765
|
-
timestamp:
|
|
28772
|
+
timestamp: 1762356047,
|
|
28766
28773
|
minPrice: 100
|
|
28767
28774
|
},
|
|
28768
28775
|
{
|
|
@@ -29080,7 +29087,7 @@ var products_default = [
|
|
|
29080
29087
|
"cbBTC"
|
|
29081
29088
|
],
|
|
29082
29089
|
isPrivate: false,
|
|
29083
|
-
timestamp:
|
|
29090
|
+
timestamp: 1762356047,
|
|
29084
29091
|
minPrice: 100
|
|
29085
29092
|
},
|
|
29086
29093
|
{
|
|
@@ -29099,7 +29106,7 @@ var products_default = [
|
|
|
29099
29106
|
"cbBTC"
|
|
29100
29107
|
],
|
|
29101
29108
|
isPrivate: false,
|
|
29102
|
-
timestamp:
|
|
29109
|
+
timestamp: 1762356047,
|
|
29103
29110
|
minPrice: 100
|
|
29104
29111
|
},
|
|
29105
29112
|
{
|
|
@@ -29472,7 +29479,7 @@ var products_default = [
|
|
|
29472
29479
|
"cbBTC"
|
|
29473
29480
|
],
|
|
29474
29481
|
isPrivate: true,
|
|
29475
|
-
timestamp:
|
|
29482
|
+
timestamp: 1761314531,
|
|
29476
29483
|
minPrice: 100
|
|
29477
29484
|
},
|
|
29478
29485
|
{
|
|
@@ -29667,7 +29674,7 @@ var products_default = [
|
|
|
29667
29674
|
"USDC"
|
|
29668
29675
|
],
|
|
29669
29676
|
isPrivate: false,
|
|
29670
|
-
timestamp:
|
|
29677
|
+
timestamp: 1757074607,
|
|
29671
29678
|
minPrice: 50
|
|
29672
29679
|
},
|
|
29673
29680
|
{
|
|
@@ -29701,7 +29708,7 @@ var products_default = [
|
|
|
29701
29708
|
"USDC"
|
|
29702
29709
|
],
|
|
29703
29710
|
isPrivate: false,
|
|
29704
|
-
timestamp:
|
|
29711
|
+
timestamp: 1759764875,
|
|
29705
29712
|
minPrice: 50
|
|
29706
29713
|
},
|
|
29707
29714
|
{
|
|
@@ -29735,7 +29742,7 @@ var products_default = [
|
|
|
29735
29742
|
"ETH"
|
|
29736
29743
|
],
|
|
29737
29744
|
isPrivate: false,
|
|
29738
|
-
timestamp:
|
|
29745
|
+
timestamp: 1757074607,
|
|
29739
29746
|
minPrice: 100
|
|
29740
29747
|
},
|
|
29741
29748
|
{
|
|
@@ -29752,7 +29759,7 @@ var products_default = [
|
|
|
29752
29759
|
"ETH"
|
|
29753
29760
|
],
|
|
29754
29761
|
isPrivate: false,
|
|
29755
|
-
timestamp:
|
|
29762
|
+
timestamp: 1757074607,
|
|
29756
29763
|
minPrice: 100
|
|
29757
29764
|
},
|
|
29758
29765
|
{
|
|
@@ -29824,7 +29831,7 @@ var products_default = [
|
|
|
29824
29831
|
"cbBTC"
|
|
29825
29832
|
],
|
|
29826
29833
|
isPrivate: false,
|
|
29827
|
-
timestamp:
|
|
29834
|
+
timestamp: 1739537399,
|
|
29828
29835
|
minPrice: 50
|
|
29829
29836
|
},
|
|
29830
29837
|
{
|
|
@@ -29843,7 +29850,7 @@ var products_default = [
|
|
|
29843
29850
|
"cbBTC"
|
|
29844
29851
|
],
|
|
29845
29852
|
isPrivate: false,
|
|
29846
|
-
timestamp:
|
|
29853
|
+
timestamp: 1739537399,
|
|
29847
29854
|
minPrice: 235
|
|
29848
29855
|
},
|
|
29849
29856
|
{
|
|
@@ -29862,7 +29869,7 @@ var products_default = [
|
|
|
29862
29869
|
"cbBTC"
|
|
29863
29870
|
],
|
|
29864
29871
|
isPrivate: false,
|
|
29865
|
-
timestamp:
|
|
29872
|
+
timestamp: 1739537399,
|
|
29866
29873
|
minPrice: 380
|
|
29867
29874
|
},
|
|
29868
29875
|
{
|
|
@@ -30171,7 +30178,7 @@ var products_default = [
|
|
|
30171
30178
|
"cbBTC"
|
|
30172
30179
|
],
|
|
30173
30180
|
isPrivate: false,
|
|
30174
|
-
timestamp:
|
|
30181
|
+
timestamp: 1762356047,
|
|
30175
30182
|
minPrice: 100
|
|
30176
30183
|
},
|
|
30177
30184
|
{
|
|
@@ -30226,7 +30233,7 @@ var products_default = [
|
|
|
30226
30233
|
"USDC"
|
|
30227
30234
|
],
|
|
30228
30235
|
isPrivate: true,
|
|
30229
|
-
timestamp:
|
|
30236
|
+
timestamp: 1743670835,
|
|
30230
30237
|
minPrice: 1586
|
|
30231
30238
|
},
|
|
30232
30239
|
{
|
|
@@ -30560,7 +30567,7 @@ var products_default = [
|
|
|
30560
30567
|
"USDC"
|
|
30561
30568
|
],
|
|
30562
30569
|
isPrivate: false,
|
|
30563
|
-
timestamp:
|
|
30570
|
+
timestamp: 1757074607,
|
|
30564
30571
|
minPrice: 50
|
|
30565
30572
|
},
|
|
30566
30573
|
{
|
|
@@ -30594,7 +30601,7 @@ var products_default = [
|
|
|
30594
30601
|
"USDC"
|
|
30595
30602
|
],
|
|
30596
30603
|
isPrivate: false,
|
|
30597
|
-
timestamp:
|
|
30604
|
+
timestamp: 1757074607,
|
|
30598
30605
|
minPrice: 300
|
|
30599
30606
|
},
|
|
30600
30607
|
{
|
|
@@ -30630,7 +30637,7 @@ var products_default = [
|
|
|
30630
30637
|
"cbBTC"
|
|
30631
30638
|
],
|
|
30632
30639
|
isPrivate: false,
|
|
30633
|
-
timestamp:
|
|
30640
|
+
timestamp: 1762356047,
|
|
30634
30641
|
minPrice: 100
|
|
30635
30642
|
},
|
|
30636
30643
|
{
|
|
@@ -30681,7 +30688,7 @@ var products_default = [
|
|
|
30681
30688
|
"USDC"
|
|
30682
30689
|
],
|
|
30683
30690
|
isPrivate: false,
|
|
30684
|
-
timestamp:
|
|
30691
|
+
timestamp: 1757074607,
|
|
30685
30692
|
minPrice: 50
|
|
30686
30693
|
},
|
|
30687
30694
|
{
|
|
@@ -30732,7 +30739,7 @@ var products_default = [
|
|
|
30732
30739
|
"USDC"
|
|
30733
30740
|
],
|
|
30734
30741
|
isPrivate: false,
|
|
30735
|
-
timestamp:
|
|
30742
|
+
timestamp: 1762356047,
|
|
30736
30743
|
minPrice: 100
|
|
30737
30744
|
},
|
|
30738
30745
|
{
|
|
@@ -30823,7 +30830,7 @@ var products_default = [
|
|
|
30823
30830
|
"USDC"
|
|
30824
30831
|
],
|
|
30825
30832
|
isPrivate: false,
|
|
30826
|
-
timestamp:
|
|
30833
|
+
timestamp: 1755778907,
|
|
30827
30834
|
minPrice: 100
|
|
30828
30835
|
},
|
|
30829
30836
|
{
|
|
@@ -31073,7 +31080,7 @@ var products_default = [
|
|
|
31073
31080
|
"ETH"
|
|
31074
31081
|
],
|
|
31075
31082
|
isPrivate: true,
|
|
31076
|
-
timestamp:
|
|
31083
|
+
timestamp: 1763029895,
|
|
31077
31084
|
minPrice: 50
|
|
31078
31085
|
},
|
|
31079
31086
|
{
|
|
@@ -31294,7 +31301,7 @@ var products_default = [
|
|
|
31294
31301
|
"ETH"
|
|
31295
31302
|
],
|
|
31296
31303
|
isPrivate: true,
|
|
31297
|
-
timestamp:
|
|
31304
|
+
timestamp: 1761842555,
|
|
31298
31305
|
minPrice: 50
|
|
31299
31306
|
},
|
|
31300
31307
|
{
|