Skip to content

Commit

Permalink
fix adapter version
Browse files Browse the repository at this point in the history
  • Loading branch information
dtmkeng committed Dec 24, 2024
1 parent 65f3e25 commit 63e4748
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fees/arbitrum/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { queryIndexer } from "../../helpers/indexer";
const adapter: Adapter = {
adapter: {
[CHAIN.ARBITRUM]: {
fetch: (async (options: FetchOptions) => {
fetch: (async (_t: number, _b: any, options: FetchOptions) => {
const { getFromBlock, getToBlock, createBalances, } = options
const startblock = await getFromBlock()
const endblock = await getToBlock()
Expand Down Expand Up @@ -41,7 +41,7 @@ const adapter: Adapter = {
},
isExpensiveAdapter: true,
protocolType: ProtocolType.CHAIN,
version: 2
version: 1
}

export default adapter;

0 comments on commit 63e4748

Please sign in to comment.