Skip to content

Commit 4184593

Browse files
committed
fix: src imports
1 parent cc3086d commit 4184593

File tree

63 files changed

+70
-69
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+70
-69
lines changed

packages/core/src/actions/account/public/get-account-base-addresses-from-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate'
2-
import { WithArgs } from 'src/types/with-args'
32
import { VersionControlTypes } from '../../../codegen/abstract'
3+
import { WithArgs } from '../../../types/with-args'
44
import { accountIdToParameter } from '../../../utils/account-id'
55
import { getVersionControlQueryClientFromApi } from '../../public/get-version-control-query-client-from-api'
66

packages/core/src/actions/account/public/get-base-token.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate'
2-
import { WithArgs } from 'src/types/with-args'
3-
import { CW20Token, NativeToken } from 'src/utils'
42
import { VersionControlTypes } from '../../../codegen/abstract'
3+
import { WithArgs } from '../../../types/with-args'
4+
import { CW20Token, NativeToken } from '../../../utils'
55
import { getProxyQueryClientFromApi } from './get-proxy-query-client-from-api'
66

77
function hasNativeField(base_asset: any): base_asset is { native: string } {

packages/core/src/actions/account/public/get-manager-query-client-from-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate'
2-
import { WithArgs } from 'src/types/with-args'
32
import { VersionControlTypes } from '../../../codegen/abstract'
3+
import { WithArgs } from '../../../types/with-args'
44
import { getManagerQueryClient } from '../../public/get-manager-query-client'
55
import { getAccountBaseAddressesFromApi } from './get-account-base-addresses-from-api'
66

packages/core/src/actions/account/public/get-module-address.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate'
2-
import { WithArgs } from 'src/types/with-args'
32
import { VersionControlTypes } from '../../../codegen/abstract'
3+
import { WithArgs } from '../../../types/with-args'
44
import { getManagerQueryClientFromApi } from './get-manager-query-client-from-api'
55

66
export type GetModuleAddressParameters = WithArgs<{

packages/core/src/actions/account/public/get-modules.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate'
2-
import { WithArgs } from 'src/types/with-args'
32
import {
43
ManagerQueryClient,
54
VersionControlTypes,
65
} from '../../../codegen/abstract'
6+
import { WithArgs } from '../../../types/with-args'
77
import { getManagerQueryClientFromApi } from './get-manager-query-client-from-api'
88

99
export type GetModulesParameters = WithArgs<

packages/core/src/actions/account/public/get-namespace.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate'
2-
import { WithArgs } from 'src/types/with-args'
32
import { VersionControlTypes } from '../../../codegen/abstract'
3+
import { WithArgs } from '../../../types/with-args'
44
import { accountIdToParameter } from '../../../utils/account-id'
55
import { getVersionControlQueryClientFromApi } from '../../public/get-version-control-query-client-from-api'
66

packages/core/src/actions/account/public/get-owner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate'
2-
import { WithArgs } from 'src/types/with-args'
32
import { VersionControlTypes } from '../../../codegen/abstract'
3+
import { WithArgs } from '../../../types/with-args'
44
import { getManagerQueryClientFromApi } from './get-manager-query-client-from-api'
55

66
export type GetOwnerParameters = WithArgs<{

packages/core/src/actions/account/public/get-proxy-query-client-from-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate'
2-
import { WithArgs } from 'src/types/with-args'
32
import { VersionControlTypes } from '../../../codegen/abstract'
3+
import { WithArgs } from '../../../types/with-args'
44
import { getProxyQueryClient } from '../../public/get-proxy-query-client'
55
import { getAccountBaseAddressesFromApi } from './get-account-base-addresses-from-api'
66

packages/core/src/actions/account/public/get-sub-account-ids.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate'
2-
import { WithArgs } from 'src/types/with-args'
32
import {
43
ManagerQueryClient,
54
VersionControlTypes,
65
} from '../../../codegen/abstract'
6+
import { WithArgs } from '../../../types/with-args'
77
import { sequenceToLocalAccountId } from '../../../utils/account-id/seq-to-local-account-id'
88
import { chainIdToName } from '../../../utils/chain-registry'
99
import { getSubAccountSequences } from './get-sub-account-sequences'

packages/core/src/actions/account/public/get-sub-account-sequences.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate'
2-
import { WithArgs } from 'src/types/with-args'
32
import {
43
ManagerQueryClient,
54
VersionControlTypes,
65
} from '../../../codegen/abstract'
6+
import { WithArgs } from '../../../types/with-args'
77
import { getManagerQueryClientFromApi } from './get-manager-query-client-from-api'
88

99
export type GetSubAccountSequencesParameters = WithArgs<

0 commit comments

Comments
 (0)