@mobula_labs/types 0.1.9 → 0.1.11
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/index.cjs +5011 -3856
- package/dist/cjs/index.cjs.map +59 -51
- package/dist/esm/index.js +5011 -3856
- package/dist/esm/index.js.map +59 -51
- package/dist/index.d.ts +8 -0
- package/dist/misc/ApiKeysQueries.d.ts +1 -1
- package/dist/utils/functions/openAPIHelpers.d.ts +41 -0
- package/dist/utils/schemas/BaseMessage.d.ts +2 -0
- package/dist/utils/schemas/EnrichedMarketData.d.ts +138 -1
- package/dist/utils/schemas/MarketDetailsOutput.d.ts +169 -0
- package/dist/utils/schemas/SecuritySchemas.d.ts +9 -0
- package/dist/utils/schemas/TokenDetailsOutput.d.ts +32 -0
- package/dist/utils/schemas/WalletDeployerSchema.d.ts +124 -12
- package/dist/utils/schemas/WalletMetadataOutput.d.ts +21 -0
- package/dist/v1/market/FundingRateSchema.d.ts +3 -0
- package/dist/v1/market/HoldersSchema.d.ts +5 -0
- package/dist/v1/market/MarketBlockchainPairsSchema.d.ts +59 -0
- package/dist/v1/market/MarketDataSchema.d.ts +5 -0
- package/dist/v1/market/MarketHistoryPairSchema.d.ts +5 -0
- package/dist/v1/market/MarketLighthouseSchema.d.ts +2734 -0
- package/dist/v1/market/MarketMultiDataSchema.d.ts +9 -4
- package/dist/v1/market/MarketMultiHistorySchema.d.ts +5 -0
- package/dist/v1/market/MarketMultiPricesSchema.d.ts +4 -4
- package/dist/v1/market/MarketPairSchema.d.ts +54 -0
- package/dist/v1/market/MarketPairsSchema.d.ts +68 -0
- package/dist/v1/market/MarketQuerySchema.d.ts +5 -0
- package/dist/v1/market/MarketTokenVsMarketSchema.d.ts +4 -4
- package/dist/v1/metadata/MetadataSchema.d.ts +10 -0
- package/dist/v1/pulse/PulseSchema.d.ts +616 -0
- package/dist/v1/search/SearchSchema.d.ts +112 -0
- package/dist/v1/wallet/DeployerSchema.d.ts +72 -8
- package/dist/v1/wallet/HistorySchema.d.ts +5 -0
- package/dist/v1/wallet/WalletLabelSchema.d.ts +550 -0
- package/dist/v1/wallet/WalletNFTSchema.d.ts +5 -0
- package/dist/v1/wallet/WalletPortfolioSchema.d.ts +32 -0
- package/dist/v1/wallet/WalletTradesSchema.d.ts +133 -20
- package/dist/v1/wallet/WalletTransactionSchema.d.ts +12 -2
- package/dist/v2/asset/AssetDetailsSchema.d.ts +217 -1
- package/dist/v2/market/MarketDetailsSchema.d.ts +454 -0
- package/dist/v2/market/MarketOHLCVHistorySchema.d.ts +3 -3
- package/dist/v2/metadata/SystemMetadataV2Schema.d.ts +424 -0
- package/dist/v2/swap/SwapQuotingBatchOutput.d.ts +1647 -257
- package/dist/v2/swap/SwapQuotingBatchSchema.d.ts +12 -12
- package/dist/v2/swap/SwapQuotingOutput.d.ts +1396 -274
- package/dist/v2/swap/SwapQuotingSchema.d.ts +26 -3
- package/dist/v2/swap/SwapSendOutput.d.ts +105 -0
- package/dist/v2/swap/SwapSendSchema.d.ts +77 -4
- package/dist/v2/token/TokenAthSchema.d.ts +29 -1
- package/dist/v2/token/TokenDetailsSchema.d.ts +124 -1
- package/dist/v2/token/TokenMarketsSchema.d.ts +396 -0
- package/dist/v2/token/TokenOHLCVHistorySchema.d.ts +3 -3
- package/dist/v2/token/TokenPositionsSchema.d.ts +119 -12
- package/dist/v2/token/TokenPriceAtSchema.d.ts +131 -0
- package/dist/v2/token/TokenPriceHistorySchema.d.ts +130 -0
- package/dist/v2/token/TokenSecurityOutput.d.ts +192 -0
- package/dist/v2/token/TokenSecurityQuery.d.ts +13 -1
- package/dist/v2/token/TokenTradesSchema.d.ts +572 -3
- package/dist/v2/trades/EnrichedSwapsSchema.d.ts +15994 -0
- package/dist/v2/trades/TradesFiltersSchema.d.ts +49 -0
- package/dist/v2/wallet/WalletActivityV2Schema.d.ts +53 -0
- package/dist/v2/wallet/WalletAnalysisQuerySchema.d.ts +114 -18
- package/dist/v2/wallet/WalletDeployerSchema.d.ts +72 -8
- package/dist/v2/wallet/WalletPerpsPositionsSchema.d.ts +24 -24
- package/dist/v2/wallet/WalletPositionsSchema.d.ts +5979 -33
- package/dist/v2/wallet/WalletTokenBalancesSchema.d.ts +16 -0
- package/dist/v2/wallet/WalletTradesSchema.d.ts +446 -0
- package/dist/wss/FastTradePayloadSchema.d.ts +12 -1
- package/dist/wss/FundingPayloadSchema.d.ts +3 -0
- package/dist/wss/HoldersV2PayloadSchema.d.ts +30 -0
- package/dist/wss/MarketDetailsPayloadSchema.d.ts +3 -0
- package/dist/wss/OhlcvPayloadSchema.d.ts +3 -0
- package/dist/wss/TokenDetailsPayloadSchema.d.ts +3 -0
- package/dist/x402/X402AgentSchemas.d.ts +62 -0
- package/package.json +2 -2
- package/dist/v2/explorer/BlockDataQuerySchema.d.ts +0 -33
- package/dist/v2/explorer/ContractVerifyQuerySchema.ts +0 -27
- package/dist/v2/wallet/WalleAnalysisQuerySchema.d.ts +0 -1135
- package/dist/v2/wallet/WalleFundingQuerySchema.d.ts +0 -57
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
import { type SDKInput } from '../../utils/functions/openAPIHelpers.ts';
|
|
2
3
|
export declare const AssetTokenDetailsOutput: z.ZodObject<{
|
|
3
4
|
address: z.ZodString;
|
|
4
5
|
chainId: z.ZodString;
|
|
@@ -33,6 +34,16 @@ export declare const AssetTokenDetailsOutput: z.ZodObject<{
|
|
|
33
34
|
factory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34
35
|
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35
36
|
sourceFactory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37
|
+
sourceMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
38
|
+
name: z.ZodString;
|
|
39
|
+
logo: z.ZodString;
|
|
40
|
+
}, "strip", z.ZodTypeAny, {
|
|
41
|
+
name: string;
|
|
42
|
+
logo: string;
|
|
43
|
+
}, {
|
|
44
|
+
name: string;
|
|
45
|
+
logo: string;
|
|
46
|
+
}>>>;
|
|
36
47
|
liquidityUSD: z.ZodOptional<z.ZodNumber>;
|
|
37
48
|
liquidityMaxUSD: z.ZodOptional<z.ZodNumber>;
|
|
38
49
|
bonded: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -251,6 +262,7 @@ export declare const AssetTokenDetailsOutput: z.ZodObject<{
|
|
|
251
262
|
isMintable: z.ZodOptional<z.ZodBoolean>;
|
|
252
263
|
modifyableTax: z.ZodOptional<z.ZodBoolean>;
|
|
253
264
|
selfDestruct: z.ZodOptional<z.ZodBoolean>;
|
|
265
|
+
liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
|
|
254
266
|
}, "strip", z.ZodTypeAny, {
|
|
255
267
|
buyTax?: string | undefined;
|
|
256
268
|
sellTax?: string | undefined;
|
|
@@ -268,6 +280,7 @@ export declare const AssetTokenDetailsOutput: z.ZodObject<{
|
|
|
268
280
|
isMintable?: boolean | undefined;
|
|
269
281
|
modifyableTax?: boolean | undefined;
|
|
270
282
|
selfDestruct?: boolean | undefined;
|
|
283
|
+
liquidityBurnPercentage?: number | undefined;
|
|
271
284
|
noMintAuthority?: boolean | undefined;
|
|
272
285
|
}, {
|
|
273
286
|
buyTax?: string | undefined;
|
|
@@ -286,6 +299,7 @@ export declare const AssetTokenDetailsOutput: z.ZodObject<{
|
|
|
286
299
|
isMintable?: boolean | undefined;
|
|
287
300
|
modifyableTax?: boolean | undefined;
|
|
288
301
|
selfDestruct?: boolean | undefined;
|
|
302
|
+
liquidityBurnPercentage?: number | undefined;
|
|
289
303
|
noMintAuthority?: boolean | undefined;
|
|
290
304
|
}>>;
|
|
291
305
|
twitterReusesCount: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -323,6 +337,9 @@ export declare const AssetTokenDetailsOutput: z.ZodObject<{
|
|
|
323
337
|
trendingScore6h: z.ZodDefault<z.ZodNumber>;
|
|
324
338
|
trendingScore12h: z.ZodDefault<z.ZodNumber>;
|
|
325
339
|
trendingScore24h: z.ZodDefault<z.ZodNumber>;
|
|
340
|
+
isMayhemMode: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
341
|
+
isCashbackCoin: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
342
|
+
isAgentMode: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
326
343
|
} & {
|
|
327
344
|
holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
328
345
|
top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -365,6 +382,9 @@ export declare const AssetTokenDetailsOutput: z.ZodObject<{
|
|
|
365
382
|
marketCapUSD: number;
|
|
366
383
|
marketCapDilutedUSD: number;
|
|
367
384
|
logo: string | null;
|
|
385
|
+
isMayhemMode: boolean | null;
|
|
386
|
+
isCashbackCoin: boolean | null;
|
|
387
|
+
isAgentMode: boolean | null;
|
|
368
388
|
bondedAt: Date | null;
|
|
369
389
|
latestTradeDate: Date | null;
|
|
370
390
|
totalFeesPaidUSD: number;
|
|
@@ -481,6 +501,7 @@ export declare const AssetTokenDetailsOutput: z.ZodObject<{
|
|
|
481
501
|
isMintable?: boolean | undefined;
|
|
482
502
|
modifyableTax?: boolean | undefined;
|
|
483
503
|
selfDestruct?: boolean | undefined;
|
|
504
|
+
liquidityBurnPercentage?: number | undefined;
|
|
484
505
|
noMintAuthority?: boolean | undefined;
|
|
485
506
|
} | null;
|
|
486
507
|
twitterReusesCount: number | null;
|
|
@@ -614,6 +635,10 @@ export declare const AssetTokenDetailsOutput: z.ZodObject<{
|
|
|
614
635
|
factory?: string | null | undefined;
|
|
615
636
|
source?: string | null | undefined;
|
|
616
637
|
sourceFactory?: string | null | undefined;
|
|
638
|
+
sourceMetadata?: {
|
|
639
|
+
name: string;
|
|
640
|
+
logo: string;
|
|
641
|
+
} | null | undefined;
|
|
617
642
|
liquidityUSD?: number | undefined;
|
|
618
643
|
liquidityMaxUSD?: number | undefined;
|
|
619
644
|
bonded?: boolean | undefined;
|
|
@@ -665,6 +690,7 @@ export declare const AssetTokenDetailsOutput: z.ZodObject<{
|
|
|
665
690
|
isMintable?: boolean | undefined;
|
|
666
691
|
modifyableTax?: boolean | undefined;
|
|
667
692
|
selfDestruct?: boolean | undefined;
|
|
693
|
+
liquidityBurnPercentage?: number | undefined;
|
|
668
694
|
noMintAuthority?: boolean | undefined;
|
|
669
695
|
} | null;
|
|
670
696
|
liveStatus: string | null;
|
|
@@ -710,6 +736,10 @@ export declare const AssetTokenDetailsOutput: z.ZodObject<{
|
|
|
710
736
|
factory?: string | null | undefined;
|
|
711
737
|
source?: string | null | undefined;
|
|
712
738
|
sourceFactory?: string | null | undefined;
|
|
739
|
+
sourceMetadata?: {
|
|
740
|
+
name: string;
|
|
741
|
+
logo: string;
|
|
742
|
+
} | null | undefined;
|
|
713
743
|
liquidityUSD?: number | undefined;
|
|
714
744
|
liquidityMaxUSD?: number | undefined;
|
|
715
745
|
bonded?: boolean | undefined;
|
|
@@ -718,6 +748,9 @@ export declare const AssetTokenDetailsOutput: z.ZodObject<{
|
|
|
718
748
|
preBondingFactory?: string | undefined;
|
|
719
749
|
poolAddress?: string | undefined;
|
|
720
750
|
blockchain?: string | undefined;
|
|
751
|
+
isMayhemMode?: boolean | null | undefined;
|
|
752
|
+
isCashbackCoin?: boolean | null | undefined;
|
|
753
|
+
isAgentMode?: boolean | null | undefined;
|
|
721
754
|
deployer?: string | null | undefined;
|
|
722
755
|
athUSD?: number | undefined;
|
|
723
756
|
atlUSD?: number | undefined;
|
|
@@ -1158,6 +1191,16 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
1158
1191
|
factory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1159
1192
|
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1160
1193
|
sourceFactory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1194
|
+
sourceMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1195
|
+
name: z.ZodString;
|
|
1196
|
+
logo: z.ZodString;
|
|
1197
|
+
}, "strip", z.ZodTypeAny, {
|
|
1198
|
+
name: string;
|
|
1199
|
+
logo: string;
|
|
1200
|
+
}, {
|
|
1201
|
+
name: string;
|
|
1202
|
+
logo: string;
|
|
1203
|
+
}>>>;
|
|
1161
1204
|
liquidityUSD: z.ZodOptional<z.ZodNumber>;
|
|
1162
1205
|
liquidityMaxUSD: z.ZodOptional<z.ZodNumber>;
|
|
1163
1206
|
bonded: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1376,6 +1419,7 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
1376
1419
|
isMintable: z.ZodOptional<z.ZodBoolean>;
|
|
1377
1420
|
modifyableTax: z.ZodOptional<z.ZodBoolean>;
|
|
1378
1421
|
selfDestruct: z.ZodOptional<z.ZodBoolean>;
|
|
1422
|
+
liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
|
|
1379
1423
|
}, "strip", z.ZodTypeAny, {
|
|
1380
1424
|
buyTax?: string | undefined;
|
|
1381
1425
|
sellTax?: string | undefined;
|
|
@@ -1393,6 +1437,7 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
1393
1437
|
isMintable?: boolean | undefined;
|
|
1394
1438
|
modifyableTax?: boolean | undefined;
|
|
1395
1439
|
selfDestruct?: boolean | undefined;
|
|
1440
|
+
liquidityBurnPercentage?: number | undefined;
|
|
1396
1441
|
noMintAuthority?: boolean | undefined;
|
|
1397
1442
|
}, {
|
|
1398
1443
|
buyTax?: string | undefined;
|
|
@@ -1411,6 +1456,7 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
1411
1456
|
isMintable?: boolean | undefined;
|
|
1412
1457
|
modifyableTax?: boolean | undefined;
|
|
1413
1458
|
selfDestruct?: boolean | undefined;
|
|
1459
|
+
liquidityBurnPercentage?: number | undefined;
|
|
1414
1460
|
noMintAuthority?: boolean | undefined;
|
|
1415
1461
|
}>>;
|
|
1416
1462
|
twitterReusesCount: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -1448,6 +1494,9 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
1448
1494
|
trendingScore6h: z.ZodDefault<z.ZodNumber>;
|
|
1449
1495
|
trendingScore12h: z.ZodDefault<z.ZodNumber>;
|
|
1450
1496
|
trendingScore24h: z.ZodDefault<z.ZodNumber>;
|
|
1497
|
+
isMayhemMode: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
1498
|
+
isCashbackCoin: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
1499
|
+
isAgentMode: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
1451
1500
|
} & {
|
|
1452
1501
|
holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1453
1502
|
top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -1490,6 +1539,9 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
1490
1539
|
marketCapUSD: number;
|
|
1491
1540
|
marketCapDilutedUSD: number;
|
|
1492
1541
|
logo: string | null;
|
|
1542
|
+
isMayhemMode: boolean | null;
|
|
1543
|
+
isCashbackCoin: boolean | null;
|
|
1544
|
+
isAgentMode: boolean | null;
|
|
1493
1545
|
bondedAt: Date | null;
|
|
1494
1546
|
latestTradeDate: Date | null;
|
|
1495
1547
|
totalFeesPaidUSD: number;
|
|
@@ -1606,6 +1658,7 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
1606
1658
|
isMintable?: boolean | undefined;
|
|
1607
1659
|
modifyableTax?: boolean | undefined;
|
|
1608
1660
|
selfDestruct?: boolean | undefined;
|
|
1661
|
+
liquidityBurnPercentage?: number | undefined;
|
|
1609
1662
|
noMintAuthority?: boolean | undefined;
|
|
1610
1663
|
} | null;
|
|
1611
1664
|
twitterReusesCount: number | null;
|
|
@@ -1739,6 +1792,10 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
1739
1792
|
factory?: string | null | undefined;
|
|
1740
1793
|
source?: string | null | undefined;
|
|
1741
1794
|
sourceFactory?: string | null | undefined;
|
|
1795
|
+
sourceMetadata?: {
|
|
1796
|
+
name: string;
|
|
1797
|
+
logo: string;
|
|
1798
|
+
} | null | undefined;
|
|
1742
1799
|
liquidityUSD?: number | undefined;
|
|
1743
1800
|
liquidityMaxUSD?: number | undefined;
|
|
1744
1801
|
bonded?: boolean | undefined;
|
|
@@ -1790,6 +1847,7 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
1790
1847
|
isMintable?: boolean | undefined;
|
|
1791
1848
|
modifyableTax?: boolean | undefined;
|
|
1792
1849
|
selfDestruct?: boolean | undefined;
|
|
1850
|
+
liquidityBurnPercentage?: number | undefined;
|
|
1793
1851
|
noMintAuthority?: boolean | undefined;
|
|
1794
1852
|
} | null;
|
|
1795
1853
|
liveStatus: string | null;
|
|
@@ -1835,6 +1893,10 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
1835
1893
|
factory?: string | null | undefined;
|
|
1836
1894
|
source?: string | null | undefined;
|
|
1837
1895
|
sourceFactory?: string | null | undefined;
|
|
1896
|
+
sourceMetadata?: {
|
|
1897
|
+
name: string;
|
|
1898
|
+
logo: string;
|
|
1899
|
+
} | null | undefined;
|
|
1838
1900
|
liquidityUSD?: number | undefined;
|
|
1839
1901
|
liquidityMaxUSD?: number | undefined;
|
|
1840
1902
|
bonded?: boolean | undefined;
|
|
@@ -1843,6 +1905,9 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
1843
1905
|
preBondingFactory?: string | undefined;
|
|
1844
1906
|
poolAddress?: string | undefined;
|
|
1845
1907
|
blockchain?: string | undefined;
|
|
1908
|
+
isMayhemMode?: boolean | null | undefined;
|
|
1909
|
+
isCashbackCoin?: boolean | null | undefined;
|
|
1910
|
+
isAgentMode?: boolean | null | undefined;
|
|
1846
1911
|
deployer?: string | null | undefined;
|
|
1847
1912
|
athUSD?: number | undefined;
|
|
1848
1913
|
atlUSD?: number | undefined;
|
|
@@ -2067,6 +2132,9 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
2067
2132
|
marketCapUSD: number;
|
|
2068
2133
|
marketCapDilutedUSD: number;
|
|
2069
2134
|
logo: string | null;
|
|
2135
|
+
isMayhemMode: boolean | null;
|
|
2136
|
+
isCashbackCoin: boolean | null;
|
|
2137
|
+
isAgentMode: boolean | null;
|
|
2070
2138
|
bondedAt: Date | null;
|
|
2071
2139
|
latestTradeDate: Date | null;
|
|
2072
2140
|
totalFeesPaidUSD: number;
|
|
@@ -2183,6 +2251,7 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
2183
2251
|
isMintable?: boolean | undefined;
|
|
2184
2252
|
modifyableTax?: boolean | undefined;
|
|
2185
2253
|
selfDestruct?: boolean | undefined;
|
|
2254
|
+
liquidityBurnPercentage?: number | undefined;
|
|
2186
2255
|
noMintAuthority?: boolean | undefined;
|
|
2187
2256
|
} | null;
|
|
2188
2257
|
twitterReusesCount: number | null;
|
|
@@ -2316,6 +2385,10 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
2316
2385
|
factory?: string | null | undefined;
|
|
2317
2386
|
source?: string | null | undefined;
|
|
2318
2387
|
sourceFactory?: string | null | undefined;
|
|
2388
|
+
sourceMetadata?: {
|
|
2389
|
+
name: string;
|
|
2390
|
+
logo: string;
|
|
2391
|
+
} | null | undefined;
|
|
2319
2392
|
liquidityUSD?: number | undefined;
|
|
2320
2393
|
liquidityMaxUSD?: number | undefined;
|
|
2321
2394
|
bonded?: boolean | undefined;
|
|
@@ -2402,6 +2475,7 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
2402
2475
|
isMintable?: boolean | undefined;
|
|
2403
2476
|
modifyableTax?: boolean | undefined;
|
|
2404
2477
|
selfDestruct?: boolean | undefined;
|
|
2478
|
+
liquidityBurnPercentage?: number | undefined;
|
|
2405
2479
|
noMintAuthority?: boolean | undefined;
|
|
2406
2480
|
} | null;
|
|
2407
2481
|
liveStatus: string | null;
|
|
@@ -2447,6 +2521,10 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
2447
2521
|
factory?: string | null | undefined;
|
|
2448
2522
|
source?: string | null | undefined;
|
|
2449
2523
|
sourceFactory?: string | null | undefined;
|
|
2524
|
+
sourceMetadata?: {
|
|
2525
|
+
name: string;
|
|
2526
|
+
logo: string;
|
|
2527
|
+
} | null | undefined;
|
|
2450
2528
|
liquidityUSD?: number | undefined;
|
|
2451
2529
|
liquidityMaxUSD?: number | undefined;
|
|
2452
2530
|
bonded?: boolean | undefined;
|
|
@@ -2455,6 +2533,9 @@ export declare const AssetDetailsDataOutput: z.ZodObject<{
|
|
|
2455
2533
|
preBondingFactory?: string | undefined;
|
|
2456
2534
|
poolAddress?: string | undefined;
|
|
2457
2535
|
blockchain?: string | undefined;
|
|
2536
|
+
isMayhemMode?: boolean | null | undefined;
|
|
2537
|
+
isCashbackCoin?: boolean | null | undefined;
|
|
2538
|
+
isAgentMode?: boolean | null | undefined;
|
|
2458
2539
|
deployer?: string | null | undefined;
|
|
2459
2540
|
athUSD?: number | undefined;
|
|
2460
2541
|
atlUSD?: number | undefined;
|
|
@@ -2717,10 +2798,17 @@ declare const AssetDetailsParamsSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2717
2798
|
instanceTracking?: unknown;
|
|
2718
2799
|
tokensLimit?: number | undefined;
|
|
2719
2800
|
}>;
|
|
2720
|
-
|
|
2801
|
+
declare const ASSET_DETAILS_HIDDEN: readonly ["instanceTracking"];
|
|
2802
|
+
type AssetDetailsHiddenFields = (typeof ASSET_DETAILS_HIDDEN)[number];
|
|
2803
|
+
export type AssetDetailsParams = SDKInput<typeof AssetDetailsParamsSchema, AssetDetailsHiddenFields>;
|
|
2721
2804
|
export type AssetDetailsParsedParams = z.infer<typeof AssetDetailsParamsSchema> & {
|
|
2722
2805
|
chainId?: string;
|
|
2723
2806
|
};
|
|
2807
|
+
export declare const AssetDetailsParamsSchemaOpenAPI: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
2808
|
+
[x: string]: any;
|
|
2809
|
+
}, {
|
|
2810
|
+
[x: string]: any;
|
|
2811
|
+
}>;
|
|
2724
2812
|
export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
2725
2813
|
data: z.ZodObject<{
|
|
2726
2814
|
asset: z.ZodObject<{
|
|
@@ -2861,6 +2949,16 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
2861
2949
|
factory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2862
2950
|
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2863
2951
|
sourceFactory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2952
|
+
sourceMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2953
|
+
name: z.ZodString;
|
|
2954
|
+
logo: z.ZodString;
|
|
2955
|
+
}, "strip", z.ZodTypeAny, {
|
|
2956
|
+
name: string;
|
|
2957
|
+
logo: string;
|
|
2958
|
+
}, {
|
|
2959
|
+
name: string;
|
|
2960
|
+
logo: string;
|
|
2961
|
+
}>>>;
|
|
2864
2962
|
liquidityUSD: z.ZodOptional<z.ZodNumber>;
|
|
2865
2963
|
liquidityMaxUSD: z.ZodOptional<z.ZodNumber>;
|
|
2866
2964
|
bonded: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3079,6 +3177,7 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
3079
3177
|
isMintable: z.ZodOptional<z.ZodBoolean>;
|
|
3080
3178
|
modifyableTax: z.ZodOptional<z.ZodBoolean>;
|
|
3081
3179
|
selfDestruct: z.ZodOptional<z.ZodBoolean>;
|
|
3180
|
+
liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
|
|
3082
3181
|
}, "strip", z.ZodTypeAny, {
|
|
3083
3182
|
buyTax?: string | undefined;
|
|
3084
3183
|
sellTax?: string | undefined;
|
|
@@ -3096,6 +3195,7 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
3096
3195
|
isMintable?: boolean | undefined;
|
|
3097
3196
|
modifyableTax?: boolean | undefined;
|
|
3098
3197
|
selfDestruct?: boolean | undefined;
|
|
3198
|
+
liquidityBurnPercentage?: number | undefined;
|
|
3099
3199
|
noMintAuthority?: boolean | undefined;
|
|
3100
3200
|
}, {
|
|
3101
3201
|
buyTax?: string | undefined;
|
|
@@ -3114,6 +3214,7 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
3114
3214
|
isMintable?: boolean | undefined;
|
|
3115
3215
|
modifyableTax?: boolean | undefined;
|
|
3116
3216
|
selfDestruct?: boolean | undefined;
|
|
3217
|
+
liquidityBurnPercentage?: number | undefined;
|
|
3117
3218
|
noMintAuthority?: boolean | undefined;
|
|
3118
3219
|
}>>;
|
|
3119
3220
|
twitterReusesCount: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -3151,6 +3252,9 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
3151
3252
|
trendingScore6h: z.ZodDefault<z.ZodNumber>;
|
|
3152
3253
|
trendingScore12h: z.ZodDefault<z.ZodNumber>;
|
|
3153
3254
|
trendingScore24h: z.ZodDefault<z.ZodNumber>;
|
|
3255
|
+
isMayhemMode: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
3256
|
+
isCashbackCoin: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
3257
|
+
isAgentMode: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
3154
3258
|
} & {
|
|
3155
3259
|
holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3156
3260
|
top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -3193,6 +3297,9 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
3193
3297
|
marketCapUSD: number;
|
|
3194
3298
|
marketCapDilutedUSD: number;
|
|
3195
3299
|
logo: string | null;
|
|
3300
|
+
isMayhemMode: boolean | null;
|
|
3301
|
+
isCashbackCoin: boolean | null;
|
|
3302
|
+
isAgentMode: boolean | null;
|
|
3196
3303
|
bondedAt: Date | null;
|
|
3197
3304
|
latestTradeDate: Date | null;
|
|
3198
3305
|
totalFeesPaidUSD: number;
|
|
@@ -3309,6 +3416,7 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
3309
3416
|
isMintable?: boolean | undefined;
|
|
3310
3417
|
modifyableTax?: boolean | undefined;
|
|
3311
3418
|
selfDestruct?: boolean | undefined;
|
|
3419
|
+
liquidityBurnPercentage?: number | undefined;
|
|
3312
3420
|
noMintAuthority?: boolean | undefined;
|
|
3313
3421
|
} | null;
|
|
3314
3422
|
twitterReusesCount: number | null;
|
|
@@ -3442,6 +3550,10 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
3442
3550
|
factory?: string | null | undefined;
|
|
3443
3551
|
source?: string | null | undefined;
|
|
3444
3552
|
sourceFactory?: string | null | undefined;
|
|
3553
|
+
sourceMetadata?: {
|
|
3554
|
+
name: string;
|
|
3555
|
+
logo: string;
|
|
3556
|
+
} | null | undefined;
|
|
3445
3557
|
liquidityUSD?: number | undefined;
|
|
3446
3558
|
liquidityMaxUSD?: number | undefined;
|
|
3447
3559
|
bonded?: boolean | undefined;
|
|
@@ -3493,6 +3605,7 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
3493
3605
|
isMintable?: boolean | undefined;
|
|
3494
3606
|
modifyableTax?: boolean | undefined;
|
|
3495
3607
|
selfDestruct?: boolean | undefined;
|
|
3608
|
+
liquidityBurnPercentage?: number | undefined;
|
|
3496
3609
|
noMintAuthority?: boolean | undefined;
|
|
3497
3610
|
} | null;
|
|
3498
3611
|
liveStatus: string | null;
|
|
@@ -3538,6 +3651,10 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
3538
3651
|
factory?: string | null | undefined;
|
|
3539
3652
|
source?: string | null | undefined;
|
|
3540
3653
|
sourceFactory?: string | null | undefined;
|
|
3654
|
+
sourceMetadata?: {
|
|
3655
|
+
name: string;
|
|
3656
|
+
logo: string;
|
|
3657
|
+
} | null | undefined;
|
|
3541
3658
|
liquidityUSD?: number | undefined;
|
|
3542
3659
|
liquidityMaxUSD?: number | undefined;
|
|
3543
3660
|
bonded?: boolean | undefined;
|
|
@@ -3546,6 +3663,9 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
3546
3663
|
preBondingFactory?: string | undefined;
|
|
3547
3664
|
poolAddress?: string | undefined;
|
|
3548
3665
|
blockchain?: string | undefined;
|
|
3666
|
+
isMayhemMode?: boolean | null | undefined;
|
|
3667
|
+
isCashbackCoin?: boolean | null | undefined;
|
|
3668
|
+
isAgentMode?: boolean | null | undefined;
|
|
3549
3669
|
deployer?: string | null | undefined;
|
|
3550
3670
|
athUSD?: number | undefined;
|
|
3551
3671
|
atlUSD?: number | undefined;
|
|
@@ -3770,6 +3890,9 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
3770
3890
|
marketCapUSD: number;
|
|
3771
3891
|
marketCapDilutedUSD: number;
|
|
3772
3892
|
logo: string | null;
|
|
3893
|
+
isMayhemMode: boolean | null;
|
|
3894
|
+
isCashbackCoin: boolean | null;
|
|
3895
|
+
isAgentMode: boolean | null;
|
|
3773
3896
|
bondedAt: Date | null;
|
|
3774
3897
|
latestTradeDate: Date | null;
|
|
3775
3898
|
totalFeesPaidUSD: number;
|
|
@@ -3886,6 +4009,7 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
3886
4009
|
isMintable?: boolean | undefined;
|
|
3887
4010
|
modifyableTax?: boolean | undefined;
|
|
3888
4011
|
selfDestruct?: boolean | undefined;
|
|
4012
|
+
liquidityBurnPercentage?: number | undefined;
|
|
3889
4013
|
noMintAuthority?: boolean | undefined;
|
|
3890
4014
|
} | null;
|
|
3891
4015
|
twitterReusesCount: number | null;
|
|
@@ -4019,6 +4143,10 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
4019
4143
|
factory?: string | null | undefined;
|
|
4020
4144
|
source?: string | null | undefined;
|
|
4021
4145
|
sourceFactory?: string | null | undefined;
|
|
4146
|
+
sourceMetadata?: {
|
|
4147
|
+
name: string;
|
|
4148
|
+
logo: string;
|
|
4149
|
+
} | null | undefined;
|
|
4022
4150
|
liquidityUSD?: number | undefined;
|
|
4023
4151
|
liquidityMaxUSD?: number | undefined;
|
|
4024
4152
|
bonded?: boolean | undefined;
|
|
@@ -4105,6 +4233,7 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
4105
4233
|
isMintable?: boolean | undefined;
|
|
4106
4234
|
modifyableTax?: boolean | undefined;
|
|
4107
4235
|
selfDestruct?: boolean | undefined;
|
|
4236
|
+
liquidityBurnPercentage?: number | undefined;
|
|
4108
4237
|
noMintAuthority?: boolean | undefined;
|
|
4109
4238
|
} | null;
|
|
4110
4239
|
liveStatus: string | null;
|
|
@@ -4150,6 +4279,10 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
4150
4279
|
factory?: string | null | undefined;
|
|
4151
4280
|
source?: string | null | undefined;
|
|
4152
4281
|
sourceFactory?: string | null | undefined;
|
|
4282
|
+
sourceMetadata?: {
|
|
4283
|
+
name: string;
|
|
4284
|
+
logo: string;
|
|
4285
|
+
} | null | undefined;
|
|
4153
4286
|
liquidityUSD?: number | undefined;
|
|
4154
4287
|
liquidityMaxUSD?: number | undefined;
|
|
4155
4288
|
bonded?: boolean | undefined;
|
|
@@ -4158,6 +4291,9 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
4158
4291
|
preBondingFactory?: string | undefined;
|
|
4159
4292
|
poolAddress?: string | undefined;
|
|
4160
4293
|
blockchain?: string | undefined;
|
|
4294
|
+
isMayhemMode?: boolean | null | undefined;
|
|
4295
|
+
isCashbackCoin?: boolean | null | undefined;
|
|
4296
|
+
isAgentMode?: boolean | null | undefined;
|
|
4161
4297
|
deployer?: string | null | undefined;
|
|
4162
4298
|
athUSD?: number | undefined;
|
|
4163
4299
|
atlUSD?: number | undefined;
|
|
@@ -4411,6 +4547,9 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
4411
4547
|
marketCapUSD: number;
|
|
4412
4548
|
marketCapDilutedUSD: number;
|
|
4413
4549
|
logo: string | null;
|
|
4550
|
+
isMayhemMode: boolean | null;
|
|
4551
|
+
isCashbackCoin: boolean | null;
|
|
4552
|
+
isAgentMode: boolean | null;
|
|
4414
4553
|
bondedAt: Date | null;
|
|
4415
4554
|
latestTradeDate: Date | null;
|
|
4416
4555
|
totalFeesPaidUSD: number;
|
|
@@ -4527,6 +4666,7 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
4527
4666
|
isMintable?: boolean | undefined;
|
|
4528
4667
|
modifyableTax?: boolean | undefined;
|
|
4529
4668
|
selfDestruct?: boolean | undefined;
|
|
4669
|
+
liquidityBurnPercentage?: number | undefined;
|
|
4530
4670
|
noMintAuthority?: boolean | undefined;
|
|
4531
4671
|
} | null;
|
|
4532
4672
|
twitterReusesCount: number | null;
|
|
@@ -4660,6 +4800,10 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
4660
4800
|
factory?: string | null | undefined;
|
|
4661
4801
|
source?: string | null | undefined;
|
|
4662
4802
|
sourceFactory?: string | null | undefined;
|
|
4803
|
+
sourceMetadata?: {
|
|
4804
|
+
name: string;
|
|
4805
|
+
logo: string;
|
|
4806
|
+
} | null | undefined;
|
|
4663
4807
|
liquidityUSD?: number | undefined;
|
|
4664
4808
|
liquidityMaxUSD?: number | undefined;
|
|
4665
4809
|
bonded?: boolean | undefined;
|
|
@@ -4749,6 +4893,7 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
4749
4893
|
isMintable?: boolean | undefined;
|
|
4750
4894
|
modifyableTax?: boolean | undefined;
|
|
4751
4895
|
selfDestruct?: boolean | undefined;
|
|
4896
|
+
liquidityBurnPercentage?: number | undefined;
|
|
4752
4897
|
noMintAuthority?: boolean | undefined;
|
|
4753
4898
|
} | null;
|
|
4754
4899
|
liveStatus: string | null;
|
|
@@ -4794,6 +4939,10 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
4794
4939
|
factory?: string | null | undefined;
|
|
4795
4940
|
source?: string | null | undefined;
|
|
4796
4941
|
sourceFactory?: string | null | undefined;
|
|
4942
|
+
sourceMetadata?: {
|
|
4943
|
+
name: string;
|
|
4944
|
+
logo: string;
|
|
4945
|
+
} | null | undefined;
|
|
4797
4946
|
liquidityUSD?: number | undefined;
|
|
4798
4947
|
liquidityMaxUSD?: number | undefined;
|
|
4799
4948
|
bonded?: boolean | undefined;
|
|
@@ -4802,6 +4951,9 @@ export declare const AssetDetailsResponseSchema: z.ZodObject<{
|
|
|
4802
4951
|
preBondingFactory?: string | undefined;
|
|
4803
4952
|
poolAddress?: string | undefined;
|
|
4804
4953
|
blockchain?: string | undefined;
|
|
4954
|
+
isMayhemMode?: boolean | null | undefined;
|
|
4955
|
+
isCashbackCoin?: boolean | null | undefined;
|
|
4956
|
+
isAgentMode?: boolean | null | undefined;
|
|
4805
4957
|
deployer?: string | null | undefined;
|
|
4806
4958
|
athUSD?: number | undefined;
|
|
4807
4959
|
atlUSD?: number | undefined;
|
|
@@ -5192,6 +5344,16 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
5192
5344
|
factory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5193
5345
|
source: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5194
5346
|
sourceFactory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5347
|
+
sourceMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5348
|
+
name: z.ZodString;
|
|
5349
|
+
logo: z.ZodString;
|
|
5350
|
+
}, "strip", z.ZodTypeAny, {
|
|
5351
|
+
name: string;
|
|
5352
|
+
logo: string;
|
|
5353
|
+
}, {
|
|
5354
|
+
name: string;
|
|
5355
|
+
logo: string;
|
|
5356
|
+
}>>>;
|
|
5195
5357
|
liquidityUSD: z.ZodOptional<z.ZodNumber>;
|
|
5196
5358
|
liquidityMaxUSD: z.ZodOptional<z.ZodNumber>;
|
|
5197
5359
|
bonded: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5410,6 +5572,7 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
5410
5572
|
isMintable: z.ZodOptional<z.ZodBoolean>;
|
|
5411
5573
|
modifyableTax: z.ZodOptional<z.ZodBoolean>;
|
|
5412
5574
|
selfDestruct: z.ZodOptional<z.ZodBoolean>;
|
|
5575
|
+
liquidityBurnPercentage: z.ZodOptional<z.ZodNumber>;
|
|
5413
5576
|
}, "strip", z.ZodTypeAny, {
|
|
5414
5577
|
buyTax?: string | undefined;
|
|
5415
5578
|
sellTax?: string | undefined;
|
|
@@ -5427,6 +5590,7 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
5427
5590
|
isMintable?: boolean | undefined;
|
|
5428
5591
|
modifyableTax?: boolean | undefined;
|
|
5429
5592
|
selfDestruct?: boolean | undefined;
|
|
5593
|
+
liquidityBurnPercentage?: number | undefined;
|
|
5430
5594
|
noMintAuthority?: boolean | undefined;
|
|
5431
5595
|
}, {
|
|
5432
5596
|
buyTax?: string | undefined;
|
|
@@ -5445,6 +5609,7 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
5445
5609
|
isMintable?: boolean | undefined;
|
|
5446
5610
|
modifyableTax?: boolean | undefined;
|
|
5447
5611
|
selfDestruct?: boolean | undefined;
|
|
5612
|
+
liquidityBurnPercentage?: number | undefined;
|
|
5448
5613
|
noMintAuthority?: boolean | undefined;
|
|
5449
5614
|
}>>;
|
|
5450
5615
|
twitterReusesCount: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -5482,6 +5647,9 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
5482
5647
|
trendingScore6h: z.ZodDefault<z.ZodNumber>;
|
|
5483
5648
|
trendingScore12h: z.ZodDefault<z.ZodNumber>;
|
|
5484
5649
|
trendingScore24h: z.ZodDefault<z.ZodNumber>;
|
|
5650
|
+
isMayhemMode: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
5651
|
+
isCashbackCoin: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
5652
|
+
isAgentMode: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
|
|
5485
5653
|
} & {
|
|
5486
5654
|
holdersCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5487
5655
|
top10HoldingsPercentage: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -5524,6 +5692,9 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
5524
5692
|
marketCapUSD: number;
|
|
5525
5693
|
marketCapDilutedUSD: number;
|
|
5526
5694
|
logo: string | null;
|
|
5695
|
+
isMayhemMode: boolean | null;
|
|
5696
|
+
isCashbackCoin: boolean | null;
|
|
5697
|
+
isAgentMode: boolean | null;
|
|
5527
5698
|
bondedAt: Date | null;
|
|
5528
5699
|
latestTradeDate: Date | null;
|
|
5529
5700
|
totalFeesPaidUSD: number;
|
|
@@ -5640,6 +5811,7 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
5640
5811
|
isMintable?: boolean | undefined;
|
|
5641
5812
|
modifyableTax?: boolean | undefined;
|
|
5642
5813
|
selfDestruct?: boolean | undefined;
|
|
5814
|
+
liquidityBurnPercentage?: number | undefined;
|
|
5643
5815
|
noMintAuthority?: boolean | undefined;
|
|
5644
5816
|
} | null;
|
|
5645
5817
|
twitterReusesCount: number | null;
|
|
@@ -5773,6 +5945,10 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
5773
5945
|
factory?: string | null | undefined;
|
|
5774
5946
|
source?: string | null | undefined;
|
|
5775
5947
|
sourceFactory?: string | null | undefined;
|
|
5948
|
+
sourceMetadata?: {
|
|
5949
|
+
name: string;
|
|
5950
|
+
logo: string;
|
|
5951
|
+
} | null | undefined;
|
|
5776
5952
|
liquidityUSD?: number | undefined;
|
|
5777
5953
|
liquidityMaxUSD?: number | undefined;
|
|
5778
5954
|
bonded?: boolean | undefined;
|
|
@@ -5824,6 +6000,7 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
5824
6000
|
isMintable?: boolean | undefined;
|
|
5825
6001
|
modifyableTax?: boolean | undefined;
|
|
5826
6002
|
selfDestruct?: boolean | undefined;
|
|
6003
|
+
liquidityBurnPercentage?: number | undefined;
|
|
5827
6004
|
noMintAuthority?: boolean | undefined;
|
|
5828
6005
|
} | null;
|
|
5829
6006
|
liveStatus: string | null;
|
|
@@ -5869,6 +6046,10 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
5869
6046
|
factory?: string | null | undefined;
|
|
5870
6047
|
source?: string | null | undefined;
|
|
5871
6048
|
sourceFactory?: string | null | undefined;
|
|
6049
|
+
sourceMetadata?: {
|
|
6050
|
+
name: string;
|
|
6051
|
+
logo: string;
|
|
6052
|
+
} | null | undefined;
|
|
5872
6053
|
liquidityUSD?: number | undefined;
|
|
5873
6054
|
liquidityMaxUSD?: number | undefined;
|
|
5874
6055
|
bonded?: boolean | undefined;
|
|
@@ -5877,6 +6058,9 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
5877
6058
|
preBondingFactory?: string | undefined;
|
|
5878
6059
|
poolAddress?: string | undefined;
|
|
5879
6060
|
blockchain?: string | undefined;
|
|
6061
|
+
isMayhemMode?: boolean | null | undefined;
|
|
6062
|
+
isCashbackCoin?: boolean | null | undefined;
|
|
6063
|
+
isAgentMode?: boolean | null | undefined;
|
|
5880
6064
|
deployer?: string | null | undefined;
|
|
5881
6065
|
athUSD?: number | undefined;
|
|
5882
6066
|
atlUSD?: number | undefined;
|
|
@@ -6101,6 +6285,9 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
6101
6285
|
marketCapUSD: number;
|
|
6102
6286
|
marketCapDilutedUSD: number;
|
|
6103
6287
|
logo: string | null;
|
|
6288
|
+
isMayhemMode: boolean | null;
|
|
6289
|
+
isCashbackCoin: boolean | null;
|
|
6290
|
+
isAgentMode: boolean | null;
|
|
6104
6291
|
bondedAt: Date | null;
|
|
6105
6292
|
latestTradeDate: Date | null;
|
|
6106
6293
|
totalFeesPaidUSD: number;
|
|
@@ -6217,6 +6404,7 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
6217
6404
|
isMintable?: boolean | undefined;
|
|
6218
6405
|
modifyableTax?: boolean | undefined;
|
|
6219
6406
|
selfDestruct?: boolean | undefined;
|
|
6407
|
+
liquidityBurnPercentage?: number | undefined;
|
|
6220
6408
|
noMintAuthority?: boolean | undefined;
|
|
6221
6409
|
} | null;
|
|
6222
6410
|
twitterReusesCount: number | null;
|
|
@@ -6350,6 +6538,10 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
6350
6538
|
factory?: string | null | undefined;
|
|
6351
6539
|
source?: string | null | undefined;
|
|
6352
6540
|
sourceFactory?: string | null | undefined;
|
|
6541
|
+
sourceMetadata?: {
|
|
6542
|
+
name: string;
|
|
6543
|
+
logo: string;
|
|
6544
|
+
} | null | undefined;
|
|
6353
6545
|
liquidityUSD?: number | undefined;
|
|
6354
6546
|
liquidityMaxUSD?: number | undefined;
|
|
6355
6547
|
bonded?: boolean | undefined;
|
|
@@ -6436,6 +6628,7 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
6436
6628
|
isMintable?: boolean | undefined;
|
|
6437
6629
|
modifyableTax?: boolean | undefined;
|
|
6438
6630
|
selfDestruct?: boolean | undefined;
|
|
6631
|
+
liquidityBurnPercentage?: number | undefined;
|
|
6439
6632
|
noMintAuthority?: boolean | undefined;
|
|
6440
6633
|
} | null;
|
|
6441
6634
|
liveStatus: string | null;
|
|
@@ -6481,6 +6674,10 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
6481
6674
|
factory?: string | null | undefined;
|
|
6482
6675
|
source?: string | null | undefined;
|
|
6483
6676
|
sourceFactory?: string | null | undefined;
|
|
6677
|
+
sourceMetadata?: {
|
|
6678
|
+
name: string;
|
|
6679
|
+
logo: string;
|
|
6680
|
+
} | null | undefined;
|
|
6484
6681
|
liquidityUSD?: number | undefined;
|
|
6485
6682
|
liquidityMaxUSD?: number | undefined;
|
|
6486
6683
|
bonded?: boolean | undefined;
|
|
@@ -6489,6 +6686,9 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
6489
6686
|
preBondingFactory?: string | undefined;
|
|
6490
6687
|
poolAddress?: string | undefined;
|
|
6491
6688
|
blockchain?: string | undefined;
|
|
6689
|
+
isMayhemMode?: boolean | null | undefined;
|
|
6690
|
+
isCashbackCoin?: boolean | null | undefined;
|
|
6691
|
+
isAgentMode?: boolean | null | undefined;
|
|
6492
6692
|
deployer?: string | null | undefined;
|
|
6493
6693
|
athUSD?: number | undefined;
|
|
6494
6694
|
atlUSD?: number | undefined;
|
|
@@ -6748,6 +6948,9 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
6748
6948
|
marketCapUSD: number;
|
|
6749
6949
|
marketCapDilutedUSD: number;
|
|
6750
6950
|
logo: string | null;
|
|
6951
|
+
isMayhemMode: boolean | null;
|
|
6952
|
+
isCashbackCoin: boolean | null;
|
|
6953
|
+
isAgentMode: boolean | null;
|
|
6751
6954
|
bondedAt: Date | null;
|
|
6752
6955
|
latestTradeDate: Date | null;
|
|
6753
6956
|
totalFeesPaidUSD: number;
|
|
@@ -6864,6 +7067,7 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
6864
7067
|
isMintable?: boolean | undefined;
|
|
6865
7068
|
modifyableTax?: boolean | undefined;
|
|
6866
7069
|
selfDestruct?: boolean | undefined;
|
|
7070
|
+
liquidityBurnPercentage?: number | undefined;
|
|
6867
7071
|
noMintAuthority?: boolean | undefined;
|
|
6868
7072
|
} | null;
|
|
6869
7073
|
twitterReusesCount: number | null;
|
|
@@ -6997,6 +7201,10 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
6997
7201
|
factory?: string | null | undefined;
|
|
6998
7202
|
source?: string | null | undefined;
|
|
6999
7203
|
sourceFactory?: string | null | undefined;
|
|
7204
|
+
sourceMetadata?: {
|
|
7205
|
+
name: string;
|
|
7206
|
+
logo: string;
|
|
7207
|
+
} | null | undefined;
|
|
7000
7208
|
liquidityUSD?: number | undefined;
|
|
7001
7209
|
liquidityMaxUSD?: number | undefined;
|
|
7002
7210
|
bonded?: boolean | undefined;
|
|
@@ -7088,6 +7296,7 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
7088
7296
|
isMintable?: boolean | undefined;
|
|
7089
7297
|
modifyableTax?: boolean | undefined;
|
|
7090
7298
|
selfDestruct?: boolean | undefined;
|
|
7299
|
+
liquidityBurnPercentage?: number | undefined;
|
|
7091
7300
|
noMintAuthority?: boolean | undefined;
|
|
7092
7301
|
} | null;
|
|
7093
7302
|
liveStatus: string | null;
|
|
@@ -7133,6 +7342,10 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
7133
7342
|
factory?: string | null | undefined;
|
|
7134
7343
|
source?: string | null | undefined;
|
|
7135
7344
|
sourceFactory?: string | null | undefined;
|
|
7345
|
+
sourceMetadata?: {
|
|
7346
|
+
name: string;
|
|
7347
|
+
logo: string;
|
|
7348
|
+
} | null | undefined;
|
|
7136
7349
|
liquidityUSD?: number | undefined;
|
|
7137
7350
|
liquidityMaxUSD?: number | undefined;
|
|
7138
7351
|
bonded?: boolean | undefined;
|
|
@@ -7141,6 +7354,9 @@ export declare const AssetDetailsBatchResponseSchema: z.ZodObject<{
|
|
|
7141
7354
|
preBondingFactory?: string | undefined;
|
|
7142
7355
|
poolAddress?: string | undefined;
|
|
7143
7356
|
blockchain?: string | undefined;
|
|
7357
|
+
isMayhemMode?: boolean | null | undefined;
|
|
7358
|
+
isCashbackCoin?: boolean | null | undefined;
|
|
7359
|
+
isAgentMode?: boolean | null | undefined;
|
|
7144
7360
|
deployer?: string | null | undefined;
|
|
7145
7361
|
athUSD?: number | undefined;
|
|
7146
7362
|
atlUSD?: number | undefined;
|