UNPKG

nmkr-studio-api

Version:

Typesafe API Client to work with the NMKR Studio V2 API

11 lines (10 loc) 485 B
import type { AssetsAssociatedWithAccount } from './AssetsAssociatedWithAccount'; import type { FrankenAddressProtectionClass } from './FrankenAddressProtectionClass'; export type CheckConditionsResultClass = { conditionsMet?: boolean; rejectReason?: string | null; rejectParameter?: string | null; sendBackAddress?: FrankenAddressProtectionClass | null; assetsAssociatedWithAccount?: Array<AssetsAssociatedWithAccount> | null; stakeAddress?: string | null; };