import { SingleBase, Nft } from 'solana-candy-shop-schema/dist'; import { AxiosInstance } from 'axios'; export async function fetchNftByMint(axiosInstance: AxiosInstance, mint: string): Promise { return await axiosInstance.get>(`/nft/${mint}`).then((response) => response.data.result); }