UNPKG

@fugitivesclub/nft

Version:

A SDK for NFT creation with Hedera and FileCoin

12 lines (11 loc) 641 B
import { NFTDto } from '../models/hedera.interface'; import { DeleteResponse } from '../models/nft-storage.interface'; export declare function storeMetadata({ token, name, description, supply, creator, category, customProperties, customRoyaltyFee, attributes, media, }: NFTDto & { token: string; media: string; }): Promise<import("nft.storage/dist/src/lib/interface").EncodedURL>; export declare function deleteNFT({ cid, token, }: { cid: string; token: string; }): Promise<import("axios").AxiosResponse<DeleteResponse, any>>; export declare function getExtension(base64: string): "jpg" | "png" | "gif" | "webp" | undefined;