diff --git a/src/hooks/useNotificationTypes.tsx b/src/hooks/useNotificationTypes.tsx index ccbaca0..9eacc54 100644 --- a/src/hooks/useNotificationTypes.tsx +++ b/src/hooks/useNotificationTypes.tsx @@ -21,7 +21,7 @@ import { OrderStatusIcon } from '@/views/OrderStatusIcon'; import { useStringGetter } from './useStringGetter'; import { TransferStatusSteps } from '@/views/TransferStatusSteps'; -import { TESTNET_CHAIN_ID } from '@dydxprotocol/v4-client'; +import { TESTNET_CHAIN_ID } from '@dydxprotocol/v4-client-js'; export const notificationTypes = [ { diff --git a/src/views/TransferStatus.tsx b/src/views/TransferStatus.tsx index 47d0454..2f792c3 100644 --- a/src/views/TransferStatus.tsx +++ b/src/views/TransferStatus.tsx @@ -1,6 +1,6 @@ import { useCallback, useState, useMemo } from 'react'; import styled, { type AnyStyledComponent } from 'styled-components'; -import { TESTNET_CHAIN_ID } from '@dydxprotocol/v4-client'; +import { TESTNET_CHAIN_ID } from '@dydxprotocol/v4-client-js'; import { Root, Trigger, Content } from '@radix-ui/react-collapsible'; import { StatusResponse } from '@0xsquid/sdk'; diff --git a/src/views/TransferStatusSteps.tsx b/src/views/TransferStatusSteps.tsx index d3b3e8a..0a55ddc 100644 --- a/src/views/TransferStatusSteps.tsx +++ b/src/views/TransferStatusSteps.tsx @@ -1,7 +1,7 @@ import { useMemo } from 'react'; import styled, { css, keyframes, type AnyStyledComponent } from 'styled-components'; import { StatusResponse } from '@0xsquid/sdk'; -import { TESTNET_CHAIN_ID } from '@dydxprotocol/v4-client'; +import { TESTNET_CHAIN_ID } from '@dydxprotocol/v4-client-js'; import { useStringGetter } from '@/hooks';