UNPKG

nmkr-studio-api

Version:

Typesafe API Client to work with the NMKR Studio V2 API

19 lines (18 loc) 669 B
import type { MintingTransactionInformation } from './MintingTransactionInformation'; export type NmkrAssetAddress = { policyId?: string | null; assetName?: string | null; assetNameInHex?: string | null; fingerprint?: string | null; totalSupply?: number | null; multiplier?: number; address?: string | null; quantity?: number; decimals?: number; creationTime?: number | null; mintingTxHash?: string | null; mintingTransactionInformation?: MintingTransactionInformation | null; readonly solanaSymbol?: string | null; readonly solanaDescription?: string | null; readonly solanaTokenStandard?: string | null; };