From 5e6d846a353572855a0c5ff760395fef4adc4a5f Mon Sep 17 00:00:00 2001 From: "Rob Moore (MakerX)" Date: Wed, 28 Aug 2024 01:55:31 +0800 Subject: [PATCH] fix: Resolving circular dependency --- src/account/account.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/account/account.ts b/src/account/account.ts index 1b565fde..ec691d2f 100644 --- a/src/account/account.ts +++ b/src/account/account.ts @@ -1,8 +1,8 @@ import algosdk from 'algosdk' -import { AlgorandClient } from '..' import { getSenderAddress } from '../transaction/transaction' import { AccountAssetInformation, MultisigAccount, SigningAccount, TransactionSignerAccount } from '../types/account' import { AccountManager } from '../types/account-manager' +import { AlgorandClient } from '../types/algorand-client' import { AlgoAmount } from '../types/amount' import { ClientManager } from '../types/client-manager' import { SendTransactionFrom } from '../types/transaction'