Skip to content

Commit

Permalink
Merge branch 'master' into add-executed-withdrawals-to-cache
Browse files Browse the repository at this point in the history
  • Loading branch information
brtkx authored Dec 12, 2024
2 parents 3341947 + 6d55520 commit 95648e0
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 11 deletions.
1 change: 1 addition & 0 deletions packages/arb-token-bridge-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"cheerio": "^1.0.0-rc.12",
"dayjs": "^1.11.8",
"ethers": "^5.6.0",
"exponential-backoff": "^3.1.1",
"graphql": "^16.8.1",
"lodash-es": "^4.17.21",
"next": "^14.2.12",
Expand Down
11 changes: 11 additions & 0 deletions packages/arb-token-bridge-ui/src/util/ExponentialBackoffUtils.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
import { backOff as _backOff, BackoffOptions } from 'exponential-backoff'

const backoffOptions: BackoffOptions = {
startingDelay: 1_000,
timeMultiple: 1.5
}

export function backOff<T>(request: () => Promise<T>): Promise<T> {
return _backOff(request, backoffOptions)
}

export function wait(ms: number) {
return new Promise(resolve => setTimeout(resolve, ms))
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function fetchETHWithdrawalsFromEventLogs({
l2Provider: Provider
}) {
if (typeof receiver === 'undefined') {
return []
return Promise.resolve([])
}

// funds received by this address
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
} from './fetchTokenWithdrawalsFromEventLogs'
import { getNonce } from '../AddressUtils'
import { fetchL2Gateways } from '../fetchL2Gateways'
import { wait } from '../ExponentialBackoffUtils'
import { backOff, wait } from '../ExponentialBackoffUtils'

async function getGateways(provider: Provider): Promise<{
standardGateway: string
Expand Down Expand Up @@ -101,7 +101,7 @@ export async function fetchTokenWithdrawalsFromEventLogsSequentially({
}

const gateways = await getGateways(provider)
const senderNonce = await getNonce(sender, { provider })
const senderNonce = await backOff(() => getNonce(sender, { provider }))

// sender queries; only add if nonce > 0
if (senderNonce > 0) {
Expand Down Expand Up @@ -130,7 +130,7 @@ export async function fetchTokenWithdrawalsFromEventLogsSequentially({

const currentPriorityResults = await Promise.all(
currentPriorityQueries.map(query =>
fetchTokenWithdrawalsFromEventLogs(query.params)
backOff(() => fetchTokenWithdrawalsFromEventLogs(query.params))
)
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { Withdrawal } from '../../hooks/useTransactionHistory'
import { attachTimestampToTokenWithdrawal } from './helpers'
import { WithdrawalInitiated } from '../../hooks/arbTokenBridge.types'
import { fetchTokenWithdrawalsFromEventLogsSequentially } from './fetchTokenWithdrawalsFromEventLogsSequentially'
import { wait } from '../ExponentialBackoffUtils'
import { backOff, wait } from '../ExponentialBackoffUtils'

export type FetchWithdrawalsParams = {
sender?: string
Expand Down Expand Up @@ -84,12 +84,16 @@ export async function fetchWithdrawals({
console.log('Error fetching withdrawals from subgraph', error)
}

const ethWithdrawalsFromEventLogs = await fetchETHWithdrawalsFromEventLogs({
receiver,
fromBlock: toBlock + 1,
toBlock: 'latest',
l2Provider: l2Provider
})
const ethWithdrawalsFromEventLogs = await backOff(() =>
fetchETHWithdrawalsFromEventLogs({
receiver,
// not sure why eslint is treating "toBlock" as "number | undefined" here
// even though typescript recognizes it as "number"
fromBlock: toBlock ?? 0 + 1,
toBlock: 'latest',
l2Provider: l2Provider
})
)

await wait(2_000)

Expand Down
5 changes: 5 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7545,6 +7545,11 @@ expect@^29.0.0, expect@^29.5.0:
jest-message-util "^29.5.0"
jest-util "^29.5.0"

exponential-backoff@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.1.tgz#64ac7526fe341ab18a39016cd22c787d01e00bf6"
integrity sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==

express@^4.17.3:
version "4.21.0"
resolved "https://registry.yarnpkg.com/express/-/express-4.21.0.tgz#d57cb706d49623d4ac27833f1cbc466b668eb915"
Expand Down

0 comments on commit 95648e0

Please sign in to comment.