From 82acc3987074a9868f52562e33e122e684cd72e1 Mon Sep 17 00:00:00 2001 From: Yorke Rhodes Date: Tue, 10 Jan 2023 18:53:19 -0500 Subject: [PATCH] Fix import from src (#1564) --- typescript/sdk/src/deploy/HyperlaneAppChecker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/sdk/src/deploy/HyperlaneAppChecker.ts b/typescript/sdk/src/deploy/HyperlaneAppChecker.ts index c1263dbd4..629ae4cce 100644 --- a/typescript/sdk/src/deploy/HyperlaneAppChecker.ts +++ b/typescript/sdk/src/deploy/HyperlaneAppChecker.ts @@ -1,5 +1,4 @@ import { Ownable } from '@hyperlane-xyz/core'; -import { objMap } from '@hyperlane-xyz/sdk/src/utils/objects'; import { utils } from '@hyperlane-xyz/utils'; import type { types } from '@hyperlane-xyz/utils'; @@ -7,6 +6,7 @@ import { HyperlaneApp } from '../HyperlaneApp'; import { MultiProvider } from '../providers/MultiProvider'; import { TransparentProxyAddresses } from '../proxy'; import { ChainMap, ChainName } from '../types'; +import { objMap } from '../utils/objects'; import { proxyAdmin, proxyImplementation, proxyViolation } from './proxy'; import { CheckerViolation, OwnerViolation, ViolationType } from './types';