UNPKG

nmkr-studio-api

Version:

Typesafe API Client to work with the NMKR Studio V2 API

13 lines (12 loc) 374 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; scriptPubKey?: string | null; confirmations?: number | null; };