Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Commit

Permalink
chore: fix import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
DoubleOTheven committed Jun 7, 2023
1 parent f805e00 commit 8a2d21a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/useink/src/core/contracts/call.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { BN } from '../../utils/index.ts';
import {
AbiMessage,
AccountId,
Expand All @@ -7,7 +8,6 @@ import {
DecodedContractResult,
} from '../types/index';
import { decodeCallResult } from './decodeCallResult.ts';
import { BN } from '@polkadot/util';

export async function call<T>(
contract: ContractPromise,
Expand Down
3 changes: 1 addition & 2 deletions packages/useink/src/core/contracts/toContractAbiMessage.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { AbiMessage, Result } from '../types/index';
import { ContractPromise } from '@polkadot/api-contract';
import { AbiMessage, ContractPromise, Result } from '../types/index';

export const toContractAbiMessage = (
contract: ContractPromise,
Expand Down

0 comments on commit 8a2d21a

Please sign in to comment.