Skip to content

Commit

Permalink
fix: Resolving circular dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
robdmoore committed Aug 27, 2024
1 parent c0313a0 commit f88b4c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/account/account.ts
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion src/asset.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import algosdk from 'algosdk'
import { AlgorandClient } from '.'
import { encodeTransactionNote, getSenderAddress } from './transaction'
import { legacySendTransactionBridge } from './transaction/legacy-bridge'
import { AlgorandClient } from './types/algorand-client'
import { AssetBulkOptInOutParams, AssetOptInParams, AssetOptOutParams, CreateAssetParams } from './types/asset'
import { ClientManager } from './types/client-manager'
import { AssetCreateParams, AssetOptInParams as NewAssetOptInParams, AssetOptOutParams as NewAssetOptOutParams } from './types/composer'
Expand Down
2 changes: 1 addition & 1 deletion src/transfer/transfer.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import algosdk from 'algosdk'
import { AlgorandClient } from '..'
import { legacySendTransactionBridge } from '../transaction/legacy-bridge'
import { encodeTransactionNote, getSenderAddress } from '../transaction/transaction'
import { AlgorandClient } from '../types/algorand-client'
import { TestNetDispenserApiClient } from '../types/dispenser-client'
import { SendTransactionResult } from '../types/transaction'
import { AlgoRekeyParams, EnsureFundedParams, EnsureFundedReturnType, TransferAssetParams } from '../types/transfer'
Expand Down

0 comments on commit f88b4c8

Please sign in to comment.