Skip to content

Commit

Permalink
chore: fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
janniks committed Oct 25, 2024
1 parent e7370a0 commit e76710b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions packages/profile/src/profile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ import { makeZoneFile, parseZoneFile } from 'zone-file';
import * as inspector from 'schema-inspector';

import { Logger } from '@stacks/common';
import { networkFrom } from '@stacks/network';
import { NetworkClientParam, clientFromNetwork } from '@stacks/network/src';
import { NetworkClientParam, clientFromNetwork, networkFrom } from '@stacks/network';
import { PublicPersonProfile } from './types';

const schemaDefinition: { [key: string]: any } = {
Expand Down
2 changes: 1 addition & 1 deletion packages/stacking/tests/stacking-2.5.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { getPublicKeyFromPrivate, publicKeyToBtcAddress } from '@stacks/encryption';
import { STACKS_MOCKNET } from '@stacks/network/src';
import { STACKS_MOCKNET } from '@stacks/network';
import { makeRandomPrivKey } from '@stacks/transactions';
import { V2_POX_REGTEST_POX_4, setApiMocks } from '../../internal/src';
import { StackingClient } from '../src';
Expand Down
3 changes: 1 addition & 2 deletions packages/wallet-sdk/src/usernames.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { clientFromNetwork, networkFrom } from '@stacks/network';
import { NetworkClientParam } from '@stacks/network/src';
import { NetworkClientParam, clientFromNetwork, networkFrom } from '@stacks/network';

export const fetchFirstName = async (
opts: {
Expand Down

0 comments on commit e76710b

Please sign in to comment.