Skip to content

Commit

Permalink
hn: use absolute imports
Browse files Browse the repository at this point in the history
  • Loading branch information
shanefontaine committed Jun 25, 2024
1 parent 3e3abdf commit 72bb0f9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions packages/hop-node/src/cli/cctp/cctpDBDump.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { StateMachineDB } from '../../cctp/db/StateMachineDB.js'
import { OnchainEventIndexerDB } from '../../cctp/db/OnchainEventIndexerDB.js'
import { TxRelayDB } from '../../cctp/db/TxRelayDB.js'
import { StateMachineDB } from '#cctp/db/StateMachineDB.js'
import { OnchainEventIndexerDB } from '#cctp/db/OnchainEventIndexerDB.js'
import { TxRelayDB } from '#cctp/db/TxRelayDB.js'

import { actionHandler, parseString, root } from '../shared/index.js'

Expand Down
4 changes: 2 additions & 2 deletions packages/hop-node/src/cli/cctp/relayCCTP.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { getUnrelayedMessages } from './utils.js'
import { getChain } from '@hop-protocol/sdk'
import { wallets } from '#wallets/index.js'
import { MessageSDK } from '../../../src/cctp/cctp/sdk/MessageSDK.js'
import { type ISentMessage } from '../../../src/cctp/cctp/types.js'
import { MessageSDK } from '#cctp/cctp/sdk/MessageSDK.js'
import { type ISentMessage } from '#cctp/cctp/types.js'
import { actionHandler, root } from '../shared/index.js'

root
Expand Down
6 changes: 3 additions & 3 deletions packages/hop-node/src/cli/cctp/utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { StateMachineDB } from '../../cctp/db/StateMachineDB.js'
import { MessageSDK } from '../../../src/cctp/cctp/sdk/MessageSDK.js'
import { MessageState, type ISentMessage } from '../../../src/cctp/cctp/types.js'
import { StateMachineDB } from '#cctp/db/StateMachineDB.js'
import { MessageSDK } from '#cctp/cctp/sdk/MessageSDK.js'
import { MessageState, type ISentMessage } from '#cctp/cctp/types.js'

export async function getUnrelayedMessages (): Promise<ISentMessage[]> {
const dbName = 'Message'
Expand Down

0 comments on commit 72bb0f9

Please sign in to comment.