UNPKG

@magiceden/magiceden-sdk

Version:

A TypeScript SDK for interacting with Magic Eden's API across multiple chains.

24 lines (23 loc) 642 B
import { TransactionStep } from '../../services/nft/shared'; export interface V4TransactionResponse { steps: TransactionStep[]; } export interface V4CreateLaunchpadResponse extends V4TransactionResponse { metadata: { imageUrl?: string; tokenImage?: string; metadataUrl?: string; }; } export interface V4PublishLaunchpadResponse { success: boolean; } export interface V4UpdateLaunchpadResponse extends V4TransactionResponse { metadata: { imageUrl?: string; tokenImage?: string; metadataUrl?: string; }; } export interface V4MintResponse extends V4TransactionResponse { }