From 0f9db1fa29fc10db18af9b4d2e96cf65cf6b6aae Mon Sep 17 00:00:00 2001 From: sadiabbasi Date: Tue, 21 Jan 2025 12:41:01 +0300 Subject: [PATCH] fix: :zap: fixed typeCheck --- src/utils/chain/antelope.ts | 2 +- src/utils/chain/etherum.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/chain/antelope.ts b/src/utils/chain/antelope.ts index d1f4f790..a59d89e6 100644 --- a/src/utils/chain/antelope.ts +++ b/src/utils/chain/antelope.ts @@ -17,6 +17,7 @@ import { IAsset, ExplorerOptions, AbstractTransactionReceipt, + VestedTokens, } from './types'; import { ABI, @@ -46,7 +47,6 @@ import { hexToBytes, bytesToHex } from 'did-jwt'; import { ApplicationErrors, throwError } from '../errors'; import { captureError } from '../sentry'; import { AntelopePushTransactionError, HttpError } from '@tonomy/tonomy-id-sdk'; -import { VestedTokens } from '../tokenRegistry'; import Decimal from 'decimal.js'; const vestingContract = VestingContract.Instance; diff --git a/src/utils/chain/etherum.ts b/src/utils/chain/etherum.ts index 8715ba99..4beac0b2 100644 --- a/src/utils/chain/etherum.ts +++ b/src/utils/chain/etherum.ts @@ -28,6 +28,7 @@ import { AbstractTransactionReceipt, IAsset, ChainType, + VestedTokens, } from './types'; import settings from '../../settings'; import { SessionTypes, SignClientTypes } from '@walletconnect/types'; @@ -38,7 +39,6 @@ import Debug from '../debug'; import { ApplicationErrors, throwError } from '../errors'; import { KeyValue } from '../strings'; import Decimal from 'decimal.js'; -import { VestedTokens } from '../tokenRegistry'; const debug = Debug('tonomy-id:utils:chain:ethereum');