@liberfi.io/types 0.1.8 → 0.1.10

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
@@ -535,10 +535,6 @@ interface TokenMarketData {
535
535
  * holders count
536
536
  */
537
537
  holders?: number;
538
- /**
539
- * creators count
540
- */
541
- creators?: number;
542
538
  /**
543
539
  * top 10 total holdings
544
540
  */
@@ -546,7 +542,15 @@ interface TokenMarketData {
546
542
  /**
547
543
  * top 10 holdings ratio
548
544
  */
549
- top10Ratio?: string;
545
+ top10HoldingsRatio?: string;
546
+ /**
547
+ * top 50 total holdings
548
+ */
549
+ top50Holdings?: string;
550
+ /**
551
+ * top 50 holdings ratio
552
+ */
553
+ top50HoldingsRatio?: string;
550
554
  /**
551
555
  * top 100 total holdings
552
556
  */
@@ -554,15 +558,115 @@ interface TokenMarketData {
554
558
  /**
555
559
  * top 100 holdings ratio
556
560
  */
557
- top100Ratio?: string;
561
+ top100HoldingsRatio?: string;
562
+ /**
563
+ * Bluechip holders count
564
+ */
565
+ bluechipHolders?: number;
566
+ /**
567
+ * Bluechip total holdings
568
+ */
569
+ bluechipHoldings?: string;
570
+ /**
571
+ * Bluechip holdings ratio
572
+ */
573
+ bluechipHoldingsRatio?: string;
574
+ /**
575
+ * KOL holders count
576
+ */
577
+ kolHolders?: number;
578
+ /**
579
+ * KOL total holdings
580
+ */
581
+ kolHoldings?: string;
582
+ /**
583
+ * KOL holdings ratio
584
+ */
585
+ kolHoldingsRatio?: string;
586
+ /**
587
+ * Sniper holders count
588
+ */
589
+ sniperHolders?: number;
590
+ /**
591
+ * Sniper total holdings
592
+ */
593
+ sniperHoldings?: string;
594
+ /**
595
+ * Sniper holdings ratio
596
+ */
597
+ sniperHoldingsRatio?: string;
598
+ /**
599
+ * Sniper holders count
600
+ */
601
+ proHolders?: number;
602
+ /**
603
+ * Sniper total holdings
604
+ */
605
+ proHoldings?: string;
606
+ /**
607
+ * Sniper holdings ratio
608
+ */
609
+ proHoldingsRatio?: string;
610
+ /**
611
+ * Insider holders count
612
+ */
613
+ insiderHolders?: number;
614
+ /**
615
+ * Insider total holdings
616
+ */
617
+ insiderHoldings?: string;
618
+ /**
619
+ * Insider holdings ratio
620
+ */
621
+ insiderHoldingsRatio?: string;
622
+ /**
623
+ * Sandwich holders count
624
+ */
625
+ sandwichHolders?: number;
626
+ /**
627
+ * Sandwich total holdings
628
+ */
629
+ sandwichHoldings?: string;
630
+ /**
631
+ * Sandwich holdings ratio
632
+ */
633
+ sandwichHoldingsRatio?: string;
634
+ /**
635
+ * Fresh holders count
636
+ */
637
+ freshHolders?: number;
638
+ /**
639
+ * Fresh total holdings
640
+ */
641
+ freshHoldings?: string;
642
+ /**
643
+ * Fresh holdings ratio
644
+ */
645
+ freshHoldingsRatio?: string;
646
+ /**
647
+ * Bundle holders count
648
+ */
649
+ bundleHolders?: number;
650
+ /**
651
+ * Bundle total holdings
652
+ */
653
+ bundleHoldings?: string;
654
+ /**
655
+ * Bundle holdings ratio
656
+ */
657
+ bundleHoldingsRatio?: string;
658
+ /**
659
+ * Dev holders count
660
+ */
661
+ devHolders?: number;
558
662
  /**
559
- * creators total holdings
663
+ * Dev total holdings
560
664
  */
561
- creatorsHoldings?: string;
665
+ devHoldings?: string;
562
666
  /**
563
- * creators holdings ratio
667
+ * Dev holdings ratio
564
668
  */
565
- creatorsRatio?: string;
669
+ devHoldingsRatio?: string;
566
670
  }
567
671
  interface TokenLiquidity {
568
672
  /**
@@ -1327,6 +1431,7 @@ interface ChannelTradeEvent extends BaseChannelEvent {
1327
1431
  base_symbol: string;
1328
1432
  base_name: string;
1329
1433
  base_amount: string;
1434
+ base_address: string;
1330
1435
  quote_symbol: string;
1331
1436
  quote_address: string;
1332
1437
  quote_amount: string;
package/dist/index.d.ts CHANGED
@@ -535,10 +535,6 @@ interface TokenMarketData {
535
535
  * holders count
536
536
  */
537
537
  holders?: number;
538
- /**
539
- * creators count
540
- */
541
- creators?: number;
542
538
  /**
543
539
  * top 10 total holdings
544
540
  */
@@ -546,7 +542,15 @@ interface TokenMarketData {
546
542
  /**
547
543
  * top 10 holdings ratio
548
544
  */
549
- top10Ratio?: string;
545
+ top10HoldingsRatio?: string;
546
+ /**
547
+ * top 50 total holdings
548
+ */
549
+ top50Holdings?: string;
550
+ /**
551
+ * top 50 holdings ratio
552
+ */
553
+ top50HoldingsRatio?: string;
550
554
  /**
551
555
  * top 100 total holdings
552
556
  */
@@ -554,15 +558,115 @@ interface TokenMarketData {
554
558
  /**
555
559
  * top 100 holdings ratio
556
560
  */
557
- top100Ratio?: string;
561
+ top100HoldingsRatio?: string;
562
+ /**
563
+ * Bluechip holders count
564
+ */
565
+ bluechipHolders?: number;
566
+ /**
567
+ * Bluechip total holdings
568
+ */
569
+ bluechipHoldings?: string;
570
+ /**
571
+ * Bluechip holdings ratio
572
+ */
573
+ bluechipHoldingsRatio?: string;
574
+ /**
575
+ * KOL holders count
576
+ */
577
+ kolHolders?: number;
578
+ /**
579
+ * KOL total holdings
580
+ */
581
+ kolHoldings?: string;
582
+ /**
583
+ * KOL holdings ratio
584
+ */
585
+ kolHoldingsRatio?: string;
586
+ /**
587
+ * Sniper holders count
588
+ */
589
+ sniperHolders?: number;
590
+ /**
591
+ * Sniper total holdings
592
+ */
593
+ sniperHoldings?: string;
594
+ /**
595
+ * Sniper holdings ratio
596
+ */
597
+ sniperHoldingsRatio?: string;
598
+ /**
599
+ * Sniper holders count
600
+ */
601
+ proHolders?: number;
602
+ /**
603
+ * Sniper total holdings
604
+ */
605
+ proHoldings?: string;
606
+ /**
607
+ * Sniper holdings ratio
608
+ */
609
+ proHoldingsRatio?: string;
610
+ /**
611
+ * Insider holders count
612
+ */
613
+ insiderHolders?: number;
614
+ /**
615
+ * Insider total holdings
616
+ */
617
+ insiderHoldings?: string;
618
+ /**
619
+ * Insider holdings ratio
620
+ */
621
+ insiderHoldingsRatio?: string;
622
+ /**
623
+ * Sandwich holders count
624
+ */
625
+ sandwichHolders?: number;
626
+ /**
627
+ * Sandwich total holdings
628
+ */
629
+ sandwichHoldings?: string;
630
+ /**
631
+ * Sandwich holdings ratio
632
+ */
633
+ sandwichHoldingsRatio?: string;
634
+ /**
635
+ * Fresh holders count
636
+ */
637
+ freshHolders?: number;
638
+ /**
639
+ * Fresh total holdings
640
+ */
641
+ freshHoldings?: string;
642
+ /**
643
+ * Fresh holdings ratio
644
+ */
645
+ freshHoldingsRatio?: string;
646
+ /**
647
+ * Bundle holders count
648
+ */
649
+ bundleHolders?: number;
650
+ /**
651
+ * Bundle total holdings
652
+ */
653
+ bundleHoldings?: string;
654
+ /**
655
+ * Bundle holdings ratio
656
+ */
657
+ bundleHoldingsRatio?: string;
658
+ /**
659
+ * Dev holders count
660
+ */
661
+ devHolders?: number;
558
662
  /**
559
- * creators total holdings
663
+ * Dev total holdings
560
664
  */
561
- creatorsHoldings?: string;
665
+ devHoldings?: string;
562
666
  /**
563
- * creators holdings ratio
667
+ * Dev holdings ratio
564
668
  */
565
- creatorsRatio?: string;
669
+ devHoldingsRatio?: string;
566
670
  }
567
671
  interface TokenLiquidity {
568
672
  /**
@@ -1327,6 +1431,7 @@ interface ChannelTradeEvent extends BaseChannelEvent {
1327
1431
  base_symbol: string;
1328
1432
  base_name: string;
1329
1433
  base_amount: string;
1434
+ base_address: string;
1330
1435
  quote_symbol: string;
1331
1436
  quote_address: string;
1332
1437
  quote_amount: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liberfi.io/types",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "description": "Liberfi React SDK types",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",