···11+import { ZORA_API_KEY } from "@hey/data/constants";
12import type { AccountFragment } from "@hey/indexer";
23import { useQuery } from "@tanstack/react-query";
33-import { type GetCoinResponse, getCoin } from "@zoralabs/coins-sdk";
44+import { type GetCoinResponse, getCoin, setApiKey } from "@zoralabs/coins-sdk";
45import { useState } from "react";
56import type { Address } from "viem";
67import { base } from "viem/chains";
78import { Image, Modal } from "../../Shared/UI";
89import MetaDetails from "../MetaDetails";
910import CreatorCoinDetails from "./CreatorCoinDetails";
1111+1212+setApiKey(ZORA_API_KEY);
10131114interface CreatorCoinProps {
1215 account: AccountFragment;