UNPKG

nmkr-studio-api

Version:

Typesafe API Client to work with the NMKR Studio V2 API

11 lines (10 loc) 305 B
import type { TxInTokensClass } from './TxInTokensClass'; export type TxInClass = { txHash?: string | null; txId?: number; lovelace?: number; tokens?: Array<TxInTokensClass> | null; readonly txHashId?: string | null; txTimestamp?: string | null; readonly tokenSum?: number; };