@renec-foundation/metaplex-js
Version:
Metaplex JavaScript API
13 lines (10 loc) • 353 B
text/typescript
import axios, { AxiosResponse } from 'axios';
import { MetadataJson } from './../types';
export const lookup = async (url: string): Promise<MetadataJson> => {
try {
const { data } = await axios.get<string, AxiosResponse<MetadataJson>>(url);
return data;
} catch {
throw new Error(`unable to get metadata json from url ${url}`);
}
};