Skip to content

Commit

Permalink
disable op volume has spike
Browse files Browse the repository at this point in the history
  • Loading branch information
dtmkeng committed Jul 10, 2024
1 parent 388ea76 commit baea215
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions fees/across.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const graph = (chain: Chain) => {
target: address[chain],
eventAbi: abis.FundsDeposited,
topic: topic0_fund_disposit_v2,
fromBlock,
fromBlock,
toBlock
})
).filter((a: any) => Number(a!.destinationChainId) === 288);
Expand All @@ -51,7 +51,7 @@ const graph = (chain: Chain) => {
target: address[chain],
eventAbi: abis.V3FundsDeposited,
topic: topic0_fund_disposit_v3,
fromBlock,
fromBlock,
toBlock
})
).filter((a: any) => Number(a!.destinationChainId) === 288);
Expand All @@ -68,7 +68,7 @@ const graph = (chain: Chain) => {
target: address[chain],
eventAbi: abis.FilledV3Relay,
topic: topic0_filled_replay_v3,
fromBlock,
fromBlock,
toBlock
});

Expand Down Expand Up @@ -110,10 +110,10 @@ const adapter: SimpleAdapter = {
fetch: graph(CHAIN.ARBITRUM),
start: 1682840443,
},
[CHAIN.OPTIMISM]: {
fetch: graph(CHAIN.OPTIMISM),
start: 1682840443,
},
// [CHAIN.OPTIMISM]: {
// fetch: graph(CHAIN.OPTIMISM),
// start: 1682840443,
// },
[CHAIN.POLYGON]: {
fetch: graph(CHAIN.POLYGON),
start: 1682840443,
Expand Down

0 comments on commit baea215

Please sign in to comment.