Skip to content

Commit 9e7a288

Browse files
committed
yarn link instead
1 parent 3dbdfe4 commit 9e7a288

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed
-66 KB
Binary file not shown.
-66 KB
Binary file not shown.

packages/arb-token-bridge-ui/src/components/App/AppProviders.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
1313
import { createConfig } from '@lifi/sdk'
1414
import { INTEGRATOR_ID } from '@/bridge/app/api/crosschain-transfers/lifi'
1515

16-
import { ArbitrumIndexerProvider } from '../../../../indexer-provider'
16+
import { ArbitrumIndexerProvider } from '@arbitrum/indexer-provider'
1717
import { PonderProvider } from '@ponder/react'
1818
import { client } from './ponder'
1919

@@ -67,9 +67,12 @@ export function AppProviders({ children }: AppProvidersProps) {
6767
<RainbowKitProvider theme={rainbowkitTheme}>
6868
<AppContextProvider>
6969
<ArbitrumIndexerProvider
70+
//@ts-ignore
7071
ponderClient={client}
72+
//@ts-ignore
7173
queryClient={queryClient}
7274
>
75+
{/* @ts-ignore */}
7376
{children}
7477
</ArbitrumIndexerProvider>
7578
</AppContextProvider>

packages/arb-token-bridge-ui/src/components/App/ponder.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ const schema = {
99
fromAddress: '',
1010
toAddress: '',
1111
l1TokenAddress: '',
12-
amount: 0n,
12+
amount: BigInt(0),
1313
statusOnChildChain: '',
14-
parentChainTimestamp: 0n
14+
parentChainTimestamp: BigInt(0)
1515
},
1616
DepositEth: {
1717
id: '',
1818
parentChainSenderAddress: '',
1919
childChainRecipientAddress: '',
20-
ethAmountDepositedToChildChain: 0n,
20+
ethAmountDepositedToChildChain: BigInt(0),
2121
statusOnChildChain: '',
22-
parentChainTimestamp: 0n
22+
parentChainTimestamp: BigInt(0)
2323
}
2424
}
2525

packages/arb-token-bridge-ui/src/components/TransactionHistory/useIndexerHistory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Address } from 'viem'
33
import useSWRImmutable from 'swr/immutable'
44
import useSWR from 'swr'
55
import { getProviderForChainId } from '@/token-bridge-sdk/utils'
6-
import { useArbitrumIndexer } from '../../../../indexer-provider'
6+
import { useArbitrumIndexer } from '@arbitrum/indexer-provider'
77
import { AssetType } from '../../hooks/arbTokenBridge.types'
88
import { DepositStatus, MergedTransaction } from '../../state/app/state'
99
import { BigNumber, utils } from 'ethers'

0 commit comments

Comments
 (0)