From 485c86b175e81e32a10b87082e0ebb1236b65bbd Mon Sep 17 00:00:00 2001 From: Viki Val Date: Fri, 4 Oct 2024 15:45:56 +0200 Subject: [PATCH 1/2] :technologist: removed unused import --- src/clients/SquidClient.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/clients/SquidClient.ts b/src/clients/SquidClient.ts index c56da2e..193cf93 100644 --- a/src/clients/SquidClient.ts +++ b/src/clients/SquidClient.ts @@ -21,7 +21,6 @@ import { getFields, includeBurned, optionToQuery, - strOf, } from './defaults' class SquidClient implements AbstractClient { From 33ea6b174b003316a4a4c464f3a9ad12969f725c Mon Sep 17 00:00:00 2001 From: Viki Val Date: Fri, 4 Oct 2024 15:46:54 +0200 Subject: [PATCH 2/2] :technologist: reexport Prefix from @kodadot1/static --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 6780232..c59c760 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,6 +2,7 @@ import getClient from './clients/factory' import SquidClient from './clients/SquidClient' import getUrl from './indexers' +export type { Prefix } from '@kodadot1/static' export { extendFields } from './clients/defaults' export { fetchQuery, graphFetch } from './indexers' export * from './rest'