Skip to content

Commit

Permalink
fix contract factory imports
Browse files Browse the repository at this point in the history
  • Loading branch information
robertlincecum committed Jun 12, 2024
1 parent 014238b commit 686a452
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/contract/factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { concat, defineProperties, getBytes, hexlify, assert, assertArgument } f
import { BaseContract, copyOverrides, resolveArgs } from './contract.js';

import type { InterfaceAbi } from '../abi/index.js';
import { validateAddress, type Addressable } from '../address/index.js';
import { validateAddress } from '../address/index.js';
import type { Addressable } from '../address/index.js';
import type { BytesLike } from '../utils/index.js';
import { getZoneForAddress, isQiAddress } from '../utils/index.js';
import type { ContractInterface, ContractMethodArgs, ContractDeployTransaction, ContractRunner } from './types.js';
Expand Down

0 comments on commit 686a452

Please sign in to comment.