Skip to content

Commit

Permalink
Modified: src/processor.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
abernatskiy committed Sep 13, 2023
1 parent 494d898 commit a3f1eda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ import {
Transaction as _Transaction,
} from '@subsquid/evm-processor'
import * as friendTechAbi from './abi/friendTechAbi'
import { assertNotNull } from '@subsquid/util-internal'

export const FRIENDTECH_CONTRACT = '0xCF205808Ed36593aa40a44F10c7f7C2F67d4A4d4'.toLowerCase()

export const processor = new EvmBatchProcessor()
.setDataSource({
archive: lookupArchive('base-mainnet'),
chain: {
url: process.env.RPC_BASE_HTTP,
url: assertNotNull(process.env.RPC_BASE_HTTP),
rateLimit: 10,
}
})
Expand Down

0 comments on commit a3f1eda

Please sign in to comment.