From 4f65650123a9ef5af4db14cdbaddf1b215655e12 Mon Sep 17 00:00:00 2001 From: Julien Fraichot Date: Mon, 21 Nov 2022 14:17:23 +0100 Subject: [PATCH] fix(Package): expose SupportedChains --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 50237e8..3822cec 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,10 +1,12 @@ import lookForTx from './lookForTx'; import request from './services/request'; import { BLOCKCHAINS, isTestChain } from './constants/blockchains'; +import { SupportedChains } from './constants/supported-chains'; export { lookForTx, request, BLOCKCHAINS, - isTestChain + isTestChain, + SupportedChains };