nmkr-studio-api
Version:
Typesafe API Client to work with the NMKR Studio V2 API
15 lines (14 loc) • 510 B
TypeScript
import type { Blockchain } from './Blockchain';
import type { CardanoCipTypes } from './CardanoCipTypes';
export type AssetsAssociatedWithAccount = {
readonly cardanoCipType?: CardanoCipTypes;
solanaSymbol?: string | null;
address?: string | null;
unit?: string | null;
quantity?: number;
readonly blockchain?: Blockchain;
readonly fingerprint?: string | null;
readonly assetName?: string | null;
policyIdOrCollection?: string | null;
assetNameInHex?: string | null;
};