diff --git a/src/API/Explorer/Objects.ts b/src/API/Explorer/Objects.ts index 7fbfd29..c358302 100644 --- a/src/API/Explorer/Objects.ts +++ b/src/API/Explorer/Objects.ts @@ -148,7 +148,7 @@ export interface ITemplateStats { export interface IAccountStats { collections: Array<{collection: ICollection, assets: string}>; - templates: Array<{template_id: string, assets: string}>; + templates: Array<{template_id: string, assets: string; collection_name: string}>; assets: string; } diff --git a/src/API/Explorer/index.ts b/src/API/Explorer/index.ts index 80d8682..0380bcc 100644 --- a/src/API/Explorer/index.ts +++ b/src/API/Explorer/index.ts @@ -256,3 +256,5 @@ export default class ExplorerApi { return parseInt(res, 10); } } + +export * from './Objects'; \ No newline at end of file diff --git a/src/index.ts b/src/index.ts index 9137ef3..46b18fb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -11,3 +11,5 @@ export { RpcApi, ExplorerApi, ObjectSchema, deserialize, serialize, ParserTypes, RpcActionGenerator, ExplorerActionGenerator, ActionGenerator }; + +export * from './API/Explorer'; \ No newline at end of file