Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: opBNB farm #8599

Merged
merged 11 commits into from
Dec 18, 2023
Prev Previous commit
Next Next commit
fix: type
ChefJerry committed Dec 18, 2023
commit f58555f159cdf0dd7e45d28975a99b03f11cbc6f
6 changes: 3 additions & 3 deletions apis/farms/src/provider.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ChainId } from '@pancakeswap/chains'
import { createPublicClient, http, PublicClient } from 'viem'
import { Chain, createPublicClient, http, PublicClient } from 'viem'
import {
arbitrum,
bsc,
@@ -163,7 +163,7 @@ const goerliClient = createPublicClient({
})

const zksyncTestnetClient = createPublicClient({
chain: zkSyncTestnet,
chain: zkSyncTestnet as Chain,
transport: http(),
batch: {
multicall: {
@@ -195,7 +195,7 @@ const polygonZkEvmClient = createPublicClient({
})

const zksyncClient = createPublicClient({
chain: zkSync,
chain: zkSync as Chain,
transport: http(ZKSYNC_NODE),
batch: {
multicall: {