UNPKG

nmkr-studio-api

Version:

Typesafe API Client to work with the NMKR Studio V2 API

27 lines (26 loc) 903 B
import type { Tokens } from './Tokens'; export type PricelistClass = { countNft?: number; priceInLovelace?: number; readonly adaToSend?: string | null; priceInEur?: number; priceInUsd?: number; priceInJpy?: number; effectivedate?: string; additionalPriceInTokens?: Array<Tokens> | null; paymentGatewayLinkForRandomNftSale?: string | null; currency?: string | null; sendBackCentralPaymentInLovelace?: number; readonly sendBackCentralPaymentInAda?: string | null; priceInLovelaceCentralPayments?: number; readonly adaToSendCentralPayments?: string | null; priceInLamport?: number; readonly solToSend?: string | null; validFrom?: string | null; validTo?: string | null; priceInOctas?: number; priceInSatoshis?: number; readonly aptToSend?: string | null; readonly btcToSend?: string | null; freeMint?: boolean; };