Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
jtgi committed Jul 12, 2024
1 parent 9c13acf commit 671328f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 1 addition & 3 deletions app/lib/neynar.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ import axios from "axios";
import { getSetCache, getSharedEnv } from "./utils.server";
import { http } from "./http.server";

export const neynar = new NeynarAPIClient(process.env.NEYNAR_API_KEY!, {
axiosInstance: http,
});
export const neynar = new NeynarAPIClient(process.env.NEYNAR_API_KEY!, { axiosInstance: http });

export async function registerWebhook({ rootParentUrl }: { rootParentUrl: string }) {
const webhook = await axios.get(
Expand Down
3 changes: 1 addition & 2 deletions app/lib/simplehash.server.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import axios from "axios";
import { getSetCache } from "./utils.server";
import { base, mainnet, optimism, zora } from "viem/chains";
import { http } from "./warpcast.server";
import { http } from "./http.server";

export function nftsByWallets(props: { chains: string[]; contractAddresses: string[]; wallets: string[] }) {
const cacheKey = `nftsByWallets:${props.chains.join(",")}:${props.contractAddresses.join(
Expand Down

0 comments on commit 671328f

Please sign in to comment.