Skip to content

Commit

Permalink
refactor(client-utils): rename module
Browse files Browse the repository at this point in the history
  • Loading branch information
javadkh2 committed Oct 16, 2023
1 parent abb2b41 commit 5adbbc3
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/libs/client-utils/src/coin/create-account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
setMeta,
} from '@kadena/client/fp';

import { submitClient } from '../core/rich-client';
import { submitClient } from '../core/client-helpers';
import type { IClientConfig } from '../core/utils/helpers';

interface ICreateAccountCommandInput {
Expand Down
2 changes: 1 addition & 1 deletion packages/libs/client-utils/src/coin/details.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { ChainId } from '@kadena/client';
import { Pact } from '@kadena/client';
import { execution } from '@kadena/client/fp';

import { dirtyReadClient } from '../core/rich-client';
import { dirtyReadClient } from '../core/client-helpers';
import type { IClientConfig } from '../core/utils/helpers';

import { pipe } from 'ramda';
Expand Down
2 changes: 1 addition & 1 deletion packages/libs/client-utils/src/coin/get-balance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { ChainId } from '@kadena/client';
import { Pact } from '@kadena/client';
import { execution } from '@kadena/client/fp';

import { dirtyReadClient } from '../core/rich-client';
import { dirtyReadClient } from '../core/client-helpers';
import type { IClientConfig } from '../core/utils/helpers';

import { pipe } from 'ramda';
Expand Down
2 changes: 1 addition & 1 deletion packages/libs/client-utils/src/coin/rotate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
setMeta,
} from '@kadena/client/fp';

import { submitClient } from '../core/rich-client';
import { submitClient } from '../core/client-helpers';
import type { IClientConfig } from '../core/utils/helpers';

interface IRotateCommandInput {
Expand Down
2 changes: 1 addition & 1 deletion packages/libs/client-utils/src/coin/transfer-create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
setMeta,
} from '@kadena/client/fp';

import { submitClient } from '../core/rich-client';
import { submitClient } from '../core/client-helpers';
import type { IClientConfig } from '../core/utils/helpers';

interface ICreateTransferInput {
Expand Down
2 changes: 1 addition & 1 deletion packages/libs/client-utils/src/coin/transfer-crosschain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
setMeta,
} from '@kadena/client/fp';

import { crossChainClient } from '../core/rich-client';
import { crossChainClient } from '../core/client-helpers';
import type { IClientConfig } from '../core/utils/helpers';

interface ICrossChainInput {
Expand Down
2 changes: 1 addition & 1 deletion packages/libs/client-utils/src/coin/transfer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
setMeta,
} from '@kadena/client/fp';

import { submitClient } from '../core/rich-client';
import { submitClient } from '../core/client-helpers';
import type { IClientConfig } from '../core/utils/helpers';

interface ITransferInput {
Expand Down
2 changes: 1 addition & 1 deletion packages/libs/client-utils/src/core/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from './rich-client';
export * from './client-helpers';
export * from './utils/asyncPipe';

0 comments on commit 5adbbc3

Please sign in to comment.