@iotexproject/kit 0.0.72 → 0.0.74
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.ts +18 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7756,6 +7756,18 @@ export interface Dapp {
|
|
|
7756
7756
|
url: string;
|
|
7757
7757
|
weight: number;
|
|
7758
7758
|
}
|
|
7759
|
+
export interface EcosystemDapp {
|
|
7760
|
+
date: string;
|
|
7761
|
+
id: string;
|
|
7762
|
+
logo: string;
|
|
7763
|
+
slug: string;
|
|
7764
|
+
status: string;
|
|
7765
|
+
tag: string;
|
|
7766
|
+
telegram: string;
|
|
7767
|
+
title: string;
|
|
7768
|
+
twitter: string;
|
|
7769
|
+
website: string;
|
|
7770
|
+
}
|
|
7759
7771
|
declare class UseHub {
|
|
7760
7772
|
constructor();
|
|
7761
7773
|
rewardSummary(args: {
|
|
@@ -7834,6 +7846,12 @@ declare class UseHub {
|
|
|
7834
7846
|
} | {
|
|
7835
7847
|
error: any;
|
|
7836
7848
|
}>;
|
|
7849
|
+
ecosystem(): Promise<{
|
|
7850
|
+
dappList: EcosystemDapp[];
|
|
7851
|
+
tags: string[];
|
|
7852
|
+
} | {
|
|
7853
|
+
error: any;
|
|
7854
|
+
}>;
|
|
7837
7855
|
}
|
|
7838
7856
|
declare const modules: {
|
|
7839
7857
|
mimo: Mimo;
|